diff --git a/cmd/vcr-compressor/main.go b/cmd/vcr-compressor/main.go index a6ac37a0a..ea1ba91c7 100644 --- a/cmd/vcr-compressor/main.go +++ b/cmd/vcr-compressor/main.go @@ -3,6 +3,7 @@ package main import ( "log" "os" + "strings" "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" ) @@ -13,8 +14,19 @@ func main() { } path := os.Args[1] + folder := strings.Split(path, "/")[2] + + var ( + report acctest.CompressReport + err error + ) + + if acctest.FolderUsesVCRv4(folder) { + report, err = acctest.CompressCassetteV4(path) + } else { + report, err = acctest.CompressCassetteV3(path) + } - report, err := acctest.CompressCassette(path) if err != nil { log.Fatalf("%s", err) } diff --git a/internal/acctest/acctest.go b/internal/acctest/acctest.go index df3bee196..aa7a07788 100644 --- a/internal/acctest/acctest.go +++ b/internal/acctest/acctest.go @@ -35,9 +35,10 @@ type TestTools struct { var foldersUsingVCRv4 = []string{ "instance", + "k8s", } -func folderUsesVCRv4(fullFolderPath string) bool { +func FolderUsesVCRv4(fullFolderPath string) bool { fullPathSplit := strings.Split(fullFolderPath, "/") folder := fullPathSplit[len(fullPathSplit)-1] @@ -120,7 +121,7 @@ func NewTestTools(t *testing.T) *TestTools { cleanup func() ) - if folderUsesVCRv4(folder) { + if FolderUsesVCRv4(folder) { httpClient, cleanup, err = NewRecordedClient(t, folder, *UpdateCassettes) } else { httpClient, cleanup, err = getHTTPRecoder(t, folder, *UpdateCassettes) diff --git a/internal/acctest/compress_cassettes_test.go b/internal/acctest/compress_cassettes_test.go index f64840b14..e4e8c7bce 100644 --- a/internal/acctest/compress_cassettes_test.go +++ b/internal/acctest/compress_cassettes_test.go @@ -1,6 +1,7 @@ package acctest_test import ( + "strings" "testing" "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" @@ -16,7 +17,18 @@ func TestAccCassettes_Compressed(t *testing.T) { for path := range paths { g.Go(func() error { - report, errCompression := acctest.CompressCassette(path) + var ( + report acctest.CompressReport + errCompression error + ) + + folder := strings.Split(path, "/")[2] + if acctest.FolderUsesVCRv4(folder) { + report, errCompression = acctest.CompressCassetteV4(path) + } else { + report, errCompression = acctest.CompressCassetteV3(path) + } + require.NoError(t, errCompression) require.Zero(t, report.SkippedInteraction, "Issue with cassette: %s", report.Path) diff --git a/internal/acctest/vcr_compress.go b/internal/acctest/vcr_compress.go index 9e9a97f7f..071ba0141 100644 --- a/internal/acctest/vcr_compress.go +++ b/internal/acctest/vcr_compress.go @@ -18,7 +18,8 @@ import ( "github.com/scaleway/scaleway-sdk-go/api/rdb/v1" "github.com/scaleway/scaleway-sdk-go/api/redis/v1" tem "github.com/scaleway/scaleway-sdk-go/api/tem/v1alpha1" - "gopkg.in/dnaeon/go-vcr.v3/cassette" + cassetteV3 "gopkg.in/dnaeon/go-vcr.v3/cassette" + cassetteV4 "gopkg.in/dnaeon/go-vcr.v4/pkg/cassette" ) var transientStates = map[string]bool{ @@ -113,13 +114,101 @@ func (report *CompressReport) Print() { } } -func CompressCassette(path string) (CompressReport, error) { - inputCassette, err := cassette.Load(path) +func CompressCassetteV3(path string) (CompressReport, error) { + inputCassette, err := cassetteV3.Load(path) if err != nil { log.Fatalf("Error while reading file : %v\n", err) } - outputCassette := cassette.New(path) + outputCassette := cassetteV3.New(path) + transitioning := false + + report := CompressReport{ + SkippedInteraction: 0, + Path: path, + ErrorLogs: []string{}, + Logs: []string{}, + } + + for i := range len(inputCassette.Interactions) { + interaction := inputCassette.Interactions[i] + responseBody := interaction.Response.Body + requestMethod := interaction.Request.Method + + if requestMethod != "GET" { + transitioning = false + + report.AddLog(fmt.Sprintf("Interaction %d in test %s is not a GET request. Recording it\n", i, path)) + outputCassette.AddInteraction(interaction) + + continue + } + + if responseBody == "" { + report.AddLog(fmt.Sprintf("Interaction %d in test %s got an empty response body. Recording it\n", i, path)) + outputCassette.AddInteraction(interaction) + + continue + } + + var m map[string]any + + err := json.Unmarshal([]byte(responseBody), &m) + if err != nil { + report.AddErrorLog(fmt.Sprintf("Interaction %d in test %s have an error with unmarshalling response body: %v. Recording it\n", i, path, err)) + outputCassette.AddInteraction(interaction) + + continue + } + + if m["status"] == nil { + report.AddLog(fmt.Sprintf("Interaction %d in test %s does not contain a status field. Recording it\n", i, path)) + outputCassette.AddInteraction(interaction) + + continue + } + + status := m["status"].(string) + // We test if the state is transient + if _, ok := transientStates[status]; ok { + if transitioning { + report.AddLog(fmt.Sprintf("Interaction %d in test %s is in a transient state while we are already in transitient state. No need to record it: %s\n", i, path, status)) + report.SkippedInteraction++ + } else { + report.AddLog(fmt.Sprintf("Interaction %d in test %s is in a transient state: %s, Recording it\n", i, path, status)) + + transitioning = true + + outputCassette.AddInteraction(interaction) + } + } else { + if transitioning { + report.AddLog(fmt.Sprintf("Interaction %d in test %s is not in a transient state anymore: %s, Recording it\n", i, path, status)) + outputCassette.AddInteraction(interaction) + + transitioning = false + } else { + report.AddLog(fmt.Sprintf("Interaction %d in test %s is not in a transient state: %s, Recording it\n", i, path, status)) + outputCassette.AddInteraction(interaction) + } + } + } + + err = outputCassette.Save() + if err != nil { + return report, fmt.Errorf("error while saving file: %w", err) + } + + return report, nil +} + +func CompressCassetteV4(path string) (CompressReport, error) { + inputCassette, err := cassetteV4.Load(path) + if err != nil { + log.Fatalf("Error while reading file : %v\n", err) + } + + outputCassette := cassetteV4.New(path) transitioning := false report := CompressReport{ 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 f2662983c..f894b2c07 100644 --- a/internal/services/instance/testdata/data-source-image-basic.cassette.yaml +++ b/internal/services/instance/testdata/data-source-image-basic.cassette.yaml @@ -1,331 +1,259 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 619 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f330404b-adf8-40ae-a1e6-02e216924990 - status: 200 OK - code: 200 - duration: 32.562198ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 619 - uncompressed: false - body: '{"image": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b9d77c0f-faeb-46d3-bd96-b11bdb2436e1 - status: 200 OK - code: 200 - duration: 36.085286ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 619 - uncompressed: false - body: '{"image": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 286c6165-3ad7-48d3-905e-fbdd3774bb30 - status: 200 OK - code: 200 - duration: 105.675074ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 619 - uncompressed: false - body: '{"image": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 494c0add-b9ee-43c3-bf75-3e0ea4cfbeb7 - status: 200 OK - code: 200 - duration: 33.802598ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 619 - uncompressed: false - body: '{"image": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 61809fac-6f2f-4d58-9048-4ad00cd41086 - status: 200 OK - code: 200 - duration: 152.580062ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 619 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1e9fd44c-69b4-4b47-9d4c-6004be19c45d - status: 200 OK - code: 200 - duration: 152.599809ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 619 - uncompressed: false - body: '{"image": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3408d492-f2b9-4eb0-9d9d-7d4e77126376 - status: 200 OK - code: 200 - duration: 116.085221ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 619 - uncompressed: false - body: '{"image": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - af53bd86-af6a-4303-9f38-c6ac2d022a5d - status: 200 OK - code: 200 - duration: 121.158938ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 619 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 546c8067-865e-4176-90ee-79180ef2cabc + status: 200 OK + code: 200 + duration: 29.253175ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 619 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 84b394f2-7bee-4790-ac78-566349c6db99 + status: 200 OK + code: 200 + duration: 34.52823ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 619 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d540855b-fa92-4ba7-be8d-b8854fe099c3 + status: 200 OK + code: 200 + duration: 36.842172ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 619 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 53f6a21d-5b9c-48a2-974f-814701f2dce9 + status: 200 OK + code: 200 + duration: 50.817617ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 619 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b35fa688-959f-4436-bcf9-2c48d8d1c633 + status: 200 OK + code: 200 + duration: 37.289631ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 619 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0c2b4067-b178-42f7-b8f6-dfce171f0293 + status: 200 OK + code: 200 + duration: 41.143781ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 619 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 84d3eb5c-89d7-4db3-a969-ad29514b63a8 + status: 200 OK + code: 200 + duration: 44.806442ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 619 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 84277698-7d1f-42dd-8584-aab08c1fa2e6 + status: 200 OK + code: 200 + duration: 44.508703ms 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 3aa0f8aa1..2e1773671 100644 --- a/internal/services/instance/testdata/data-source-ip-basic.cassette.yaml +++ b/internal/services/instance/testdata/data-source-ip-basic.cassette.yaml @@ -1,620 +1,486 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 50 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - 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;edge03) - X-Request-Id: - - 959fa40a-7633-43f2-97f9-f793a78864fe - status: 201 Created - code: 201 - duration: 1.119382123s - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - body: '{"ip": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 42ff42fe-0aff-454c-b800-c826655c8b60 - status: 200 OK - code: 200 - duration: 124.555431ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - body: '{"ip": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6ce32de2-c34c-4d9c-9b28-4d8ebd832735 - status: 200 OK - code: 200 - duration: 108.301089ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - body: '{"ip": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 69ae3447-f4e6-4652-a008-b3c5751aaea6 - status: 200 OK - code: 200 - duration: 129.126779ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.236.240 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f135d312-338f-4712-8f75-939a3b250947 - status: 200 OK - code: 200 - duration: 103.801065ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0f30d1dc-c018-4fa3-8e48-ff2b9c0d53f6 - status: 200 OK - code: 200 - duration: 111.081358ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - body: '{"ip": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6ac17aa6-c0bc-4596-9f38-4897e9452e09 - status: 200 OK - code: 200 - duration: 119.277202ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.236.240 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5432a245-2777-4d6f-ad62-1de97e8962a3 - status: 200 OK - code: 200 - duration: 98.954123ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - body: '{"ip": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 657d0071-f83c-48f1-afbe-cbf57bd95c41 - status: 200 OK - code: 200 - duration: 119.413848ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - body: '{"ip": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2dbd129a-101e-4d38-9f8c-52eac40b13cd - status: 200 OK - code: 200 - duration: 116.258558ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - body: '{"ip": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b2742703-6e55-4e4c-9141-d17f466d8f1e - status: 200 OK - code: 200 - duration: 106.826653ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.236.240 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cd1c75de-fe63-45eb-8ffc-401fd0f353ee - status: 200 OK - code: 200 - duration: 91.960195ms - - 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/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - body: '{"ip": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 068d8adc-6719-4300-9d7d-4f112d0079ac - status: 200 OK - code: 200 - duration: 114.224435ms - - 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/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - body: '{"ip": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 27938711-c72a-4e25-b5cf-5c8749127dae - status: 200 OK - code: 200 - duration: 125.934651ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - 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:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 927ca0e5-e15a-48c8-b88e-5e004f7b6105 - status: 204 No Content - code: 204 - duration: 342.187818ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 50 + host: api.scaleway.com + body: "{\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"3b5ba1a7-f81e-44e5-8ff3-b18950350fea\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 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) + X-Request-Id: + - 09750f73-dfd3-4995-9185-eb2a0a3dee16 + status: 201 Created + code: 201 + duration: 376.945013ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"3b5ba1a7-f81e-44e5-8ff3-b18950350fea\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c40547bb-5729-44af-a60b-c7cb4570e80d + status: 200 OK + code: 200 + duration: 132.731114ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"3b5ba1a7-f81e-44e5-8ff3-b18950350fea\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 18402550-3114-4bb8-af5c-4ec1298b0576 + status: 200 OK + code: 200 + duration: 153.261545ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"3b5ba1a7-f81e-44e5-8ff3-b18950350fea\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 238d4a1f-6c97-4750-b863-a1a355a9def6 + status: 200 OK + code: 200 + duration: 131.682917ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.236.240 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"3b5ba1a7-f81e-44e5-8ff3-b18950350fea\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7f17375f-562b-41fc-950f-3e2e79f0641e + status: 200 OK + code: 200 + duration: 100.829922ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"3b5ba1a7-f81e-44e5-8ff3-b18950350fea\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ee164a89-46c1-47be-aa08-3157c125e595 + status: 200 OK + code: 200 + duration: 113.325101ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"3b5ba1a7-f81e-44e5-8ff3-b18950350fea\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 63aaa5e3-8bfe-4072-9ffc-e536b0c98de6 + status: 200 OK + code: 200 + duration: 123.093084ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.236.240 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"3b5ba1a7-f81e-44e5-8ff3-b18950350fea\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - baba8a22-8a6a-4b24-88c8-11725ebd5e01 + status: 200 OK + code: 200 + duration: 99.584566ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"3b5ba1a7-f81e-44e5-8ff3-b18950350fea\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dbee4a4b-4cc1-4773-93c1-f2df65c65ee7 + status: 200 OK + code: 200 + duration: 134.199328ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"3b5ba1a7-f81e-44e5-8ff3-b18950350fea\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bd05f372-f74d-4a88-97f8-f8a2f6651a07 + status: 200 OK + code: 200 + duration: 133.672028ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"3b5ba1a7-f81e-44e5-8ff3-b18950350fea\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d1ca3b58-e98a-4a87-a1c7-4b004698dcfe + status: 200 OK + code: 200 + duration: 120.97421ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"3b5ba1a7-f81e-44e5-8ff3-b18950350fea\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bfcfe1e2-57ff-495b-8c33-c005757f879f + status: 200 OK + code: 200 + duration: 106.44243ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.236.240 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"3b5ba1a7-f81e-44e5-8ff3-b18950350fea\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 12e4a665-5e1b-4654-9d7e-9fcb95fba0b3 + status: 200 OK + code: 200 + duration: 106.353033ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"3b5ba1a7-f81e-44e5-8ff3-b18950350fea\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4b0b96d1-971b-4d70-9afd-874f2f1cb75c + status: 200 OK + code: 200 + duration: 107.930512ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 69be5105-1170-4e5a-9d78-d7355ff0b961 + status: 204 No Content + code: 204 + duration: 298.705248ms 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 0f461d39a..57dec213a 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 @@ -1,720 +1,571 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 156 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-ds-instance-placement-group-basic","project":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_type":"max_availability"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 344 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3e896674-4774-4472-a16b-d1a81da6b3ee - status: 201 Created - code: 201 - duration: 219.37981ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 344 - uncompressed: false - body: '{"placement_group": {"id": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 29e3f2e6-3a81-4c94-b33e-6f2f6d6d493c - status: 200 OK - code: 200 - duration: 114.008075ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 344 - uncompressed: false - body: '{"placement_group": {"id": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b227db6e-4f71-4076-ab3a-a5a2d94340b7 - status: 200 OK - code: 200 - duration: 80.784941ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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?name=test-ds-instance-placement-group-basic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 347 - uncompressed: false - body: '{"placement_groups": [{"id": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9b1aa8b4-8d5a-4b2c-8040-34894f4bdab7 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 129.617914ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 344 - uncompressed: false - body: '{"placement_group": {"id": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b5e4e92f-ebaa-46d8-b14c-052ad4863399 - status: 200 OK - code: 200 - duration: 92.1487ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 344 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fff4c74d-a5e7-4faf-84dd-c3bf2b45b136 - status: 200 OK - code: 200 - duration: 102.480009ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 344 - uncompressed: false - body: '{"placement_group": {"id": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3089f5ef-1001-4bf5-b28e-7f84cf342e8e - status: 200 OK - code: 200 - duration: 97.988931ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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?name=test-ds-instance-placement-group-basic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 347 - uncompressed: false - body: '{"placement_groups": [{"id": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 914fa6c0-2465-4c07-8f4d-ed1e6f5f2dd8 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 134.925219ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 344 - uncompressed: false - body: '{"placement_group": {"id": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ae888fcf-9376-4dfa-be37-0bb7e6904bbd - status: 200 OK - code: 200 - duration: 169.950833ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 344 - uncompressed: false - body: '{"placement_group": {"id": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 84c30dbb-9603-4f50-984c-60579b7e5e84 - status: 200 OK - code: 200 - duration: 161.907253ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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?name=test-ds-instance-placement-group-basic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 347 - uncompressed: false - body: '{"placement_groups": [{"id": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:31 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4c03da14-855e-450a-bd83-d078844a3e54 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 171.746392ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 344 - uncompressed: false - body: '{"placement_group": {"id": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 69e50b33-da12-4e20-92ec-ff04be963689 - status: 200 OK - code: 200 - duration: 171.812575ms - - 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/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 344 - uncompressed: false - body: '{"placement_group": {"id": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cd68417b-12bd-4083-bd5b-f1fcef31c121 - status: 200 OK - code: 200 - duration: 103.497151ms - - 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/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e - 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:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bfff3ca0-48b8-4f2f-abc1-99d159f65915 - status: 204 No Content - code: 204 - duration: 262.485264ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 152 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 397e0c4f-ab34-405e-bdd6-1cb8a8c0aa43 - status: 404 Not Found - code: 404 - duration: 30.825812ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 152 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fb8a2129-07e9-4e88-b475-353df6b2ab02 - status: 404 Not Found - code: 404 - duration: 33.699475ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/8cb4d023-4d90-4d23-85b6-fea97b26743e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 152 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 737b0982-34a7-4ddd-956c-8a93d67287ef - status: 404 Not Found - code: 404 - duration: 27.479575ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 156 + host: api.scaleway.com + body: "{\"name\":\"test-ds-instance-placement-group-basic\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"policy_mode\":\"optional\",\"policy_type\":\"max_availability\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 344 + body: "{\"placement_group\": {\"id\": \"33593969-ddc6-4f65-b3c4-e0381fad957a\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/33593969-ddc6-4f65-b3c4-e0381fad957a + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - baf3753d-010b-4818-aa7e-8b6566198cd9 + status: 201 Created + code: 201 + duration: 309.067375ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/33593969-ddc6-4f65-b3c4-e0381fad957a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 344 + body: "{\"placement_group\": {\"id\": \"33593969-ddc6-4f65-b3c4-e0381fad957a\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aaaa11d6-0089-4bde-896d-35d0dea6c415 + status: 200 OK + code: 200 + duration: 156.346408ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/33593969-ddc6-4f65-b3c4-e0381fad957a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 344 + body: "{\"placement_group\": {\"id\": \"33593969-ddc6-4f65-b3c4-e0381fad957a\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0f9d13a1-6a9e-47b4-80e6-2880c01db886 + status: 200 OK + code: 200 + duration: 144.419735ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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?name=test-ds-instance-placement-group-basic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 347 + body: "{\"placement_groups\": [{\"id\": \"33593969-ddc6-4f65-b3c4-e0381fad957a\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d6f45fbd-b179-4e70-8197-e51f4f76d65a + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 190.371092ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/33593969-ddc6-4f65-b3c4-e0381fad957a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 344 + body: "{\"placement_group\": {\"id\": \"33593969-ddc6-4f65-b3c4-e0381fad957a\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8effc49b-3eb5-4997-85c1-8e3d4e11ae2e + status: 200 OK + code: 200 + duration: 120.412843ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/33593969-ddc6-4f65-b3c4-e0381fad957a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 344 + body: "{\"placement_group\": {\"id\": \"33593969-ddc6-4f65-b3c4-e0381fad957a\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 84a4f69b-98e9-46ab-a3f0-0ec848434878 + status: 200 OK + code: 200 + duration: 98.37833ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/33593969-ddc6-4f65-b3c4-e0381fad957a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 344 + body: "{\"placement_group\": {\"id\": \"33593969-ddc6-4f65-b3c4-e0381fad957a\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 370f6534-8d4e-451b-8c1d-be511772574e + status: 200 OK + code: 200 + duration: 100.127411ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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?name=test-ds-instance-placement-group-basic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 347 + body: "{\"placement_groups\": [{\"id\": \"33593969-ddc6-4f65-b3c4-e0381fad957a\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2b6b3f51-81af-45ff-a7dd-c216fdc15a97 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 127.623029ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/33593969-ddc6-4f65-b3c4-e0381fad957a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 344 + body: "{\"placement_group\": {\"id\": \"33593969-ddc6-4f65-b3c4-e0381fad957a\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 05ae8462-a3bd-4547-9338-f60cec402164 + status: 200 OK + code: 200 + duration: 117.018436ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/33593969-ddc6-4f65-b3c4-e0381fad957a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 344 + body: "{\"placement_group\": {\"id\": \"33593969-ddc6-4f65-b3c4-e0381fad957a\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d2dca528-153f-4d98-a3df-bb59572078c0 + status: 200 OK + code: 200 + duration: 113.793967ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/33593969-ddc6-4f65-b3c4-e0381fad957a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 344 + body: "{\"placement_group\": {\"id\": \"33593969-ddc6-4f65-b3c4-e0381fad957a\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e6d112d4-58db-4923-8077-0c26a613a1f9 + status: 200 OK + code: 200 + duration: 120.902402ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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?name=test-ds-instance-placement-group-basic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 347 + body: "{\"placement_groups\": [{\"id\": \"33593969-ddc6-4f65-b3c4-e0381fad957a\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fe9c7d3f-1ad3-461f-956d-84583278833f + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 161.647923ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/33593969-ddc6-4f65-b3c4-e0381fad957a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 344 + body: "{\"placement_group\": {\"id\": \"33593969-ddc6-4f65-b3c4-e0381fad957a\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 05c15c0e-5211-4097-b4b1-06400f937287 + status: 200 OK + code: 200 + duration: 103.887895ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/33593969-ddc6-4f65-b3c4-e0381fad957a + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e580f7a6-4cdd-49d0-aaca-a7404948e265 + status: 204 No Content + code: 204 + duration: 152.184251ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/33593969-ddc6-4f65-b3c4-e0381fad957a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 152 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_placement_group\", \"resource_id\": \"33593969-ddc6-4f65-b3c4-e0381fad957a\"}" + headers: + Content-Length: + - "152" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 10cfa047-2aa0-4dfe-90cb-95895751a0dc + status: 404 Not Found + code: 404 + duration: 51.146893ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/33593969-ddc6-4f65-b3c4-e0381fad957a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 152 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_placement_group\", \"resource_id\": \"33593969-ddc6-4f65-b3c4-e0381fad957a\"}" + headers: + Content-Length: + - "152" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 04648d78-dfd5-4936-b354-d6dc35194b93 + status: 404 Not Found + code: 404 + duration: 37.383755ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/33593969-ddc6-4f65-b3c4-e0381fad957a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 152 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_placement_group\", \"resource_id\": \"33593969-ddc6-4f65-b3c4-e0381fad957a\"}" + headers: + Content-Length: + - "152" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 27daaaca-2653-4f6f-bcc5-a45c4dc69b77 + status: 404 Not Found + code: 404 + duration: 37.767966ms 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 ac762ab54..96b568ee8 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 @@ -1,4702 +1,3876 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5cec7f3f-3478-44eb-ae6b-ea9bd322f66c - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 51.133026ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 43701b6f-029c-4a84-839a-211d7173bb16 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 46.038581ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 464a6008-d568-45f7-97f7-28992a7e637a - status: 200 OK - code: 200 - duration: 76.112272ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 153 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1094 - uncompressed: false - body: '{"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: - - "1094" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1bbcb5a8-f245-4940-b3dc-d1f8ddc09f20 - status: 200 OK - code: 200 - duration: 618.791892ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/36806280-a614-4a51-a8f1-7f473faf875e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1094 - uncompressed: false - 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: - - "1094" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c18c3da2-6f29-46b9-9d97-d0b236d8f354 - status: 200 OK - code: 200 - duration: 24.764284ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 250 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-terraform-datasource-private-nic","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1820 - uncompressed: false - 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: - - "1820" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9d694191-8c36-4d9b-85b5-d83fca9fc8e8 - status: 201 Created - code: 201 - duration: 1.445600468s - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1820 - uncompressed: false - 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: - - "1820" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cf4c5c98-ff0e-4126-8ed8-a8a3014ed7ef - status: 200 OK - code: 200 - duration: 427.109854ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1774 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8dfb6f47-a257-4b81-8338-0e6e551e31e2 - status: 200 OK - code: 200 - duration: 143.780756ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f7eadda-567f-4f63-ba6a-e04480cd9e82 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 310b5840-7f0f-4669-b458-efa25a0a0321 - status: 200 OK - code: 200 - duration: 78.609371ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweron"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8563fbd9-5db0-4e36-aef5-c041489f7660 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 190a9f75-920c-428d-8dc5-ea2815089470 - status: 202 Accepted - code: 202 - duration: 426.001624ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1842 - uncompressed: false - 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: - - "1842" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4bedb702-58f3-41ec-9ea5-370b090ca5a6 - status: 200 OK - code: 200 - duration: 126.412553ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1975 - uncompressed: false - 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: - - "1975" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 530039f8-bb29-4516-848d-920d95ce03c8 - status: 200 OK - code: 200 - duration: 140.417971ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1929 - uncompressed: false - 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: - - "1929" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 843ab8d6-df06-488f-a633-099948a0354e - status: 200 OK - code: 200 - duration: 150.521652ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4f7eadda-567f-4f63-ba6a-e04480cd9e82 - 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": "4f7eadda-567f-4f63-ba6a-e04480cd9e82"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e74be688-0f5f-43d9-9706-6e8d1a4d7b97 - status: 404 Not Found - code: 404 - duration: 28.668003ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f7eadda-567f-4f63-ba6a-e04480cd9e82 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9a5892d4-3712-469e-be8a-43b1039feadd - status: 200 OK - code: 200 - duration: 83.189136ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/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:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 50ce470a-aa1b-40a7-aa0b-ee089fd91064 - status: 200 OK - code: 200 - duration: 96.788714ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/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:46 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2335a44f-5482-4827-9fe9-e2151c1cfb01 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 105.42947ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1929 - uncompressed: false - 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: - - "1929" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ddcf9dbb-903f-40f8-af94-0cfa15c21a3a - status: 200 OK - code: 200 - duration: 140.829942ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 110 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 512 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 089fc048-5607-431f-9cc8-63abfece53ea - status: 201 Created - code: 201 - duration: 878.706151ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 512 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 543ad134-afa9-44de-a429-a2c6c9dc50a5 - status: 200 OK - code: 200 - duration: 102.960093ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 512 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 82323436-d605-48b2-8475-fdad222f487e - status: 200 OK - code: 200 - duration: 87.935131ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 512 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 31fc65a3-0b64-452b-ad7c-dd52cc391ab6 - status: 200 OK - code: 200 - duration: 98.808524ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 512 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 923b9ce7-42d7-4570-b13c-efd2f32c5c28 - status: 200 OK - code: 200 - duration: 90.757601ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 512 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0af4e23d-7d1a-4227-b1cc-d62259ec3e3d - status: 200 OK - code: 200 - duration: 86.828927ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 512 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 334506b8-edf6-4230-b85b-5815e9eaeb5c - status: 200 OK - code: 200 - duration: 106.420101ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 514 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 33899767-38a0-4986-b58b-07a742693ac4 - status: 200 OK - code: 200 - duration: 102.146171ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 514 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ff08e464-c5e8-4c73-afaf-2c609563c9ec - status: 200 OK - code: 200 - duration: 105.340554ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2472 - uncompressed: false - 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: - - "2472" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2f9bc6d9-69f5-47a6-86f9-2b08a35ca513 - status: 200 OK - code: 200 - duration: 135.128224ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1105 - uncompressed: false - 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: - - "1105" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0d2b2b7b-54f0-430f-8a2d-f079731ec7a4 - status: 200 OK - code: 200 - duration: 51.915767ms - - 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/vpc/v2/regions/fr-par/private-networks/36806280-a614-4a51-a8f1-7f473faf875e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1094 - uncompressed: false - 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: - - "1094" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f37e45ee-a418-4b2d-91cf-d5399fc86fbf - status: 200 OK - code: 200 - duration: 29.623663ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2426 - uncompressed: false - 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: - - "2426" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8952ec76-2bcd-4af2-80cd-f71f632336ad - status: 200 OK - code: 200 - duration: 170.786461ms - - 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/4f7eadda-567f-4f63-ba6a-e04480cd9e82 - 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": "4f7eadda-567f-4f63-ba6a-e04480cd9e82"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ed6ed344-f90e-4469-a4d8-20309dcdc5ee - status: 404 Not Found - code: 404 - duration: 26.749799ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/4f7eadda-567f-4f63-ba6a-e04480cd9e82 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a8ae2ba4-ef05-4022-a5a8-ac1da4c3b3ca - status: 200 OK - code: 200 - duration: 90.732459ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/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:54:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 50ee3fee-d14a-4953-b0bb-468bd2aa1326 - status: 200 OK - code: 200 - duration: 98.976043ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 517 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:18 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 59ea1294-d086-45cf-8a03-a703ef00a531 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 101.896674ms - - 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 - 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=f8694abf-4cf2-4e7d-9a7d-40d4b06908e7&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1105 - uncompressed: false - 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: - - "1105" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5425a23c-6ff3-4758-8f67-8a70834b6706 - status: 200 OK - code: 200 - duration: 29.505812ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 514 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2fecad00-7527-4931-bbb2-df5969e6c093 - status: 200 OK - code: 200 - duration: 163.720778ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2426 - uncompressed: false - 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: - - "2426" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0ba347d4-f271-4ed1-ada4-07a925e8d52c - status: 200 OK - code: 200 - duration: 145.853779ms - - 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: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1105 - uncompressed: false - 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: - - "1105" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1ab2d874-df18-4d4a-af19-0004e7f7b187 - status: 200 OK - code: 200 - duration: 50.390634ms - - 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/vpc/v2/regions/fr-par/private-networks/36806280-a614-4a51-a8f1-7f473faf875e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1094 - uncompressed: false - 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: - - "1094" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c7558563-501d-417a-b75f-d34d44ad09f8 - status: 200 OK - code: 200 - duration: 25.724211ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2426 - uncompressed: false - 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: - - "2426" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - db6e01e8-410d-49da-8967-34657a9633af - status: 200 OK - code: 200 - duration: 180.600111ms - - 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/volumes/4f7eadda-567f-4f63-ba6a-e04480cd9e82 - 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": "4f7eadda-567f-4f63-ba6a-e04480cd9e82"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7650f7c2-8bb3-455b-ac50-f3904977cb59 - status: 404 Not Found - code: 404 - duration: 34.929314ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f7eadda-567f-4f63-ba6a-e04480cd9e82 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d9147ba6-d74e-4e14-a29f-a8320f8d1dc2 - status: 200 OK - code: 200 - duration: 94.968651ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9/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:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0096e7b7-3890-44df-b7a4-7047b5b19fcc - status: 200 OK - code: 200 - duration: 97.2414ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 517 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:19 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b0d1f4db-8fe7-4e85-9db1-b282421f9db1 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 100.010899ms - - 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: - 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=f8694abf-4cf2-4e7d-9a7d-40d4b06908e7&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1105 - uncompressed: false - 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: - - "1105" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0a2b35be-ce22-4fc1-a1d5-52fa2e399f07 - status: 200 OK - code: 200 - duration: 33.173801ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 514 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4a505550-0a6c-4d70-aee6-ad79088da0dd - status: 200 OK - code: 200 - duration: 96.178453ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 517 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 17ec5d21-fdd3-4e20-88dc-cd627c06dd01 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 106.018122ms - - 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: - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics?tags=test-terraform-datasource-private-nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 517 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ff3ab54b-9917-4ae0-9fb9-2622e759f179 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 134.092558ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 514 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 241b29f0-7e6b-4e40-af18-974fabbc622b - status: 200 OK - code: 200 - duration: 99.735915ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2426 - uncompressed: false - 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: - - "2426" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9858609f-8ef0-4f89-b93c-bd0c9b8924a1 - status: 200 OK - code: 200 - duration: 131.931036ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 514 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ee2a916a-e7f9-4a61-bbe0-ad7e4693b4e2 - status: 200 OK - code: 200 - duration: 94.21465ms - - 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: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1105 - uncompressed: false - 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: - - "1105" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5bf4c3c9-0fab-4543-a51e-999482921979 - status: 200 OK - code: 200 - duration: 49.727605ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2472 - uncompressed: false - 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: - - "2472" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e901fb59-380a-4e08-9c5c-02c799139c3e - status: 200 OK - code: 200 - duration: 164.675564ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2472 - uncompressed: false - 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: - - "2472" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - efb81614-fc5d-4023-8653-24ddc7126267 - status: 200 OK - code: 200 - duration: 141.39883ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 514 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 989cc2aa-61fd-4b17-9aa8-4020c0dc8fc8 - status: 200 OK - code: 200 - duration: 92.539298ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1105 - uncompressed: false - 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: - - "1105" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 21b7af96-d47d-4d73-82cc-ad99bdd8249f - status: 200 OK - code: 200 - duration: 46.686188ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1105 - uncompressed: false - 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: - - "1105" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f071c38f-9a89-4995-abea-7aa97eca30e7 - status: 200 OK - code: 200 - duration: 61.480923ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2426 - uncompressed: false - 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: - - "2426" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 75f8b66a-b790-4ad7-821d-47bc12ac474b - status: 200 OK - code: 200 - duration: 149.163057ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1105 - uncompressed: false - 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: - - "1105" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 697429ab-740a-4ce5-9a6f-b9e065f6abc4 - status: 200 OK - code: 200 - duration: 45.321506ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 514 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 229e90cc-35bb-4c7b-b3c9-a3a505280e24 - status: 200 OK - code: 200 - duration: 95.811236ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 514 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 995df3e2-54d2-4315-8776-827e451489a8 - status: 200 OK - code: 200 - duration: 102.015477ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics?tags=test-terraform-datasource-private-nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 517 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b6060e31-5f65-4064-a14a-4145208e3137 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 114.785736ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 517 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7114fb1c-9c04-44e4-9e34-80c881f85343 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 122.731093ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 514 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 949f4b4f-6030-4559-aa2e-3eb0433c6919 - status: 200 OK - code: 200 - duration: 99.783214ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 514 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4907ef68-517f-45ca-b737-cd105d799534 - status: 200 OK - code: 200 - duration: 115.599187ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2472 - uncompressed: false - 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: - - "2472" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dd904d0b-ab2b-4e61-acb4-36e4fc03ec0e - status: 200 OK - code: 200 - duration: 140.122493ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1105 - uncompressed: false - 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: - - "1105" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a49d3c15-ea40-40ff-8877-a309750c0789 - status: 200 OK - code: 200 - duration: 47.048515ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2472 - uncompressed: false - 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: - - "2472" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 97a392ca-7f21-4b4c-b183-6f1e97fe54cd - status: 200 OK - code: 200 - duration: 167.851052ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2426 - uncompressed: false - 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: - - "2426" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aed5303a-1d44-480e-b91b-1d695075051f - status: 200 OK - code: 200 - duration: 185.324075ms - - 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: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1105 - uncompressed: false - 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: - - "1105" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 280b4a2b-3815-4a4a-bcec-39eabef77394 - status: 200 OK - code: 200 - duration: 45.145598ms - - 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: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1105 - uncompressed: false - 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: - - "1105" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 52f8b392-ac19-4699-9864-c8c6c3bb322d - status: 200 OK - code: 200 - duration: 45.148062ms - - 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/vpc/v2/regions/fr-par/private-networks/36806280-a614-4a51-a8f1-7f473faf875e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1094 - uncompressed: false - 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: - - "1094" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 28c0ceb8-d1f2-449a-91e1-732479cbc5ac - status: 200 OK - code: 200 - duration: 24.420765ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2426 - uncompressed: false - 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: - - "2426" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c5341561-501a-4061-98ae-3a69bc1e13a8 - status: 200 OK - code: 200 - duration: 132.354538ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4f7eadda-567f-4f63-ba6a-e04480cd9e82 - 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": "4f7eadda-567f-4f63-ba6a-e04480cd9e82"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a78371bd-c4b1-4255-b21a-4b4620e707b6 - status: 404 Not Found - code: 404 - duration: 60.284706ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f7eadda-567f-4f63-ba6a-e04480cd9e82 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7b5db1f1-140a-4d58-b2ec-73d869091cfa - status: 200 OK - code: 200 - duration: 86.377797ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/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:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d97ce1ec-2a67-4dec-8ca4-a3128d526e6b - status: 200 OK - code: 200 - duration: 98.308045ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 517 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6f6901c3-73c5-4b97-aad6-5733c7bc2287 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 96.632302ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=f8694abf-4cf2-4e7d-9a7d-40d4b06908e7&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1105 - uncompressed: false - 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: - - "1105" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 85cb6769-72e4-4c9e-bf7f-70f266bf4d6c - status: 200 OK - code: 200 - duration: 29.546008ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics?tags=test-terraform-datasource-private-nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 517 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 211e0d1f-b22e-46dc-a6a2-927a86fa4a7d - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 100.907727ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 517 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fe30f0e1-15e6-43f1-9245-caec8d369eab - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 100.896586ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 514 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b0af732c-e6ce-4c5c-9e04-18c82d5d0453 - status: 200 OK - code: 200 - duration: 103.429953ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 514 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2bbbb92a-1830-4d36-8e07-e67e2c952e5d - status: 200 OK - code: 200 - duration: 101.749771ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 514 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 95048cdd-3466-45a8-82af-fda3a92b27d3 - status: 200 OK - code: 200 - duration: 109.91013ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2426 - uncompressed: false - 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: - - "2426" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7594d40a-fcfa-4a15-9a82-5869b33d6d31 - status: 200 OK - code: 200 - duration: 148.317397ms - - 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: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1105 - uncompressed: false - 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: - - "1105" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1e369301-a4b3-44b0-8a53-d96e0b5db65a - status: 200 OK - code: 200 - duration: 62.422052ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2472 - uncompressed: false - 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: - - "2472" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - defad036-d88b-4786-ac39-fd8c1c8c85cc - status: 200 OK - code: 200 - duration: 133.662825ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2426 - uncompressed: false - 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: - - "2426" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0fb95b00-fc8c-44de-a482-92e282ce268d - status: 200 OK - code: 200 - duration: 136.908273ms - - 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: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1105 - uncompressed: false - 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: - - "1105" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 033890c3-1974-43d2-b422-71fbde62ff29 - status: 200 OK - code: 200 - duration: 44.005185ms - - 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: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1105 - uncompressed: false - 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: - - "1105" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d6a1b0c1-412d-4403-9a77-02d4e033918c - status: 200 OK - code: 200 - duration: 59.050679ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 514 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7a4f228f-0161-4d49-a257-4d16081e826d - status: 200 OK - code: 200 - duration: 132.961664ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2426 - uncompressed: false - 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: - - "2426" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cef3b6d6-4185-45ea-9c16-9fd84b6e887c - status: 200 OK - code: 200 - duration: 138.794781ms - - 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: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1105 - uncompressed: false - 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: - - "1105" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5535ca80-af51-4725-9cbd-c8f04e301721 - status: 200 OK - code: 200 - duration: 47.765606ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 514 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 636ecbbc-4138-4b26-8580-c1f44f06803f - status: 200 OK - code: 200 - duration: 114.437616ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - 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:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f52fe887-dfef-4deb-9c55-56c6e231f2bc - status: 204 No Content - code: 204 - duration: 378.038802ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 148 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9d21cf66-4b21-4e8b-8d45-1bb56c0d3081 - status: 404 Not Found - code: 404 - duration: 90.516276ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1929 - uncompressed: false - 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: - - "1929" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b1d81364-f799-42fa-8468-4c095797927e - status: 200 OK - code: 200 - duration: 140.183758ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1929 - uncompressed: false - 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: - - "1929" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 30fb8be8-e219-4a22-a6cc-e9293774ffb2 - status: 200 OK - code: 200 - duration: 152.300536ms - - id: 98 - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:24 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/87d5ce12-15f9-4f26-98f7-6ad6ab11a5cc - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c2e4b308-6289-4659-a603-44c586ddaa29 - status: 202 Accepted - code: 202 - duration: 288.664813ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1938 - uncompressed: false - 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: - - "1938" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bc82f2b6-8da9-46b6-a64f-a2b52fbf181f - status: 200 OK - code: 200 - duration: 143.223103ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/36806280-a614-4a51-a8f1-7f473faf875e - 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:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fd9c6514-fbbb-4f2d-9a17-57ff33b26409 - status: 204 No Content - code: 204 - duration: 1.120360897s - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9 - 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": "6daf7954-11eb-415a-be20-d7e1a0cb63e9"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f8c9f806-5121-4e19-9da4-66ac8d7f1999 - status: 404 Not Found - code: 404 - duration: 46.221701ms - - id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4f7eadda-567f-4f63-ba6a-e04480cd9e82 - 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": "4f7eadda-567f-4f63-ba6a-e04480cd9e82"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9609e527-bb84-4bea-990e-dc6a823fab53 - status: 404 Not Found - code: 404 - duration: 28.373536ms - - id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f7eadda-567f-4f63-ba6a-e04480cd9e82 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 498 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 35cb284a-1ceb-4764-b33e-19bdcdb1c9d1 - status: 200 OK - code: 200 - duration: 78.589686ms - - id: 104 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f7eadda-567f-4f63-ba6a-e04480cd9e82 - 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:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 010a30e7-a1ef-4e20-8b26-addeca76d0a4 - status: 204 No Content - code: 204 - duration: 160.378163ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - 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": "6daf7954-11eb-415a-be20-d7e1a0cb63e9"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3c082ba6-367c-46be-9b38-7a116a6e0284 - status: 404 Not Found - code: 404 - duration: 34.928754ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - 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": "6daf7954-11eb-415a-be20-d7e1a0cb63e9"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2d1a377c-188a-4883-867c-faf6604c165c - status: 404 Not Found - code: 404 - duration: 30.194271ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - 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": "6daf7954-11eb-415a-be20-d7e1a0cb63e9"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 954e66a4-263a-49c5-a5e5-ee7878f3fda5 - status: 404 Not Found - code: 404 - duration: 27.976634ms - - 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/6daf7954-11eb-415a-be20-d7e1a0cb63e9/private_nics/f8694abf-4cf2-4e7d-9a7d-40d4b06908e7 - 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": "6daf7954-11eb-415a-be20-d7e1a0cb63e9"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fb2ad86b-cd8d-46fc-b50e-772d76c0cf76 - status: 404 Not Found - code: 404 - duration: 26.41268ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 510dbf1e-c09d-4a4d-8876-6168328b66ce + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 79.321452ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8a5d579e-a34d-418e-b3a4-bd3646c5255e + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 44.425468ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/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 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4456dabf-789a-4b18-ba24-15653e05d7db + status: 200 OK + code: 200 + duration: 38.449659ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 149 + host: api.scaleway.com + body: "{\"name\":\"tf-pn-tender-clarke\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"subnets\":null,\"default_route_propagation_enabled\":false}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1089 + body: "{\"id\":\"96596374-afb7-4b62-82df-6308454488f0\", \"name\":\"tf-pn-tender-clarke\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:47.316901Z\", \"updated_at\":\"2025-10-30T15:41:47.316901Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"755465f2-2733-4679-9495-62bb7c8dcd0f\", \"created_at\":\"2025-10-30T15:41:47.316901Z\", \"updated_at\":\"2025-10-30T15:41:47.316901Z\", \"subnet\":\"172.18.36.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"96596374-afb7-4b62-82df-6308454488f0\", \"vpc_id\":\"8feba4f5-79f9-42cd-b5ce-3ed8c510569e\"}, {\"id\":\"88ce9462-7acf-4708-a5ac-bbb02a27d615\", \"created_at\":\"2025-10-30T15:41:47.316901Z\", \"updated_at\":\"2025-10-30T15:41:47.316901Z\", \"subnet\":\"fd5f:519c:6d46:51d3::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"96596374-afb7-4b62-82df-6308454488f0\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4f58765c-01b2-4005-9632-f0f1418bb0c2 + status: 200 OK + code: 200 + duration: 1.252078684s +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/96596374-afb7-4b62-82df-6308454488f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1089 + body: "{\"id\":\"96596374-afb7-4b62-82df-6308454488f0\", \"name\":\"tf-pn-tender-clarke\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:47.316901Z\", \"updated_at\":\"2025-10-30T15:41:47.316901Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"755465f2-2733-4679-9495-62bb7c8dcd0f\", \"created_at\":\"2025-10-30T15:41:47.316901Z\", \"updated_at\":\"2025-10-30T15:41:47.316901Z\", \"subnet\":\"172.18.36.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"96596374-afb7-4b62-82df-6308454488f0\", \"vpc_id\":\"8feba4f5-79f9-42cd-b5ce-3ed8c510569e\"}, {\"id\":\"88ce9462-7acf-4708-a5ac-bbb02a27d615\", \"created_at\":\"2025-10-30T15:41:47.316901Z\", \"updated_at\":\"2025-10-30T15:41:47.316901Z\", \"subnet\":\"fd5f:519c:6d46:51d3::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"96596374-afb7-4b62-82df-6308454488f0\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c0106aca-0a2f-4877-beb8-d2235946f610 + status: 200 OK + code: 200 + duration: 30.845687ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 250 + host: api.scaleway.com + body: "{\"name\":\"test-terraform-datasource-private-nic\",\"dynamic_ip_required\":false,\"commercial_type\":\"DEV1-S\",\"image\":\"6d3c053e-c728-4294-b23a-560b62a4d592\",\"volumes\":{\"0\":{\"boot\":false}},\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1774 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:47.642048+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5ac12edb-a1a7-419f-b605-d96160e5292e + status: 201 Created + code: 201 + duration: 1.258783751s +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1774 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:47.642048+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6d3ed574-c6f7-4e5a-a465-37b961f7b0db + status: 200 OK + code: 200 + duration: 180.604576ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1774 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:47.642048+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2f0429bb-f785-4d56-a492-1ab2f0683282 + status: 200 OK + code: 200 + duration: 140.111844ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e7ce3e94-b87c-42a1-8407-5097d4b1e05a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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-30T15:41:47.786491Z\", \"updated_at\":\"2025-10-30T15:41:47.786491Z\", \"references\":[{\"id\":\"90a3807c-7184-4518-8d6c-8d0bec101cbd\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"created_at\":\"2025-10-30T15:41:47.786491Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 36c1e073-7078-40fb-a28f-012cd8b294ed + status: 200 OK + code: 200 + duration: 84.206053ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"0b2bd0c8-cf89-4d24-ba92-5e4f378b2045\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/action\", \"href_result\": \"/servers/b33cab92-06bf-47b6-b828-3ded5a1153da\", \"started_at\": \"2025-10-30T15:41:48.797403+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0b2bd0c8-cf89-4d24-ba92-5e4f378b2045 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b9dc0de6-7663-4a22-8d58-28e8c5f15d93 + status: 202 Accepted + code: 202 + duration: 277.012116ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1796 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:48.603838+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 487bf55b-38aa-42e5-aa10-26e1617d68c4 + status: 200 OK + code: 200 + duration: 138.283766ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1930 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:51.786772+00:00\", \"bootscript\": 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\": \"1801\", \"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: + - "1930" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 052a3bc6-c931-49b1-87c6-994a63afd9c6 + status: 200 OK + code: 200 + duration: 151.808447ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1930 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:51.786772+00:00\", \"bootscript\": 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\": \"1801\", \"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: + - "1930" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dc7d9b80-8cdc-4e54-b645-2c9ab7439dbf + status: 200 OK + code: 200 + duration: 163.18757ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e7ce3e94-b87c-42a1-8407-5097d4b1e05a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1c41f3e7-20c5-4b7f-a7e6-a22c5242b587 + status: 404 Not Found + code: 404 + duration: 25.292932ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e7ce3e94-b87c-42a1-8407-5097d4b1e05a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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-30T15:41:47.786491Z\", \"updated_at\":\"2025-10-30T15:41:47.786491Z\", \"references\":[{\"id\":\"90a3807c-7184-4518-8d6c-8d0bec101cbd\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"created_at\":\"2025-10-30T15:41:47.786491Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 84de3b27-04d6-4278-bb24-e9981732c68d + status: 200 OK + code: 200 + duration: 73.238583ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 362d74cb-5b75-4382-8f1c-181bac142538 + status: 200 OK + code: 200 + duration: 135.329186ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 976cd59a-a7d0-4659-b5fd-456280e492d6 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 107.913062ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1930 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:51.786772+00:00\", \"bootscript\": 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\": \"1801\", \"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: + - "1930" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 55ecd501-47cb-4d80-81d2-e5de608b92d6 + status: 200 OK + code: 200 + duration: 148.868321ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 110 + host: api.scaleway.com + body: "{\"private_network_id\":\"96596374-afb7-4b62-82df-6308454488f0\",\"tags\":[\"test-terraform-datasource-private-nic\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 512 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:41:55.048521+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "512" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bf12a59e-ebd7-4581-ba7b-34b17ff919ef + status: 201 Created + code: 201 + duration: 671.827813ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 512 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:41:55.048521+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "512" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a1262ef1-a809-4689-8759-13ae897f78ba + status: 200 OK + code: 200 + duration: 105.618087ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 512 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:41:55.048521+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "512" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9bd3013e-b475-451c-83af-d0bc3a1a4ceb + status: 200 OK + code: 200 + duration: 114.774945ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 512 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:41:55.048521+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "512" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 092045e0-8d2b-49c6-8190-d0a139ea0541 + status: 200 OK + code: 200 + duration: 100.067939ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 512 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:41:55.048521+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "512" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 12248cb3-bfb1-4c73-a276-74d36cb25e54 + status: 200 OK + code: 200 + duration: 107.384113ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 512 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:41:55.048521+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "512" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - be4518f0-6613-4276-9d7d-77e9272fc1a3 + status: 200 OK + code: 200 + duration: 102.10905ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 512 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:41:55.048521+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "512" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a82a293f-66b7-4b1a-843a-911e9548b9a9 + status: 200 OK + code: 200 + duration: 125.09168ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 512 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:41:55.048521+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "512" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0f5e5e03-5837-49de-8c36-54587f8f6f61 + status: 200 OK + code: 200 + duration: 94.177104ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 512 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:41:55.048521+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "512" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 66cb0d8d-8fd4-4849-b879-7042a1d1be55 + status: 200 OK + code: 200 + duration: 92.445386ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 514 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "514" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8ada7a1b-6e13-4941-afcb-f6b525e17c5a + status: 200 OK + code: 200 + duration: 102.713328ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 514 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "514" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9005e7d9-216d-4f8c-8f57-0c2132729c6b + status: 200 OK + code: 200 + duration: 117.555368ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2427 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:51.786772+00:00\", \"bootscript\": 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\": \"1801\", \"node_id\": \"9\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2427" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a39b61e0-a799-4199-94e7-d7fa9756fe9c + status: 200 OK + code: 200 + duration: 135.433063ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - 96596374-afb7-4b62-82df-6308454488f0 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 2a6b3886-31b0-4961-993e-9fe3511fefd4 + 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=96596374-afb7-4b62-82df-6308454488f0&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=2a6b3886-31b0-4961-993e-9fe3511fefd4&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1104 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"305b1cca-7a2b-414e-a333-d8cfe2b3f606\", \"address\":\"fd5f:519c:6d46:51d3:32cb:f320:4e23:5891/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.277692Z\", \"updated_at\":\"2025-10-30T15:41:55.277692Z\", \"source\":{\"subnet_id\":\"88ce9462-7acf-4708-a5ac-bbb02a27d615\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"address\":\"172.18.36.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.117122Z\", \"updated_at\":\"2025-10-30T15:41:55.117122Z\", \"source\":{\"subnet_id\":\"755465f2-2733-4679-9495-62bb7c8dcd0f\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1104" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0da41798-7201-4051-b54c-6f9f5180cb33 + status: 200 OK + code: 200 + duration: 45.055664ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/96596374-afb7-4b62-82df-6308454488f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1089 + body: "{\"id\":\"96596374-afb7-4b62-82df-6308454488f0\", \"name\":\"tf-pn-tender-clarke\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:47.316901Z\", \"updated_at\":\"2025-10-30T15:41:47.316901Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"755465f2-2733-4679-9495-62bb7c8dcd0f\", \"created_at\":\"2025-10-30T15:41:47.316901Z\", \"updated_at\":\"2025-10-30T15:41:47.316901Z\", \"subnet\":\"172.18.36.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"96596374-afb7-4b62-82df-6308454488f0\", \"vpc_id\":\"8feba4f5-79f9-42cd-b5ce-3ed8c510569e\"}, {\"id\":\"88ce9462-7acf-4708-a5ac-bbb02a27d615\", \"created_at\":\"2025-10-30T15:41:47.316901Z\", \"updated_at\":\"2025-10-30T15:41:47.316901Z\", \"subnet\":\"fd5f:519c:6d46:51d3::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"96596374-afb7-4b62-82df-6308454488f0\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4446599f-df7d-4e86-ba9b-3afb8164cf59 + status: 200 OK + code: 200 + duration: 40.584999ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2473 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:51.786772+00:00\", \"bootscript\": 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\": \"1801\", \"node_id\": \"9\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 13dacc69-c32b-4be2-9fc2-bc1111d33db4 + status: 200 OK + code: 200 + duration: 138.509855ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e7ce3e94-b87c-42a1-8407-5097d4b1e05a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 34a4f916-440a-4de0-886f-33ad3ef33d31 + status: 404 Not Found + code: 404 + duration: 27.204209ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e7ce3e94-b87c-42a1-8407-5097d4b1e05a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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-30T15:41:47.786491Z\", \"updated_at\":\"2025-10-30T15:41:47.786491Z\", \"references\":[{\"id\":\"90a3807c-7184-4518-8d6c-8d0bec101cbd\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"created_at\":\"2025-10-30T15:41:47.786491Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f2829a2a-3e23-4bb6-b052-78778659decf + status: 200 OK + code: 200 + duration: 99.140787ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - afac9173-2d84-4dcc-802b-ab08a964a062 + status: 200 OK + code: 200 + duration: 94.098358ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 517 + body: "{\"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}]}" + headers: + Content-Length: + - "517" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 73e22a55-c160-40d8-b1e3-7f1554a748f0 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 95.286608ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 2a6b3886-31b0-4961-993e-9fe3511fefd4 + 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=2a6b3886-31b0-4961-993e-9fe3511fefd4&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1104 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"305b1cca-7a2b-414e-a333-d8cfe2b3f606\", \"address\":\"fd5f:519c:6d46:51d3:32cb:f320:4e23:5891/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.277692Z\", \"updated_at\":\"2025-10-30T15:41:55.277692Z\", \"source\":{\"subnet_id\":\"88ce9462-7acf-4708-a5ac-bbb02a27d615\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"address\":\"172.18.36.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.117122Z\", \"updated_at\":\"2025-10-30T15:41:55.117122Z\", \"source\":{\"subnet_id\":\"755465f2-2733-4679-9495-62bb7c8dcd0f\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1104" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7f2ac6db-22ca-4a32-9d7a-5d8e935b135c + status: 200 OK + code: 200 + duration: 26.271199ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 514 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "514" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4fcaa1e9-ce24-4d76-b82a-5a35be2a72fd + status: 200 OK + code: 200 + duration: 110.709788ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2473 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:51.786772+00:00\", \"bootscript\": 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\": \"1801\", \"node_id\": \"9\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c5668c26-2962-40f7-9907-f46b94135f87 + status: 200 OK + code: 200 + duration: 162.184583ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - 96596374-afb7-4b62-82df-6308454488f0 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 2a6b3886-31b0-4961-993e-9fe3511fefd4 + 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=96596374-afb7-4b62-82df-6308454488f0&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=2a6b3886-31b0-4961-993e-9fe3511fefd4&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1104 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"305b1cca-7a2b-414e-a333-d8cfe2b3f606\", \"address\":\"fd5f:519c:6d46:51d3:32cb:f320:4e23:5891/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.277692Z\", \"updated_at\":\"2025-10-30T15:41:55.277692Z\", \"source\":{\"subnet_id\":\"88ce9462-7acf-4708-a5ac-bbb02a27d615\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"address\":\"172.18.36.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.117122Z\", \"updated_at\":\"2025-10-30T15:41:55.117122Z\", \"source\":{\"subnet_id\":\"755465f2-2733-4679-9495-62bb7c8dcd0f\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1104" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ac6ecb2f-d7ee-4a15-8ea1-e792981004f0 + status: 200 OK + code: 200 + duration: 42.580983ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/96596374-afb7-4b62-82df-6308454488f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1089 + body: "{\"id\":\"96596374-afb7-4b62-82df-6308454488f0\", \"name\":\"tf-pn-tender-clarke\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:47.316901Z\", \"updated_at\":\"2025-10-30T15:41:47.316901Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"755465f2-2733-4679-9495-62bb7c8dcd0f\", \"created_at\":\"2025-10-30T15:41:47.316901Z\", \"updated_at\":\"2025-10-30T15:41:47.316901Z\", \"subnet\":\"172.18.36.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"96596374-afb7-4b62-82df-6308454488f0\", \"vpc_id\":\"8feba4f5-79f9-42cd-b5ce-3ed8c510569e\"}, {\"id\":\"88ce9462-7acf-4708-a5ac-bbb02a27d615\", \"created_at\":\"2025-10-30T15:41:47.316901Z\", \"updated_at\":\"2025-10-30T15:41:47.316901Z\", \"subnet\":\"fd5f:519c:6d46:51d3::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"96596374-afb7-4b62-82df-6308454488f0\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 17813b83-2fe6-4972-a90f-da8fc85f0814 + status: 200 OK + code: 200 + duration: 32.596524ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2473 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:51.786772+00:00\", \"bootscript\": 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\": \"1801\", \"node_id\": \"9\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1106ea08-1228-46c5-957d-46800da235c5 + status: 200 OK + code: 200 + duration: 137.213453ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e7ce3e94-b87c-42a1-8407-5097d4b1e05a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7d2b1012-76c7-41d6-8a33-1104699c3a2c + status: 404 Not Found + code: 404 + duration: 29.270335ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e7ce3e94-b87c-42a1-8407-5097d4b1e05a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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-30T15:41:47.786491Z\", \"updated_at\":\"2025-10-30T15:41:47.786491Z\", \"references\":[{\"id\":\"90a3807c-7184-4518-8d6c-8d0bec101cbd\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"created_at\":\"2025-10-30T15:41:47.786491Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - df9e09da-79ea-4119-bb9e-18d9ef6dd791 + status: 200 OK + code: 200 + duration: 97.337965ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b42ffa6c-91ff-4347-9e34-5c857be63d67 + status: 200 OK + code: 200 + duration: 102.18125ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 517 + body: "{\"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}]}" + headers: + Content-Length: + - "517" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 03e276d3-1c93-4342-8980-d412b1244425 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 99.709102ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 2a6b3886-31b0-4961-993e-9fe3511fefd4 + 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=2a6b3886-31b0-4961-993e-9fe3511fefd4&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1104 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"305b1cca-7a2b-414e-a333-d8cfe2b3f606\", \"address\":\"fd5f:519c:6d46:51d3:32cb:f320:4e23:5891/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.277692Z\", \"updated_at\":\"2025-10-30T15:41:55.277692Z\", \"source\":{\"subnet_id\":\"88ce9462-7acf-4708-a5ac-bbb02a27d615\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"address\":\"172.18.36.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.117122Z\", \"updated_at\":\"2025-10-30T15:41:55.117122Z\", \"source\":{\"subnet_id\":\"755465f2-2733-4679-9495-62bb7c8dcd0f\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1104" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 665c1258-fe8d-42ae-bb2c-9bd0d5a68481 + status: 200 OK + code: 200 + duration: 25.019802ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 514 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "514" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f8f10cfd-1b84-440d-9633-51129e7b7d3e + status: 200 OK + code: 200 + duration: 89.500644ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics?tags=test-terraform-datasource-private-nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 517 + body: "{\"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}]}" + headers: + Content-Length: + - "517" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3e88ed35-dde6-466d-b0ee-123567174250 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 103.181356ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 517 + body: "{\"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}]}" + headers: + Content-Length: + - "517" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cd1f5e3f-e587-4a48-ae65-8ef3573c82ef + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 118.550295ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 514 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "514" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 92a77a07-fcb3-4d8c-b015-6e80af3a3fd4 + status: 200 OK + code: 200 + duration: 94.850109ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 514 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "514" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 09b880bf-38a8-4e73-b775-a28e1f452567 + status: 200 OK + code: 200 + duration: 115.888592ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2427 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:51.786772+00:00\", \"bootscript\": 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\": \"1801\", \"node_id\": \"9\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2427" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4db6eb8a-0a18-4a96-8d16-8d64a42b7bd9 + status: 200 OK + code: 200 + duration: 149.728719ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - 96596374-afb7-4b62-82df-6308454488f0 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 2a6b3886-31b0-4961-993e-9fe3511fefd4 + 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=96596374-afb7-4b62-82df-6308454488f0&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=2a6b3886-31b0-4961-993e-9fe3511fefd4&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1104 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"305b1cca-7a2b-414e-a333-d8cfe2b3f606\", \"address\":\"fd5f:519c:6d46:51d3:32cb:f320:4e23:5891/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.277692Z\", \"updated_at\":\"2025-10-30T15:41:55.277692Z\", \"source\":{\"subnet_id\":\"88ce9462-7acf-4708-a5ac-bbb02a27d615\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"address\":\"172.18.36.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.117122Z\", \"updated_at\":\"2025-10-30T15:41:55.117122Z\", \"source\":{\"subnet_id\":\"755465f2-2733-4679-9495-62bb7c8dcd0f\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1104" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7927f7da-9422-4c52-9dba-f4a020e03013 + status: 200 OK + code: 200 + duration: 47.965373ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2427 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:51.786772+00:00\", \"bootscript\": 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\": \"1801\", \"node_id\": \"9\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2427" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8c836bf1-6ca9-40cf-8da1-3322acf779e7 + status: 200 OK + code: 200 + duration: 158.721226ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2473 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:51.786772+00:00\", \"bootscript\": 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\": \"1801\", \"node_id\": \"9\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 23982777-1917-4952-a3cb-007fa292228d + status: 200 OK + code: 200 + duration: 160.187998ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 514 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "514" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c2788321-08b5-402f-a0d6-18c5fe1359e3 + status: 200 OK + code: 200 + duration: 95.909015ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - 96596374-afb7-4b62-82df-6308454488f0 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 2a6b3886-31b0-4961-993e-9fe3511fefd4 + 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=96596374-afb7-4b62-82df-6308454488f0&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=2a6b3886-31b0-4961-993e-9fe3511fefd4&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1104 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"305b1cca-7a2b-414e-a333-d8cfe2b3f606\", \"address\":\"fd5f:519c:6d46:51d3:32cb:f320:4e23:5891/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.277692Z\", \"updated_at\":\"2025-10-30T15:41:55.277692Z\", \"source\":{\"subnet_id\":\"88ce9462-7acf-4708-a5ac-bbb02a27d615\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"address\":\"172.18.36.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.117122Z\", \"updated_at\":\"2025-10-30T15:41:55.117122Z\", \"source\":{\"subnet_id\":\"755465f2-2733-4679-9495-62bb7c8dcd0f\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1104" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e8b386ae-33ab-44ab-a71a-5679ea217129 + status: 200 OK + code: 200 + duration: 53.948947ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - 96596374-afb7-4b62-82df-6308454488f0 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 2a6b3886-31b0-4961-993e-9fe3511fefd4 + 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=96596374-afb7-4b62-82df-6308454488f0&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=2a6b3886-31b0-4961-993e-9fe3511fefd4&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1104 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"305b1cca-7a2b-414e-a333-d8cfe2b3f606\", \"address\":\"fd5f:519c:6d46:51d3:32cb:f320:4e23:5891/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.277692Z\", \"updated_at\":\"2025-10-30T15:41:55.277692Z\", \"source\":{\"subnet_id\":\"88ce9462-7acf-4708-a5ac-bbb02a27d615\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"address\":\"172.18.36.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.117122Z\", \"updated_at\":\"2025-10-30T15:41:55.117122Z\", \"source\":{\"subnet_id\":\"755465f2-2733-4679-9495-62bb7c8dcd0f\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1104" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3950c9f5-d8ae-4740-a8f1-181dec5dc877 + status: 200 OK + code: 200 + duration: 48.878626ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2473 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:51.786772+00:00\", \"bootscript\": 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\": \"1801\", \"node_id\": \"9\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3507b567-485e-400f-a9bd-0821269e89d5 + status: 200 OK + code: 200 + duration: 351.36216ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - 96596374-afb7-4b62-82df-6308454488f0 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 2a6b3886-31b0-4961-993e-9fe3511fefd4 + 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=96596374-afb7-4b62-82df-6308454488f0&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=2a6b3886-31b0-4961-993e-9fe3511fefd4&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1104 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"305b1cca-7a2b-414e-a333-d8cfe2b3f606\", \"address\":\"fd5f:519c:6d46:51d3:32cb:f320:4e23:5891/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.277692Z\", \"updated_at\":\"2025-10-30T15:41:55.277692Z\", \"source\":{\"subnet_id\":\"88ce9462-7acf-4708-a5ac-bbb02a27d615\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"address\":\"172.18.36.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.117122Z\", \"updated_at\":\"2025-10-30T15:41:55.117122Z\", \"source\":{\"subnet_id\":\"755465f2-2733-4679-9495-62bb7c8dcd0f\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1104" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 85ba574f-aff0-43d2-85aa-9922e04eff1b + status: 200 OK + code: 200 + duration: 43.494216ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 514 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "514" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9d35e1f7-8d4b-44d8-91c4-84b573893834 + status: 200 OK + code: 200 + duration: 103.805867ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 514 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "514" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f645833f-c4b7-4138-9f8a-dc9ffff26964 + status: 200 OK + code: 200 + duration: 95.171822ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics?tags=test-terraform-datasource-private-nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 517 + body: "{\"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}]}" + headers: + Content-Length: + - "517" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e2c5271a-a620-4093-bdfc-bad0117522f7 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 102.872848ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 517 + body: "{\"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}]}" + headers: + Content-Length: + - "517" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aaa5c230-587e-4f7f-93e4-f4c9f8996d40 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 106.805555ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 514 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "514" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d622b4f5-323b-4fc0-8b00-d5dadc99ccb5 + status: 200 OK + code: 200 + duration: 102.790814ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 514 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "514" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dc7c439e-0444-4d3d-ac0e-ad221dfac537 + status: 200 OK + code: 200 + duration: 106.92006ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2427 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:51.786772+00:00\", \"bootscript\": 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\": \"1801\", \"node_id\": \"9\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2427" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 54a1e43f-bace-4fec-9de4-2fee34cd8f2e + status: 200 OK + code: 200 + duration: 170.972629ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - 96596374-afb7-4b62-82df-6308454488f0 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 2a6b3886-31b0-4961-993e-9fe3511fefd4 + 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=96596374-afb7-4b62-82df-6308454488f0&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=2a6b3886-31b0-4961-993e-9fe3511fefd4&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1104 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"305b1cca-7a2b-414e-a333-d8cfe2b3f606\", \"address\":\"fd5f:519c:6d46:51d3:32cb:f320:4e23:5891/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.277692Z\", \"updated_at\":\"2025-10-30T15:41:55.277692Z\", \"source\":{\"subnet_id\":\"88ce9462-7acf-4708-a5ac-bbb02a27d615\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"address\":\"172.18.36.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.117122Z\", \"updated_at\":\"2025-10-30T15:41:55.117122Z\", \"source\":{\"subnet_id\":\"755465f2-2733-4679-9495-62bb7c8dcd0f\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1104" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 41e93aed-958e-4cf2-a676-6cee10833093 + status: 200 OK + code: 200 + duration: 47.990661ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2427 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:51.786772+00:00\", \"bootscript\": 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\": \"1801\", \"node_id\": \"9\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2427" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fc2b05be-eec3-4b24-8a41-ddbc87135734 + status: 200 OK + code: 200 + duration: 162.620281ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2427 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:51.786772+00:00\", \"bootscript\": 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\": \"1801\", \"node_id\": \"9\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2427" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e4df647d-2a15-42ae-9288-84906ee5452a + status: 200 OK + code: 200 + duration: 172.095284ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - 96596374-afb7-4b62-82df-6308454488f0 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 2a6b3886-31b0-4961-993e-9fe3511fefd4 + 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=96596374-afb7-4b62-82df-6308454488f0&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=2a6b3886-31b0-4961-993e-9fe3511fefd4&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1104 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"305b1cca-7a2b-414e-a333-d8cfe2b3f606\", \"address\":\"fd5f:519c:6d46:51d3:32cb:f320:4e23:5891/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.277692Z\", \"updated_at\":\"2025-10-30T15:41:55.277692Z\", \"source\":{\"subnet_id\":\"88ce9462-7acf-4708-a5ac-bbb02a27d615\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"address\":\"172.18.36.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.117122Z\", \"updated_at\":\"2025-10-30T15:41:55.117122Z\", \"source\":{\"subnet_id\":\"755465f2-2733-4679-9495-62bb7c8dcd0f\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1104" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 84456247-8bff-4471-835a-5a232a22138c + status: 200 OK + code: 200 + duration: 40.846239ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - 96596374-afb7-4b62-82df-6308454488f0 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 2a6b3886-31b0-4961-993e-9fe3511fefd4 + 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=96596374-afb7-4b62-82df-6308454488f0&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=2a6b3886-31b0-4961-993e-9fe3511fefd4&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1104 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"305b1cca-7a2b-414e-a333-d8cfe2b3f606\", \"address\":\"fd5f:519c:6d46:51d3:32cb:f320:4e23:5891/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.277692Z\", \"updated_at\":\"2025-10-30T15:41:55.277692Z\", \"source\":{\"subnet_id\":\"88ce9462-7acf-4708-a5ac-bbb02a27d615\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"address\":\"172.18.36.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.117122Z\", \"updated_at\":\"2025-10-30T15:41:55.117122Z\", \"source\":{\"subnet_id\":\"755465f2-2733-4679-9495-62bb7c8dcd0f\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1104" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7e3cb4ef-b545-49b5-878b-3be19f20db68 + status: 200 OK + code: 200 + duration: 72.596345ms +- id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/96596374-afb7-4b62-82df-6308454488f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1089 + body: "{\"id\":\"96596374-afb7-4b62-82df-6308454488f0\", \"name\":\"tf-pn-tender-clarke\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:47.316901Z\", \"updated_at\":\"2025-10-30T15:41:47.316901Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"755465f2-2733-4679-9495-62bb7c8dcd0f\", \"created_at\":\"2025-10-30T15:41:47.316901Z\", \"updated_at\":\"2025-10-30T15:41:47.316901Z\", \"subnet\":\"172.18.36.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"96596374-afb7-4b62-82df-6308454488f0\", \"vpc_id\":\"8feba4f5-79f9-42cd-b5ce-3ed8c510569e\"}, {\"id\":\"88ce9462-7acf-4708-a5ac-bbb02a27d615\", \"created_at\":\"2025-10-30T15:41:47.316901Z\", \"updated_at\":\"2025-10-30T15:41:47.316901Z\", \"subnet\":\"fd5f:519c:6d46:51d3::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"96596374-afb7-4b62-82df-6308454488f0\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ee521d64-f436-4b08-be1d-7b84581e164c + status: 200 OK + code: 200 + duration: 33.840548ms +- id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2427 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:51.786772+00:00\", \"bootscript\": 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\": \"1801\", \"node_id\": \"9\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2427" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8fb2d51b-965f-4197-87f9-108ff45462b3 + status: 200 OK + code: 200 + duration: 172.713935ms +- id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e7ce3e94-b87c-42a1-8407-5097d4b1e05a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bcd54650-ebcf-43d5-8017-a86ad342e52c + status: 404 Not Found + code: 404 + duration: 27.472502ms +- id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e7ce3e94-b87c-42a1-8407-5097d4b1e05a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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-30T15:41:47.786491Z\", \"updated_at\":\"2025-10-30T15:41:47.786491Z\", \"references\":[{\"id\":\"90a3807c-7184-4518-8d6c-8d0bec101cbd\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"created_at\":\"2025-10-30T15:41:47.786491Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e81455c0-881f-42b1-9beb-6f322a92a370 + status: 200 OK + code: 200 + duration: 132.958983ms +- id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7b99323d-beb0-4fe6-a2c8-3e3d1034b28a + status: 200 OK + code: 200 + duration: 87.124517ms +- id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 517 + body: "{\"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}]}" + headers: + Content-Length: + - "517" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 61dbf560-c394-4e9a-8b74-f3ec04b9534b + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 98.536133ms +- id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 2a6b3886-31b0-4961-993e-9fe3511fefd4 + 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=2a6b3886-31b0-4961-993e-9fe3511fefd4&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1104 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"305b1cca-7a2b-414e-a333-d8cfe2b3f606\", \"address\":\"fd5f:519c:6d46:51d3:32cb:f320:4e23:5891/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.277692Z\", \"updated_at\":\"2025-10-30T15:41:55.277692Z\", \"source\":{\"subnet_id\":\"88ce9462-7acf-4708-a5ac-bbb02a27d615\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"address\":\"172.18.36.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.117122Z\", \"updated_at\":\"2025-10-30T15:41:55.117122Z\", \"source\":{\"subnet_id\":\"755465f2-2733-4679-9495-62bb7c8dcd0f\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1104" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 91b30d2f-5518-480e-8653-c34bcaa09044 + status: 200 OK + code: 200 + duration: 21.514406ms +- id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics?tags=test-terraform-datasource-private-nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 517 + body: "{\"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}]}" + headers: + Content-Length: + - "517" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a0a15726-3f87-48f0-9f9c-a86e6a2f4658 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 95.244649ms +- id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 517 + body: "{\"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}]}" + headers: + Content-Length: + - "517" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1b90f01a-d411-4a17-a3d6-f3b10d17150f + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 103.78558ms +- id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 514 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "514" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7f2befb0-bb05-4605-9a73-0cb34b81c8eb + status: 200 OK + code: 200 + duration: 103.386792ms +- id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 514 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "514" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 416c919b-49d8-4055-90c5-0a2aae52405e + status: 200 OK + code: 200 + duration: 80.976475ms +- id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 514 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "514" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 073fa5ed-5b47-4cac-a1d9-6e63b8ff7f56 + status: 200 OK + code: 200 + duration: 92.112754ms +- id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2427 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:51.786772+00:00\", \"bootscript\": 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\": \"1801\", \"node_id\": \"9\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2427" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1ee07eec-17b1-4eac-ac79-26211fc98f62 + status: 200 OK + code: 200 + duration: 129.622726ms +- id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - 96596374-afb7-4b62-82df-6308454488f0 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 2a6b3886-31b0-4961-993e-9fe3511fefd4 + 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=96596374-afb7-4b62-82df-6308454488f0&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=2a6b3886-31b0-4961-993e-9fe3511fefd4&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1104 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"305b1cca-7a2b-414e-a333-d8cfe2b3f606\", \"address\":\"fd5f:519c:6d46:51d3:32cb:f320:4e23:5891/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.277692Z\", \"updated_at\":\"2025-10-30T15:41:55.277692Z\", \"source\":{\"subnet_id\":\"88ce9462-7acf-4708-a5ac-bbb02a27d615\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"address\":\"172.18.36.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.117122Z\", \"updated_at\":\"2025-10-30T15:41:55.117122Z\", \"source\":{\"subnet_id\":\"755465f2-2733-4679-9495-62bb7c8dcd0f\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1104" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1d1ff52a-9d6c-4f35-bf36-21d9a7fadf0f + status: 200 OK + code: 200 + duration: 51.113798ms +- id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2427 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:51.786772+00:00\", \"bootscript\": 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\": \"1801\", \"node_id\": \"9\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2427" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2e5c3366-bc89-491d-975e-585e744be27d + status: 200 OK + code: 200 + duration: 155.711151ms +- id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2473 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:51.786772+00:00\", \"bootscript\": 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\": \"1801\", \"node_id\": \"9\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ffabdcdb-c331-489f-9a1b-f80a4408b0e2 + status: 200 OK + code: 200 + duration: 141.800848ms +- id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - 96596374-afb7-4b62-82df-6308454488f0 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 2a6b3886-31b0-4961-993e-9fe3511fefd4 + 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=96596374-afb7-4b62-82df-6308454488f0&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=2a6b3886-31b0-4961-993e-9fe3511fefd4&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1104 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"305b1cca-7a2b-414e-a333-d8cfe2b3f606\", \"address\":\"fd5f:519c:6d46:51d3:32cb:f320:4e23:5891/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.277692Z\", \"updated_at\":\"2025-10-30T15:41:55.277692Z\", \"source\":{\"subnet_id\":\"88ce9462-7acf-4708-a5ac-bbb02a27d615\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"address\":\"172.18.36.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.117122Z\", \"updated_at\":\"2025-10-30T15:41:55.117122Z\", \"source\":{\"subnet_id\":\"755465f2-2733-4679-9495-62bb7c8dcd0f\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1104" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 18b86b9f-2f3d-4a75-bc17-0683aca4b51d + status: 200 OK + code: 200 + duration: 46.965357ms +- id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - 96596374-afb7-4b62-82df-6308454488f0 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 2a6b3886-31b0-4961-993e-9fe3511fefd4 + 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=96596374-afb7-4b62-82df-6308454488f0&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=2a6b3886-31b0-4961-993e-9fe3511fefd4&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1104 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"305b1cca-7a2b-414e-a333-d8cfe2b3f606\", \"address\":\"fd5f:519c:6d46:51d3:32cb:f320:4e23:5891/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.277692Z\", \"updated_at\":\"2025-10-30T15:41:55.277692Z\", \"source\":{\"subnet_id\":\"88ce9462-7acf-4708-a5ac-bbb02a27d615\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"address\":\"172.18.36.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.117122Z\", \"updated_at\":\"2025-10-30T15:41:55.117122Z\", \"source\":{\"subnet_id\":\"755465f2-2733-4679-9495-62bb7c8dcd0f\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1104" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c0dec6b5-1b28-41e5-aa9c-813639e845f6 + status: 200 OK + code: 200 + duration: 50.215755ms +- id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 514 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "514" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6853a804-03fc-47d1-863b-233b8fa8d6ff + status: 200 OK + code: 200 + duration: 95.82061ms +- id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2473 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:51.786772+00:00\", \"bootscript\": 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\": \"1801\", \"node_id\": \"9\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eb570185-1ad8-4af0-9351-9b7db24121c7 + status: 200 OK + code: 200 + duration: 136.00628ms +- id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - 96596374-afb7-4b62-82df-6308454488f0 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 2a6b3886-31b0-4961-993e-9fe3511fefd4 + 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=96596374-afb7-4b62-82df-6308454488f0&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=2a6b3886-31b0-4961-993e-9fe3511fefd4&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1104 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"305b1cca-7a2b-414e-a333-d8cfe2b3f606\", \"address\":\"fd5f:519c:6d46:51d3:32cb:f320:4e23:5891/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.277692Z\", \"updated_at\":\"2025-10-30T15:41:55.277692Z\", \"source\":{\"subnet_id\":\"88ce9462-7acf-4708-a5ac-bbb02a27d615\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"address\":\"172.18.36.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.117122Z\", \"updated_at\":\"2025-10-30T15:41:55.117122Z\", \"source\":{\"subnet_id\":\"755465f2-2733-4679-9495-62bb7c8dcd0f\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"mac_address\":\"02:00:00:11:B4:59\", \"name\":\"test-terraform-datasource-private-nic\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1104" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9100306d-49fa-4548-b44c-1605dce87d1b + status: 200 OK + code: 200 + duration: 47.32404ms +- id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 514 + body: "{\"private_nic\": {\"id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\", \"private_network_id\": \"96596374-afb7-4b62-82df-6308454488f0\", \"server_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"mac_address\": \"02:00:00:11:b4:59\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:54.836847+00:00\", \"modification_date\": \"2025-10-30T15:42:32.619086+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"test-terraform-datasource-private-nic\"], \"ipam_ip_ids\": [\"d6f4b4e0-4a73-4389-bd52-4cacbfe73efe\", \"305b1cca-7a2b-414e-a333-d8cfe2b3f606\"]}}" + headers: + Content-Length: + - "514" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9ef23df4-70ed-42dc-92e0-28245cba587c + status: 200 OK + code: 200 + duration: 90.047431ms +- id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 31ccbea2-424b-4741-a7e1-583501a87447 + status: 204 No Content + code: 204 + duration: 473.361197ms +- id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 148 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_private_nic\", \"resource_id\": \"2a6b3886-31b0-4961-993e-9fe3511fefd4\"}" + headers: + Content-Length: + - "148" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d6416046-85ca-4284-800c-4e5f0da5874f + status: 404 Not Found + code: 404 + duration: 91.238224ms +- id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1976 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:51.786772+00:00\", \"bootscript\": 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\": \"1801\", \"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: + - "1976" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 55f246e4-0a1e-4737-a89a-5cf16addfa2f + status: 200 OK + code: 200 + duration: 139.294408ms +- id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1930 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:41:51.786772+00:00\", \"bootscript\": 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\": \"1801\", \"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: + - "1930" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 54799048-0e9a-4c78-8b90-efe00ea4a0a8 + status: 200 OK + code: 200 + duration: 136.762088ms +- id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"0921e3f6-f5d4-4c6f-9dec-1a00a0d4617f\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/action\", \"href_result\": \"/servers/b33cab92-06bf-47b6-b828-3ded5a1153da\", \"started_at\": \"2025-10-30T15:42:42.668396+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0921e3f6-f5d4-4c6f-9dec-1a00a0d4617f + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 984ff16c-4a08-4532-a039-5e2297b58900 + status: 202 Accepted + code: 202 + duration: 285.570341ms +- id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1893 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:42:42.437728+00:00\", \"bootscript\": 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\": \"1801\", \"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: + - "1893" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - db9c389b-08d4-49b3-86fd-8db2f92321e4 + status: 200 OK + code: 200 + duration: 162.537898ms +- id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/96596374-afb7-4b62-82df-6308454488f0 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f86278a1-dd81-440d-9d3e-bdf11b0a0f3c + status: 204 No Content + code: 204 + duration: 1.091183575s +- id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1893 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:42:42.437728+00:00\", \"bootscript\": 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\": \"1801\", \"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: + - "1893" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 19654536-5005-434f-acbf-32ffbb12d12e + status: 200 OK + code: 200 + duration: 133.010762ms +- id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1893 + body: "{\"server\": {\"id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\", \"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\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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:6c:9d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.642048+00:00\", \"modification_date\": \"2025-10-30T15:42:42.437728+00:00\", \"bootscript\": 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\": \"1801\", \"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: + - "1893" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 09fe4cb3-6efe-4213-b6be-c9f34707460b + status: 200 OK + code: 200 + duration: 156.909694ms +- id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8a11719b-0919-4518-891f-719c7a528339 + status: 404 Not Found + code: 404 + duration: 44.975075ms +- id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e7ce3e94-b87c-42a1-8407-5097d4b1e05a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e446dbc0-855e-4255-88dd-1849defea9fa + status: 404 Not Found + code: 404 + duration: 38.633721ms +- id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e7ce3e94-b87c-42a1-8407-5097d4b1e05a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 498 + body: "{\"id\":\"e7ce3e94-b87c-42a1-8407-5097d4b1e05a\", \"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-30T15:41:47.786491Z\", \"updated_at\":\"2025-10-30T15:42:54.334707Z\", \"references\":[], \"parent_snapshot_id\":\"36b4ce54-c67a-4f68-ab74-839515834352\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:54.334707Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "498" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 19a0c4be-5f8d-45cd-9028-c76c8a602171 + status: 200 OK + code: 200 + duration: 85.863284ms +- id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e7ce3e94-b87c-42a1-8407-5097d4b1e05a + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bdf8c895-baa3-466f-be81-025947c6eac3 + status: 204 No Content + code: 204 + duration: 147.289519ms +- id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 29c14152-a1ee-4bb6-a224-b38764e7ca92 + status: 404 Not Found + code: 404 + duration: 30.495053ms +- id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dbfb3fdd-0128-45ce-84a8-6b877a2fc4ac + status: 404 Not Found + code: 404 + duration: 44.177309ms +- id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a2d08441-232f-49c4-9e60-93d9b24065f0 + status: 404 Not Found + code: 404 + duration: 28.428917ms +- id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b33cab92-06bf-47b6-b828-3ded5a1153da/private_nics/2a6b3886-31b0-4961-993e-9fe3511fefd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"b33cab92-06bf-47b6-b828-3ded5a1153da\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dab2a8cf-8f76-4f24-8a32-f2ff863a8658 + status: 404 Not Found + code: 404 + duration: 25.753699ms 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 56047fedb..77767f35f 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 @@ -1,2266 +1,1816 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 193 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-security-group","project":"105bdce1-64c0-48ab-899d-868455867ecf","stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 729395fb-1a5e-44a4-b551-1d58e02ec4d0 - status: 201 Created - code: 201 - duration: 265.613029ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 154 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-security-group","enable_default_security":true,"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/e7deca3f-b49b-4d66-a80f-569745f050cf - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 827cbc07-cd29-402e-b527-147651db2655 - status: 200 OK - code: 200 - duration: 177.392235ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 12 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f8caf671-398d-4b26-b3bc-eb2423574ad2 - status: 200 OK - code: 200 - duration: 149.764928ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 67553eb1-3032-4cd5-a5a3-3f331cc832a8 - status: 200 OK - code: 200 - duration: 150.34891ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cd4d573d-efac-419b-b9a9-87de1c643b15 - status: 200 OK - code: 200 - duration: 96.356136ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 743e711d-5033-472f-9d4a-ed53a4052366 - status: 200 OK - code: 200 - duration: 108.944212ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b4c8040d-8dc6-417e-ae20-0ac1e434c743 - status: 200 OK - code: 200 - duration: 102.12913ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - da44f1c1-8bd9-419a-8411-50712df60433 - status: 200 OK - code: 200 - duration: 114.285339ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6b4fc1dc-3a84-4416-bce2-b12d6a82efcc - status: 200 OK - code: 200 - duration: 113.546818ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f3c0ad69-7aec-41cd-bfe6-38a216b4c4d3 - status: 200 OK - code: 200 - duration: 81.647784ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups?name=tf-security-group&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 586 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 44a63998-0bcd-40c9-8298-66e0823a3291 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 127.615354ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 34ce40c1-9885-4cc8-9cf7-ffbbfdbfee31 - status: 200 OK - code: 200 - duration: 95.9521ms - - 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/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6c39d046-dcdb-4e19-a1a0-928dd32a39bd - status: 200 OK - code: 200 - duration: 98.20875ms - - 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: - 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/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c23ece52-c683-4f4c-b617-ab6dc3e70cb0 - status: 200 OK - code: 200 - duration: 90.09082ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fd8e5a77-f1f1-4220-b9c8-bacba92c68da - status: 200 OK - code: 200 - duration: 114.719ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 03efd47d-cb8d-45d1-bff4-0d355918c897 - status: 200 OK - code: 200 - duration: 113.880242ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2f120e73-4f71-42d1-9fe0-36deeafdd605 - status: 200 OK - code: 200 - duration: 103.037688ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups?name=tf-security-group&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 586 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 50499832-0c99-4afa-8982-d4ebc8f8f9fb - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 138.870839ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0f4598a1-1f1a-45d7-8335-e8d6273b4184 - status: 200 OK - code: 200 - duration: 110.397921ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2fc92787-9e49-4935-aad5-d1d147d03dfc - status: 200 OK - code: 200 - duration: 109.965212ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c4513aff-a948-404d-bdc1-ed3807c95509 - status: 200 OK - code: 200 - duration: 97.440263ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1bc06864-a007-4d80-bf49-aa1fe0d2b2b3 - status: 200 OK - code: 200 - duration: 99.678538ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a18d3a94-d05f-4880-b58a-def681262b00 - status: 200 OK - code: 200 - duration: 102.409615ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dbcf7b80-25e2-4c4a-8e84-7c2d6b886715 - status: 200 OK - code: 200 - duration: 106.809482ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups?name=tf-security-group&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 586 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 56b7dcd0-e8ea-4075-9c35-ebe08eda244d - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 116.206321ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 22ece8b4-1fdf-4e9b-88ca-25879b80ea1a - status: 200 OK - code: 200 - duration: 101.080419ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 46ca68be-8398-4da4-826a-bb4011552ffb - status: 200 OK - code: 200 - duration: 103.901574ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 09bb71d0-b2d1-45ed-ad4d-44ec7272b430 - status: 200 OK - code: 200 - duration: 101.015237ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 20611bc7-90d0-4c04-b050-87b10f994ebf - status: 200 OK - code: 200 - duration: 114.234054ms - - 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: - 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/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8e3f53d2-2ae3-4f1b-8f89-c8b7531a134b - status: 200 OK - code: 200 - duration: 93.532456ms - - 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/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 46f5a11f-4753-464c-a4a8-5439af6b40fa - status: 200 OK - code: 200 - duration: 114.321658ms - - 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: - 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 - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups?name=tf-security-group&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 586 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 86ab3007-b1c2-4980-94ee-b79e407fef4b - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 140.153098ms - - 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: - 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/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c0bc7cee-6f8b-46d1-bab1-447687a290e2 - status: 200 OK - code: 200 - duration: 108.400657ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4310b627-f8d8-4cc5-b295-e6b1df4b591d - status: 200 OK - code: 200 - duration: 123.445187ms - - 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: - 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/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5f74aa34-f791-4bcd-910d-2f14a1ad635b - status: 200 OK - code: 200 - duration: 124.744778ms - - 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/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 598fe7fe-0450-4b4b-8df9-4a0ac950657c - status: 200 OK - code: 200 - duration: 94.960486ms - - 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/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 821eb061-bdb4-4691-bab2-58a108a7cf1e - status: 200 OK - code: 200 - duration: 88.476172ms - - 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/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 09a48500-cd68-46a7-a468-270ba5911250 - status: 200 OK - code: 200 - duration: 100.87727ms - - 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: - 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 - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups?name=tf-security-group&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 586 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - be440e0a-558b-469a-b1fc-58ec4b469801 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 120.644691ms - - 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: - 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/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f8933f66-b2c8-4299-bf73-6a8169944887 - status: 200 OK - code: 200 - duration: 95.450032ms - - 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/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cfd8a2f3-862a-4371-9ed4-9280bdb02237 - status: 200 OK - code: 200 - duration: 96.76997ms - - 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: - 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/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7fd11492-af7f-41fc-b66b-aa7d0ac82585 - status: 200 OK - code: 200 - duration: 83.039908ms - - 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/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 19665513-3664-477b-ac29-6fb5b85c6a43 - status: 200 OK - code: 200 - duration: 101.754621ms - - 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: - 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/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fbe80f59-b399-459b-b369-2895f96ec68c - status: 200 OK - code: 200 - duration: 104.799324ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 67baedbc-14f5-48ec-9ece-72235def59be - status: 200 OK - code: 200 - duration: 93.094778ms - - 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: - 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 - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups?name=tf-security-group&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 586 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3600d736-02c5-4d34-b32b-9aeabde7d47f - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 167.703883ms - - 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: - 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/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3fbf3cc4-d505-4e93-9d2a-df10ff1e568d - status: 200 OK - code: 200 - duration: 90.6995ms - - 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/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 583 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 804ce11f-8b57-4b76-8242-9267999b3bfa - status: 200 OK - code: 200 - duration: 88.042723ms - - 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: - 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/e7deca3f-b49b-4d66-a80f-569745f050cf/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 06bb95ef-72f9-41cf-a9b1-4d463a1c306b - status: 200 OK - code: 200 - duration: 99.72161ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - 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:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7e009f0e-117a-4a6e-a7f5-47ff4906c7dd - status: 204 No Content - code: 204 - duration: 142.088557ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 151 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fd797033-3bed-4b7c-91df-b0cf1a3d3353 - status: 404 Not Found - code: 404 - duration: 27.01361ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 151 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 01508119-d9c4-469e-b53d-22593b7e7b3b - status: 404 Not Found - code: 404 - duration: 27.114309ms - - 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/security_groups/e7deca3f-b49b-4d66-a80f-569745f050cf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 151 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1b14ea2c-cd1c-42f3-b575-066548d50819 - status: 404 Not Found - code: 404 - duration: 29.659047ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 193 + host: api.scaleway.com + body: "{\"name\":\"tf-security-group\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"stateful\":true,\"inbound_default_policy\":\"accept\",\"outbound_default_policy\":\"accept\",\"enable_default_security\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d7339e23-af0f-490c-a20f-af060fe98314 + status: 201 Created + code: 201 + duration: 203.494046ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 154 + host: api.scaleway.com + body: "{\"name\":\"tf-security-group\",\"enable_default_security\":true,\"inbound_default_policy\":\"accept\",\"tags\":[],\"outbound_default_policy\":\"accept\",\"stateful\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a3eefef8-0844-4e44-91db-2c6cb10cf8c4 + status: 200 OK + code: 200 + duration: 144.456002ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 12 + host: api.scaleway.com + body: "{\"rules\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 42256208-9cfa-452f-ac02-51b0f64f19b7 + status: 200 OK + code: 200 + duration: 167.541636ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c7684aec-9dce-43a7-826b-f9248f93e723 + status: 200 OK + code: 200 + duration: 104.068412ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a25bab75-c46a-4c55-b640-4032f106eb51/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1c1b044c-9533-4087-abd9-e0e4b27ca053 + status: 200 OK + code: 200 + duration: 117.505547ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2e12ea5b-2334-42be-929d-e3307048b3ad + status: 200 OK + code: 200 + duration: 107.87385ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a25bab75-c46a-4c55-b640-4032f106eb51/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b32b838c-6a2c-470f-bdaf-ce4626899b5c + status: 200 OK + code: 200 + duration: 84.902812ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 31794be9-f412-453b-bfe6-575952702c40 + status: 200 OK + code: 200 + duration: 93.754646ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a25bab75-c46a-4c55-b640-4032f106eb51/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 07b00970-c259-4b47-b84d-311eb6d68700 + status: 200 OK + code: 200 + duration: 96.472795ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 34cfc7b1-09ae-47e1-b51e-f4f1a3c6031d + status: 200 OK + code: 200 + duration: 93.255389ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups?name=tf-security-group&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 586 + body: "{\"security_groups\": [{\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1ae4847a-1f99-496a-af10-04071623589d + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 137.888402ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a25bab75-c46a-4c55-b640-4032f106eb51/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 577f7d82-2e27-4e8d-b591-5d30e491e362 + status: 200 OK + code: 200 + duration: 104.538554ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4c8bf050-941b-4949-b92f-4078357857c8 + status: 200 OK + code: 200 + duration: 93.946636ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a25bab75-c46a-4c55-b640-4032f106eb51/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8a1757b0-8029-4654-bd3c-c1e8c0120be8 + status: 200 OK + code: 200 + duration: 100.851378ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c23eb1a2-8675-4bb0-a66d-6b3362c6412c + status: 200 OK + code: 200 + duration: 120.108721ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 29795820-3a02-47a6-873e-c72f51654ac4 + status: 200 OK + code: 200 + duration: 107.663467ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0af47f9a-42ac-4f22-a28e-dcb90c1094b4 + status: 200 OK + code: 200 + duration: 104.85034ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups?name=tf-security-group&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 586 + body: "{\"security_groups\": [{\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f2208526-1d45-42f7-a45e-69a8cbe48143 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 159.814161ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a25bab75-c46a-4c55-b640-4032f106eb51/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 90bef154-de6d-4b7c-a7f4-03b8e4224af4 + status: 200 OK + code: 200 + duration: 95.520118ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7e4a4afc-38fe-4347-a9ca-d2840f2fc822 + status: 200 OK + code: 200 + duration: 109.556928ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a25bab75-c46a-4c55-b640-4032f106eb51/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0dfbe373-872c-488d-9d6d-3209e6e6b0e2 + status: 200 OK + code: 200 + duration: 108.304138ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2edaf956-6bba-43d5-a0e8-b38d464eb3fa + status: 200 OK + code: 200 + duration: 100.422694ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a25bab75-c46a-4c55-b640-4032f106eb51/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 38346a54-7d1e-405b-ab38-e6de15acd1a2 + status: 200 OK + code: 200 + duration: 100.61226ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1296eac2-142b-4421-ae1d-3d1aec52b7c8 + status: 200 OK + code: 200 + duration: 96.557043ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups?name=tf-security-group&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 586 + body: "{\"security_groups\": [{\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0a8b817f-8316-4ec9-a4f6-1c4234ed6d9a + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 125.877412ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a25bab75-c46a-4c55-b640-4032f106eb51/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - faee05aa-3d52-4e65-a8d6-1786c4c830e8 + status: 200 OK + code: 200 + duration: 108.796362ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9c41dc4e-c83c-46e0-bde1-6322bf45570f + status: 200 OK + code: 200 + duration: 131.558941ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a25bab75-c46a-4c55-b640-4032f106eb51/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 02bce523-484d-4980-aa51-1bac74b88265 + status: 200 OK + code: 200 + duration: 106.290902ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6f157fef-9dd7-4e7c-b73f-54bc3ed6ba59 + status: 200 OK + code: 200 + duration: 93.260108ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a25bab75-c46a-4c55-b640-4032f106eb51/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6c5a7766-a62c-4d84-83c4-fdc320bc0447 + status: 200 OK + code: 200 + duration: 95.69156ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 35ad1bfe-18bc-487a-a04e-e6c992e44ba1 + status: 200 OK + code: 200 + duration: 99.965226ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups?name=tf-security-group&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 586 + body: "{\"security_groups\": [{\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 95de42a7-1c99-4d25-bc2e-a2980c304f59 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 154.664532ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a25bab75-c46a-4c55-b640-4032f106eb51/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0cd53e0f-11f3-456a-806a-e4d81f9460d1 + status: 200 OK + code: 200 + duration: 90.452171ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c9d9638f-4baa-4766-b9ad-ee40ca3f39b2 + status: 200 OK + code: 200 + duration: 92.923487ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a25bab75-c46a-4c55-b640-4032f106eb51/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - abee9d51-51ed-4e6f-900b-0a0e9a13a322 + status: 200 OK + code: 200 + duration: 127.41663ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1e5f23b5-fe09-4f10-8616-70ba99e776f5 + status: 200 OK + code: 200 + duration: 125.549297ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0bf67983-78f2-457d-8dfe-ec0a4b2354bb + status: 200 OK + code: 200 + duration: 96.52889ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1268cbf4-e4e1-4076-b915-596124088ebd + status: 200 OK + code: 200 + duration: 89.800539ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups?name=tf-security-group&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 586 + body: "{\"security_groups\": [{\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e43de7ea-d538-495e-b09b-2dac48722226 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 134.242113ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a25bab75-c46a-4c55-b640-4032f106eb51/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dbfcc676-2b17-4c81-b389-7f8d871d5da6 + status: 200 OK + code: 200 + duration: 113.740557ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4eb70c8c-0ce0-4c2c-b4bd-af85727d3abd + status: 200 OK + code: 200 + duration: 100.451568ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a25bab75-c46a-4c55-b640-4032f106eb51/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fad02d3f-f16d-4d2b-9f27-adbd848f8993 + status: 200 OK + code: 200 + duration: 101.266147ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a84d4718-f2f5-4806-8f51-087ab82cf1cc + status: 200 OK + code: 200 + duration: 85.445219ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a25bab75-c46a-4c55-b640-4032f106eb51/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e4be4b9a-85b2-4630-9853-ba600b012a40 + status: 200 OK + code: 200 + duration: 110.047168ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 28a6ac88-174f-4bf8-afa5-bccee9c33f3a + status: 200 OK + code: 200 + duration: 115.925775ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups?name=tf-security-group&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 586 + body: "{\"security_groups\": [{\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 25e2c834-98b4-44db-a0ca-fe6e08205f58 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 142.575145ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a25bab75-c46a-4c55-b640-4032f106eb51/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - afb0dde9-cc6f-41f0-979d-5616fbb47cc9 + status: 200 OK + code: 200 + duration: 90.221078ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: "{\"security_group\": {\"id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\", \"creation_date\": \"2025-10-30T15:42:49.389268+00:00\", \"modification_date\": \"2025-10-30T15:42:49.389268+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - caef7fab-0fcd-4f01-b3b5-0c63774b66d3 + status: 200 OK + code: 200 + duration: 96.602299ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a25bab75-c46a-4c55-b640-4032f106eb51/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cd75ee94-4c03-4369-a97d-d397e7ae296c + status: 200 OK + code: 200 + duration: 114.802077ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 10cd867f-f300-4bf1-bba8-2397554b85b6 + status: 204 No Content + code: 204 + duration: 166.731969ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 151 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_security_group\", \"resource_id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\"}" + headers: + Content-Length: + - "151" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 17ad7b5c-b371-4e04-8447-b2804113726a + status: 404 Not Found + code: 404 + duration: 35.068913ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 151 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_security_group\", \"resource_id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\"}" + headers: + Content-Length: + - "151" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 21b4ca2e-2b74-4b37-a9f6-f26b35606891 + status: 404 Not Found + code: 404 + duration: 36.960141ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a25bab75-c46a-4c55-b640-4032f106eb51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 151 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_security_group\", \"resource_id\": \"a25bab75-c46a-4c55-b640-4032f106eb51\"}" + headers: + Content-Length: + - "151" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b771d48f-55ce-45ba-b18c-4bc2098f2135 + status: 404 Not Found + code: 404 + duration: 28.95779ms 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 b29228456..eeacc204b 100644 --- a/internal/services/instance/testdata/data-source-server-basic.cassette.yaml +++ b/internal/services/instance/testdata/data-source-server-basic.cassette.yaml @@ -1,3213 +1,2602 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a1183b4f-3e28-4e7d-8926-31037831e086 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 33.452328ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5b8517c9-e514-494b-b70b-ce47223e572f - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 39.048471ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4e7a518a-a250-43ae-a998-d093351b4137 - status: 200 OK - code: 200 - duration: 43.130123ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 288 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-server","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","data_scaleway_instance_server","basic"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1818 - uncompressed: false - 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: - - "1818" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 116967c6-4f84-4e1d-9e70-bbdc9ce965a1 - status: 201 Created - code: 201 - duration: 1.759606354s - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1772 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7188f172-c245-4c6d-b314-9d04e7037668 - status: 200 OK - code: 200 - duration: 146.171826ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1772 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ef03a848-904a-48d1-af4e-04e60063366a - status: 200 OK - code: 200 - duration: 179.740482ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1818 - uncompressed: false - 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: - - "1818" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 799f338f-ce11-45d5-9acd-ce3906135d3d - status: 200 OK - code: 200 - duration: 144.100224ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - 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": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 667e7a53-4deb-4632-92dc-82a980a88f10 - status: 404 Not Found - code: 404 - duration: 34.047952ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 59cf7b7d-0f91-41e6-bcd9-b9aab78ccd45 - status: 200 OK - code: 200 - duration: 81.856302ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/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:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5779a72a-7811-4b9a-89fc-7416231a5610 - status: 200 OK - code: 200 - duration: 85.131135ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/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:40 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2a4dd966-1866-4394-a24f-d5d459de25b4 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 87.281486ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1818 - uncompressed: false - 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: - - "1818" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 03c11e3d-fa42-46e0-b94c-49404edcd5f9 - status: 200 OK - code: 200 - duration: 162.42154ms - - 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/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - 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": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6c46c351-d838-4b52-9de5-5d41a34fd4aa - status: 404 Not Found - code: 404 - duration: 23.022657ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cd7253af-fdb0-4899-8b4f-393bed7715d4 - status: 200 OK - code: 200 - duration: 97.713441ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/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:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d1c2711a-f8d6-443a-9eaf-49913dd5ac92 - status: 200 OK - code: 200 - duration: 99.753556ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/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:40 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8fb8f3b6-a4da-4af2-99a2-972e25d8ccab - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 86.228236ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1818 - uncompressed: false - 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: - - "1818" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 24166c18-4c9e-4c54-b39a-55f78496c85f - status: 200 OK - code: 200 - duration: 133.370312ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - 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": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 29e0d8ea-5010-4618-866f-5cd391c28c8f - status: 404 Not Found - code: 404 - duration: 30.47428ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6bbb372d-2f6e-4bc3-a9d0-831acd1f6472 - status: 200 OK - code: 200 - duration: 80.698908ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/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:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5e0f0fca-54f5-4d1a-b7c9-65a431d71833 - status: 200 OK - code: 200 - duration: 130.625179ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/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:41 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c896fb42-fc38-4dd4-8b49-7ef19bf36e52 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 85.617636ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1772 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dad45e9d-2ee1-4963-b00d-7e1f3dfa5f29 - status: 200 OK - code: 200 - duration: 156.077228ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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?name=tf-server&order=creation_date_desc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1821 - uncompressed: false - 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: - - "1821" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9769c622-493f-458d-8f79-b2e723e87839 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 156.116212ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - 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": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 55995ac6-ce0c-4c03-84d7-1f1b8dfb20a1 - status: 404 Not Found - code: 404 - duration: 28.865392ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c710627f-18fb-466b-8b85-782c612f4ef8 - status: 200 OK - code: 200 - duration: 78.717253ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1818 - uncompressed: false - 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: - - "1818" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b2deb5a8-5618-4493-bc98-7a7c691ac408 - status: 200 OK - code: 200 - duration: 135.582608ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - 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": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c5dda746-1b92-4ee0-9754-e88b97b99b77 - status: 404 Not Found - code: 404 - duration: 26.213914ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/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:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0d336f13-917c-44a0-b1a7-9156e70236c3 - status: 200 OK - code: 200 - duration: 101.879792ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 77f66a11-923c-4239-8c03-cb7086b562fb - status: 200 OK - code: 200 - duration: 87.12821ms - - 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/4e68e654-ba4c-484d-99a2-7617b37a967c/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:42 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a1038f86-b7a0-46cc-8782-e35954726dcc - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 101.193268ms - - 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/4e68e654-ba4c-484d-99a2-7617b37a967c/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:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 84230cef-3725-41fa-8076-ca3b37363521 - status: 200 OK - code: 200 - duration: 93.533997ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/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:42 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c71cc3c5-6913-4260-b930-d277b10a8d72 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 87.134242ms - - 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/4e68e654-ba4c-484d-99a2-7617b37a967c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1772 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d1ed3d38-65f8-4af1-8fa4-ca4db352859e - status: 200 OK - code: 200 - duration: 139.634575ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1818 - uncompressed: false - 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: - - "1818" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5b5068f5-cb44-45ce-b7bd-e698b2c81490 - status: 200 OK - code: 200 - duration: 135.084037ms - - 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/4e68e654-ba4c-484d-99a2-7617b37a967c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1818 - uncompressed: false - 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: - - "1818" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f62690b2-a531-4f3c-9ba0-d7f7212ad2a2 - status: 200 OK - code: 200 - duration: 148.380127ms - - 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/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - 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": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4560a6ad-07e8-4a9d-a3f0-204062f3b0eb - status: 404 Not Found - code: 404 - duration: 42.092774ms - - 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: - 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?name=tf-server&order=creation_date_desc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1775 - uncompressed: false - 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: - - "1775" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9531dec4-d7b7-49fa-ac69-e5f01a2a655b - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 251.639388ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6a85ef7c-f56f-41d4-b393-079e765c5b8c - status: 200 OK - code: 200 - duration: 79.311424ms - - 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/4e68e654-ba4c-484d-99a2-7617b37a967c/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:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 58a97e79-be10-4c5c-87db-86b91cfb9382 - status: 200 OK - code: 200 - duration: 89.904511ms - - 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/4e68e654-ba4c-484d-99a2-7617b37a967c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1772 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e3b3b40a-7358-4de1-aff8-d25f46d37a92 - status: 200 OK - code: 200 - duration: 129.597738ms - - 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/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - 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": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2567674f-a39c-4a21-a6fc-3fa52d5ca818 - status: 404 Not Found - code: 404 - duration: 26.618651ms - - 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/4e68e654-ba4c-484d-99a2-7617b37a967c/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:43 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b2087e8e-6c0e-4710-9516-6b99b3afaa01 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 92.591195ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1c0e7819-4558-4072-9be4-8ec72b4bcd22 - status: 200 OK - code: 200 - duration: 101.14525ms - - 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/4e68e654-ba4c-484d-99a2-7617b37a967c/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:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2e9560bd-1cb6-4934-9f88-1fd5bc747253 - status: 200 OK - code: 200 - duration: 97.383114ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/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:43 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3b387235-af24-4ad1-80d2-aeb13088a53e - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 96.913427ms - - 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/4e68e654-ba4c-484d-99a2-7617b37a967c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1818 - uncompressed: false - 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: - - "1818" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 39df5fea-46a5-4fd7-a76a-67a4728c9636 - status: 200 OK - code: 200 - duration: 149.899208ms - - 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/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - 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": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 500868d1-5700-4e41-ad8c-ff9d21f252f8 - status: 404 Not Found - code: 404 - duration: 33.865742ms - - id: 47 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a60d306b-7d2e-4db3-8dfd-1ba3377a0c1f - status: 200 OK - code: 200 - duration: 89.380422ms - - 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/4e68e654-ba4c-484d-99a2-7617b37a967c/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:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1806b20d-c306-4da6-88ea-6fba137bb0c0 - status: 200 OK - code: 200 - duration: 87.321411ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/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:43 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 28090bce-0150-421e-948c-9ed90f76751c - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 111.459664ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1772 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c2b2a4dd-4bd6-49eb-930a-4d5b1f056e29 - status: 200 OK - code: 200 - duration: 187.850409ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - 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": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6b9dcde6-9dbb-4f0e-8fac-17f40a8262bb - status: 404 Not Found - code: 404 - duration: 25.737433ms - - id: 52 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ae3584ac-688a-45b5-8a32-021fa1fea525 - status: 200 OK - code: 200 - duration: 91.721369ms - - 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/4e68e654-ba4c-484d-99a2-7617b37a967c/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:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 471f2cfb-623f-4722-b5aa-9944f54627e5 - status: 200 OK - code: 200 - duration: 95.181448ms - - 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: - 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?name=tf-server&order=creation_date_desc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1775 - uncompressed: false - 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: - - "1775" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8b7f2073-e370-44d7-ae60-abf096901dcd - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 420.046905ms - - 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/4e68e654-ba4c-484d-99a2-7617b37a967c/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:44 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e751c51a-6a71-4317-b18b-7276a1f0e590 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 102.378274ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1772 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2bd9eecd-a5c8-4bb1-9f90-d97ebcc3b736 - status: 200 OK - code: 200 - duration: 141.596785ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - 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": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 406fa0b4-4f4b-4e05-86fa-d209f0f5633d - status: 404 Not Found - code: 404 - duration: 31.430288ms - - id: 58 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d3a1fcdf-75ea-42e2-b7df-a52c36ad9c34 - status: 200 OK - code: 200 - duration: 74.964217ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c/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:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 882f6da6-3fdb-4625-bf9f-919d1bff2193 - status: 200 OK - code: 200 - duration: 93.493722ms - - 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/4e68e654-ba4c-484d-99a2-7617b37a967c/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:44 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5d364304-98f9-4595-88db-4589c4dce49b - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 98.624537ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1818 - uncompressed: false - 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: - - "1818" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 08539bfb-cf72-4e97-ab41-39017d57b9b2 - status: 200 OK - code: 200 - duration: 127.243738ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1772 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 35284c66-ee5b-43cb-b307-8d9d726ac522 - status: 200 OK - code: 200 - duration: 140.10667ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3bd352a3-3039-4d80-9ed8-be42bf94e429 - status: 200 OK - code: 200 - duration: 69.316276ms - - id: 64 - 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/4e68e654-ba4c-484d-99a2-7617b37a967c/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/63afd386-4024-45e2-ac61-ff4e2bcff176 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9a3fd71f-e9a2-4a2f-a5bd-8da7b453fed5 - status: 202 Accepted - code: 202 - duration: 336.632159ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1794 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9c71a2da-af81-4658-9324-2e4ff6ede54e - status: 200 OK - code: 200 - duration: 360.964345ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2013 - uncompressed: false - 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: - - "2013" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1e0292bf-09a6-4500-aacb-9a097e6fdf24 - status: 200 OK - code: 200 - duration: 144.278101ms - - id: 67 - 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/4e68e654-ba4c-484d-99a2-7617b37a967c/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7d7cb8db-395c-471c-b502-cc1fc3765116 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b1e3becb-c111-4554-a28c-f722a8c6e954 - status: 202 Accepted - code: 202 - duration: 276.239853ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1936 - uncompressed: false - 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: - - "1936" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d890487d-5725-4437-8bcf-052e2d00e788 - status: 200 OK - code: 200 - duration: 126.949821ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c - 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": "4e68e654-ba4c-484d-99a2-7617b37a967c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c110ac3d-4006-46e8-aebd-263fa18f8523 - status: 404 Not Found - code: 404 - duration: 40.202611ms - - 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/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - 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": "6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8c22e651-6c55-4f48-aca3-f84a0e3bf493 - status: 404 Not Found - code: 404 - duration: 27.67124ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5db7f451-f460-4ca2-8f3e-f303dd17ec3a - status: 200 OK - code: 200 - duration: 81.41999ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f1da0ac-fcb8-4a8e-a010-6d058eee1ca6 - 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:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 625f180c-0ae5-41bd-9c53-771aed091d36 - status: 204 No Content - code: 204 - duration: 152.472696ms - - 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/4e68e654-ba4c-484d-99a2-7617b37a967c - 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": "4e68e654-ba4c-484d-99a2-7617b37a967c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 16d4fda2-598c-4577-8d52-f23222fe11c6 - status: 404 Not Found - code: 404 - duration: 55.560478ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c - 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": "4e68e654-ba4c-484d-99a2-7617b37a967c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3bbaf491-c00f-439a-841b-014bbdc83b5c - status: 404 Not Found - code: 404 - duration: 105.737039ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4e68e654-ba4c-484d-99a2-7617b37a967c - 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": "4e68e654-ba4c-484d-99a2-7617b37a967c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cc6fd940-b11b-40d6-9eaa-98f03a8bac26 - status: 404 Not Found - code: 404 - duration: 55.328875ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c6880df1-7435-46a0-b830-595643a8b915 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 42.090768ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f9601fd5-5cb4-42d9-9dc5-fbc02fe637e4 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 44.836068ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a3ec566c-6c56-48f3-8fad-9e4da018ec13 + status: 200 OK + code: 200 + duration: 43.639814ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 288 + host: api.scaleway.com + body: "{\"name\":\"tf-server\",\"dynamic_ip_required\":false,\"commercial_type\":\"DEV1-S\",\"image\":\"8ac1fe52-01dc-4dc1-8578-73ec5d126648\",\"volumes\":{\"0\":{\"boot\":false}},\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[\"terraform-test\",\"data_scaleway_instance_server\",\"basic\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1772 + body: "{\"server\": {\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:38.689704+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:39 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f16d600d-6603-4e21-b8a0-ac80d238fc80 + status: 201 Created + code: 201 + duration: 1.413327952s +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1818 + body: "{\"server\": {\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:38.689704+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1818" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d3968a36-b371-4d43-9c8e-f3ff1f3c5b4e + status: 200 OK + code: 200 + duration: 157.636932ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1818 + body: "{\"server\": {\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:38.689704+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1818" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3eb572d8-3ab6-4dde-8c03-18b1694bb893 + status: 200 OK + code: 200 + duration: 139.859373ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1818 + body: "{\"server\": {\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:38.689704+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1818" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aac986a0-bb40-49df-8c8f-81d24c3ae8c1 + status: 200 OK + code: 200 + duration: 126.642027ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 43417628-819d-4c79-98fe-673f72104538 + status: 404 Not Found + code: 404 + duration: 35.499904ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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-30T15:43:38.818619Z\", \"updated_at\":\"2025-10-30T15:43:38.818619Z\", \"references\":[{\"id\":\"b8d88032-f8ea-495c-afab-67a178eaa4ef\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"created_at\":\"2025-10-30T15:43:38.818619Z\", \"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: + - Thu, 30 Oct 2025 15:43:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ba123fd0-963c-4c3e-8425-304ad51ba112 + status: 200 OK + code: 200 + duration: 83.944031ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 07a910d4-f7fe-48be-992f-1a97ea0b1c15 + status: 200 OK + code: 200 + duration: 104.923276ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:40 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cd8b2fe7-5444-44b6-8730-9fe1ca457fa1 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 110.394008ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1818 + body: "{\"server\": {\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:38.689704+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1818" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d13fc036-62a4-4916-a4b0-1a82bcd6e4b1 + status: 200 OK + code: 200 + duration: 149.433383ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c46c129f-1fb6-497c-b0d3-2984eaddfbf0 + status: 404 Not Found + code: 404 + duration: 26.979791ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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-30T15:43:38.818619Z\", \"updated_at\":\"2025-10-30T15:43:38.818619Z\", \"references\":[{\"id\":\"b8d88032-f8ea-495c-afab-67a178eaa4ef\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"created_at\":\"2025-10-30T15:43:38.818619Z\", \"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: + - Thu, 30 Oct 2025 15:43:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6ba5e80a-c4a4-42bd-8ef8-87bc45651150 + status: 200 OK + code: 200 + duration: 92.327959ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8cb23b11-0838-4fc1-ab5a-1225fdedad32 + status: 200 OK + code: 200 + duration: 88.603482ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:40 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5ef4ec78-01c1-4b94-8795-b9a3e5b4c005 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 107.005281ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1772 + body: "{\"server\": {\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:38.689704+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c0ccd856-7780-4eca-a8a7-976f5e877ff6 + status: 200 OK + code: 200 + duration: 133.303134ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a80da999-a03e-4edd-8ca0-a088b3ff536b + status: 404 Not Found + code: 404 + duration: 32.229349ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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-30T15:43:38.818619Z\", \"updated_at\":\"2025-10-30T15:43:38.818619Z\", \"references\":[{\"id\":\"b8d88032-f8ea-495c-afab-67a178eaa4ef\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"created_at\":\"2025-10-30T15:43:38.818619Z\", \"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: + - Thu, 30 Oct 2025 15:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - db9a8681-5307-4ea1-add6-cda7ade1b133 + status: 200 OK + code: 200 + duration: 84.00778ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 77d3067a-48e1-4795-bf10-7f05725f8c9f + status: 200 OK + code: 200 + duration: 86.771976ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:41 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2c78995c-8aac-48f8-ba52-9022b7363aa6 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 99.777935ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1818 + body: "{\"server\": {\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:38.689704+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1818" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9d6f24ad-5d20-4746-a68f-e9f0ef2de552 + status: 200 OK + code: 200 + duration: 140.119722ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fded2e08-0bda-4d26-a242-f2a7bd1d3298 + status: 404 Not Found + code: 404 + duration: 28.778716ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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?name=tf-server&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 5653 + body: "{\"servers\": [{\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:38.689704+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:07.944353+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}, {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:07.483875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}]}" + headers: + Content-Length: + - "5653" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:41 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3549fabb-b61c-4fd5-8e62-08282ca0ce47 + X-Total-Count: + - "3" + status: 200 OK + code: 200 + duration: 235.656309ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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-30T15:43:38.818619Z\", \"updated_at\":\"2025-10-30T15:43:38.818619Z\", \"references\":[{\"id\":\"b8d88032-f8ea-495c-afab-67a178eaa4ef\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"created_at\":\"2025-10-30T15:43:38.818619Z\", \"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: + - Thu, 30 Oct 2025 15:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 266cc0b2-cce2-44dc-91fc-63dbf52aa1ab + status: 200 OK + code: 200 + duration: 101.720909ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5aff42d8-18fc-4ff4-a5da-9fda458a1fe2 + status: 200 OK + code: 200 + duration: 108.807122ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1818 + body: "{\"server\": {\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:38.689704+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1818" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3c347b53-b6cc-4093-915e-444e8ac711f1 + status: 200 OK + code: 200 + duration: 155.010676ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7a31b372-c6b9-421a-abdb-a677fcac5a3d + status: 404 Not Found + code: 404 + duration: 29.124154ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:41 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dfaf011a-b7d7-4e20-bd6a-2ea733109e4c + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 97.292231ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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-30T15:43:38.818619Z\", \"updated_at\":\"2025-10-30T15:43:38.818619Z\", \"references\":[{\"id\":\"b8d88032-f8ea-495c-afab-67a178eaa4ef\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"created_at\":\"2025-10-30T15:43:38.818619Z\", \"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: + - Thu, 30 Oct 2025 15:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 56bfd6ee-1f82-4432-9d1d-d51d69f8dd82 + status: 200 OK + code: 200 + duration: 87.100633ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8acb701a-bd56-4fa4-9a1a-16f394668464 + status: 200 OK + code: 200 + duration: 92.445129ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:41 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e64e4331-33c7-4132-b714-d252252ead86 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 107.052731ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1772 + body: "{\"server\": {\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:38.689704+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 510c7636-f3a1-461c-9443-a8fb6cec5283 + status: 200 OK + code: 200 + duration: 145.76978ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1772 + body: "{\"server\": {\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:38.689704+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6563ad40-d08c-4bee-8528-5d6078bdd31a + status: 200 OK + code: 200 + duration: 135.249897ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1772 + body: "{\"server\": {\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:38.689704+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 694d2052-4e47-4973-b8ea-f0aa99c767fc + status: 200 OK + code: 200 + duration: 164.894948ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bf884376-e725-44bb-a829-8e20452270b2 + status: 404 Not Found + code: 404 + duration: 26.537823ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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?name=tf-server&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 5653 + body: "{\"servers\": [{\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:38.689704+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:07.944353+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}, {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:07.483875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}]}" + headers: + Content-Length: + - "5653" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:42 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cf6cbc40-2dc4-4ade-98ad-3215137b4cc3 + X-Total-Count: + - "3" + status: 200 OK + code: 200 + duration: 200.343897ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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-30T15:43:38.818619Z\", \"updated_at\":\"2025-10-30T15:43:38.818619Z\", \"references\":[{\"id\":\"b8d88032-f8ea-495c-afab-67a178eaa4ef\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"created_at\":\"2025-10-30T15:43:38.818619Z\", \"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: + - Thu, 30 Oct 2025 15:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1b7f7cf1-9779-47e4-a10e-a60b1874ed3b + status: 200 OK + code: 200 + duration: 85.119707ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1772 + body: "{\"server\": {\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:38.689704+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2d8da59e-a367-4991-9c27-f5ff0b6db55f + status: 200 OK + code: 200 + duration: 154.109706ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b80e820c-780c-40a8-8d8f-aa996dd602f7 + status: 200 OK + code: 200 + duration: 88.495489ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 67d4c693-8fe2-4bfa-b12b-b202f321aea5 + status: 404 Not Found + code: 404 + duration: 36.855568ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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-30T15:43:38.818619Z\", \"updated_at\":\"2025-10-30T15:43:38.818619Z\", \"references\":[{\"id\":\"b8d88032-f8ea-495c-afab-67a178eaa4ef\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"created_at\":\"2025-10-30T15:43:38.818619Z\", \"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: + - Thu, 30 Oct 2025 15:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 637c8090-c5d6-4e2a-a88d-d2f2a9a61df0 + status: 200 OK + code: 200 + duration: 71.681287ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:42 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d3414490-d644-4ea4-a3f7-b2ead0b6c57f + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 114.555125ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 43cd4982-cb7b-449e-9707-40e2e00fce29 + status: 200 OK + code: 200 + duration: 103.459962ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:43 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 77e3d66e-c2b6-462a-bc77-a69c57f68fe8 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 115.844985ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1772 + body: "{\"server\": {\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:38.689704+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 92a7a08a-33e3-46f4-8c93-8a4d30537622 + status: 200 OK + code: 200 + duration: 146.235604ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 490d5208-40aa-44ef-be61-7cc4b5142a25 + status: 404 Not Found + code: 404 + duration: 31.563702ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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-30T15:43:38.818619Z\", \"updated_at\":\"2025-10-30T15:43:38.818619Z\", \"references\":[{\"id\":\"b8d88032-f8ea-495c-afab-67a178eaa4ef\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"created_at\":\"2025-10-30T15:43:38.818619Z\", \"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: + - Thu, 30 Oct 2025 15:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e016d5ab-fe82-4c1e-9812-31d1f5b5155a + status: 200 OK + code: 200 + duration: 100.483849ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 52b46126-cc1a-4919-b4c9-5d564d08981c + status: 200 OK + code: 200 + duration: 96.206154ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:43 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bbaeceb7-34a6-4502-ac04-9423f65e56ab + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 113.7847ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1772 + body: "{\"server\": {\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:38.689704+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - afdd17bc-f85d-414b-9e3c-8c7f31849684 + status: 200 OK + code: 200 + duration: 136.010572ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b70f4573-1e3f-4f55-99d6-daa6a6f7e7c2 + status: 404 Not Found + code: 404 + duration: 30.067986ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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?name=tf-server&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 5653 + body: "{\"servers\": [{\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:38.689704+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:07.944353+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}, {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:07.483875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}]}" + headers: + Content-Length: + - "5653" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:43 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e6fd76a5-c313-4827-ae6d-658d1dfb66c6 + X-Total-Count: + - "3" + status: 200 OK + code: 200 + duration: 180.836293ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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-30T15:43:38.818619Z\", \"updated_at\":\"2025-10-30T15:43:38.818619Z\", \"references\":[{\"id\":\"b8d88032-f8ea-495c-afab-67a178eaa4ef\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"created_at\":\"2025-10-30T15:43:38.818619Z\", \"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: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 02364125-754f-4251-a11d-4710fdf260d3 + status: 200 OK + code: 200 + duration: 106.270513ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1818 + body: "{\"server\": {\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:38.689704+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1818" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cc05cdfe-248c-44e4-85b1-0059173a086b + status: 200 OK + code: 200 + duration: 145.352078ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0da5756e-24cb-45c2-bd8a-304e6da9d998 + status: 404 Not Found + code: 404 + duration: 28.734353ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bf58095b-6f06-415f-a6ea-a618774738d7 + status: 200 OK + code: 200 + duration: 121.041373ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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-30T15:43:38.818619Z\", \"updated_at\":\"2025-10-30T15:43:38.818619Z\", \"references\":[{\"id\":\"b8d88032-f8ea-495c-afab-67a178eaa4ef\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"created_at\":\"2025-10-30T15:43:38.818619Z\", \"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: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 13ffa5f5-f4da-4507-88fa-c34cc40cc3ad + status: 200 OK + code: 200 + duration: 119.269099ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6e929d71-0448-45de-b9e9-d66dc777c8dd + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 100.854124ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 137ac74e-f6db-4539-b862-94d38d4ebbbb + status: 200 OK + code: 200 + duration: 78.953039ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 557f6860-d5bb-4c51-8d55-99343869d2e0 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 101.593701ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1772 + body: "{\"server\": {\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:38.689704+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 26ecfd25-dab4-4034-8712-b9f1ea2e9669 + status: 200 OK + code: 200 + duration: 138.417119ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1772 + body: "{\"server\": {\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:38.689704+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cd50d247-c685-4b19-a642-8892b3317c0c + status: 200 OK + code: 200 + duration: 135.456684ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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-30T15:43:38.818619Z\", \"updated_at\":\"2025-10-30T15:43:38.818619Z\", \"references\":[{\"id\":\"b8d88032-f8ea-495c-afab-67a178eaa4ef\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"created_at\":\"2025-10-30T15:43:38.818619Z\", \"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: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 563110fb-471f-4170-b994-5ce1a792a3b2 + status: 200 OK + code: 200 + duration: 80.030019ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"5e2654ac-80a2-49a5-b6f3-8c6ee24a725c\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/action\", \"href_result\": \"/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"started_at\": \"2025-10-30T15:43:45.168494+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:45 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5e2654ac-80a2-49a5-b6f3-8c6ee24a725c + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6986af39-3692-43ab-ac8e-672a7db147d0 + status: 202 Accepted + code: 202 + duration: 259.734149ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1840 + body: "{\"server\": {\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:44.968054+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: + - "1840" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a009a58e-bad3-4aa4-8e97-3264e03c72c3 + status: 200 OK + code: 200 + duration: 154.347562ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1943 + body: "{\"server\": {\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"data_scaleway_instance_server\", \"basic\"], \"state\": \"starting\", \"protected\": false, \"state_detail\": \"provisioning node\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:44.968054+00:00\", \"bootscript\": 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\": \"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: + - "1943" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1cc6e20d-95b6-495c-85f6-270fc3d70409 + status: 200 OK + code: 200 + duration: 134.073782ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1897 + body: "{\"server\": {\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"data_scaleway_instance_server\", \"basic\"], \"state\": \"starting\", \"protected\": false, \"state_detail\": \"provisioning node\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:44.968054+00:00\", \"bootscript\": 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\": \"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: + - "1897" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e22644b9-73af-4ac8-b509-9eeb17047dae + status: 200 OK + code: 200 + duration: 1.425558602s +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1974 + body: "{\"server\": {\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:43:58.737745+00:00\", \"bootscript\": 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\": \"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: + - "1974" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ed7766ae-2c00-456d-87d9-559a357dbd82 + status: 200 OK + code: 200 + duration: 151.5451ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"1675baa0-9445-4c40-a8cb-e08e6773ba5f\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76/action\", \"href_result\": \"/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"started_at\": \"2025-10-30T15:44:02.381752+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:02 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1675baa0-9445-4c40-a8cb-e08e6773ba5f + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8cd569ff-989f-40d3-816e-bd85c2e67166 + status: 202 Accepted + code: 202 + duration: 353.736229ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1937 + body: "{\"server\": {\"id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\", \"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\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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:6d:29\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:38.689704+00:00\", \"modification_date\": \"2025-10-30T15:44:02.093818+00:00\", \"bootscript\": 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\": \"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: + - "1937" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a247ac3b-270e-4835-b3a1-ccabdec1b89b + status: 200 OK + code: 200 + duration: 150.893157ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e410bda6-0481-4cbf-ae7a-bc9e25e66e84 + status: 404 Not Found + code: 404 + duration: 43.410726ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 462366f4-40dd-4c17-ae1a-d7338d3eef70 + status: 404 Not Found + code: 404 + duration: 40.040374ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"8ac7ed7e-3c13-4643-8eec-d1ef03aebc20\", \"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-30T15:43:38.818619Z\", \"updated_at\":\"2025-10-30T15:44:04.555504Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:44:04.555504Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5274d00d-6ae4-4c55-a02b-f1685f00f493 + status: 200 OK + code: 200 + duration: 82.066413ms +- id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8ac7ed7e-3c13-4643-8eec-d1ef03aebc20 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 594e6e03-481a-4548-8e0e-8c89e331b251 + status: 204 No Content + code: 204 + duration: 211.476159ms +- id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a9cd308c-4388-4783-991a-4b9f635c6619 + status: 404 Not Found + code: 404 + duration: 46.98448ms +- id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0da435af-0be5-4492-b40d-26fd331bb86b + status: 404 Not Found + code: 404 + duration: 45.289692ms +- id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/173d8d62-3f9f-440f-97ac-64b8293bcc76 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"173d8d62-3f9f-440f-97ac-64b8293bcc76\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1bfeaf4b-d19e-4ed9-b9de-d1129b45101f + status: 404 Not Found + code: 404 + duration: 46.85634ms 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 1f29e3d72..e94f73fcf 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 @@ -1,2118 +1,1758 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 40037310-8098-4435-a2ed-a4dec930417a - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 71.585761ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f8ac81ac-df72-4923-bfe3-ef55883bc130 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 49.011271ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 61679 - uncompressed: false - 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: - - "61679" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 13f08a2a-7eee-4e30-9140-1497734d048d - status: 200 OK - code: 200 - duration: 26.888606ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - 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": "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: - - "2344" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a8cd757a-8d92-4dba-b35f-64228084d6a7 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 88.183996ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/availability?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 769 - uncompressed: false - 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: - - "769" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d882aac3-ee35-4498-a98a-7296bd396ced - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 73.313301ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 20a7bc6c-392d-4916-974c-222a6b288bb0 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 48.169437ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - be04aed3-04b2-49c0-b4e2-9317a54a0e3a - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 55.568742ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 61679 - uncompressed: false - 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: - - "61679" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 33067bfc-174f-4519-9451-2a8ed67ef2e8 - status: 200 OK - code: 200 - duration: 23.127003ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - 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": "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: - - "2344" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 496aada1-ca3b-477a-ba30-794cad5019d3 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 77.111644ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/availability?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 769 - uncompressed: false - 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: - - "769" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 63629c58-04e4-46b6-9d64-99262bf95224 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 77.433154ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 812e5dfa-9a00-4a81-86aa-32c4d5481f3b - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 47.457426ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e6bda547-8fd0-47d8-b9d6-db7ae532640f - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 50.47593ms - - 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: - 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-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 61679 - uncompressed: false - 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: - - "61679" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6d28c45c-5f20-4c16-890d-580c9cf4e2d1 - status: 200 OK - code: 200 - duration: 25.778742ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - 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": "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: - - "2344" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 33d6e0c6-521b-453a-a057-e49f129a7151 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 72.121012ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/availability?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 769 - uncompressed: false - 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: - - "769" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d6ef8773-55ca-4516-a98a-9171ec32c74d - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 113.405636ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1d7b3c6d-1c5c-4c32-8b2c-941e399e9833 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 36.016273ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ffb90c89-b590-40ba-a7c5-0268d45e6205 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 54.741275ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 61679 - uncompressed: false - 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: - - "61679" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 29825832-4293-43a4-a865-502ca15e9d90 - status: 200 OK - code: 200 - duration: 29.450497ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - 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": "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: - - "2344" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 80b329a0-03af-4f6f-b9dc-1125193cac00 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 95.941622ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/availability?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 769 - uncompressed: false - 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: - - "769" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a8c7c7ce-8e5e-4391-aa7d-1f097c3645e4 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 63.474906ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0382f320-330b-406f-910e-2af4b2fc6a26 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 43.724937ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 821825cd-0352-469c-bdb4-084cd9dffab1 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 46.129854ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 61679 - uncompressed: false - 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: - - "61679" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cde2b753-0f21-4409-8ca5-c04e4ffe58c2 - status: 200 OK - code: 200 - duration: 22.829958ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - 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": "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: - - "2344" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 001e94c8-4d46-4b8b-8c44-4230165aae49 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 91.233049ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/availability?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 769 - uncompressed: false - 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: - - "769" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 943f43fa-e6a9-49f3-838b-31cb6d86e60a - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 89.622637ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 91b21215-d26a-467b-84a4-a0643c1b4074 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 49.38447ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c00923dc-9cc4-4193-9295-5fa3834d7f2c - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 44.829683ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 61679 - uncompressed: false - 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: - - "61679" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8bca8324-b46a-44c3-8e21-2db984f1793f - status: 200 OK - code: 200 - duration: 22.231148ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - 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": "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: - - "2344" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b3b80111-bfac-476d-888c-fe3eec67721f - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 113.466691ms - - 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: - 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/availability?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 769 - uncompressed: false - 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: - - "769" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4aba85d1-c7f3-479a-8905-b9f3968436de - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 78.575461ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - daee709f-9a72-45f0-988c-fb973185d593 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 42.233048ms - - 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: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b47e9099-fe82-4aef-aaa0-5eb8f0ba62de - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 32.470172ms - - 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: - 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-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 61679 - uncompressed: false - 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: - - "61679" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e1611e04-cead-4df7-94a2-200919646608 - status: 200 OK - code: 200 - duration: 26.764133ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - 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": "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: - - "2344" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 93dcb798-e51b-4ef6-b917-3023c78c4285 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 101.187812ms - - 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: - 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/availability?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 769 - uncompressed: false - 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: - - "769" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ba570a9b-0de0-453c-b309-36e149325b1b - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 83.43108ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b7e8cb92-54c1-434b-85ca-66153eb31e0c - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 54.463305ms - - 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: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 61a82ef3-c8cb-4d3a-b153-272c01cb27b5 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 38.353293ms - - 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: - 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-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 61679 - uncompressed: false - 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: - - "61679" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d5025318-be9a-45b5-8c91-4681ad1ae8d7 - status: 200 OK - code: 200 - duration: 28.84814ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - 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": "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: - - "2344" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4b4a15f0-e497-493a-ae05-196812d11b86 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 92.760655ms - - 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: - 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/availability?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 769 - uncompressed: false - 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: - - "769" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b40eeeff-49bb-4206-8c00-770e38165695 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 72.050811ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cf0edfba-cfc5-4393-835b-3feddf8117a1 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 42.591628ms - - 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: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 15fd2dd2-7d93-4fe7-af81-eb27ed500acb - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 36.869419ms - - 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: - 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-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 61679 - uncompressed: false - 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: - - "61679" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 86afbf2c-170a-4b3c-9b9e-857f8760d45c - status: 200 OK - code: 200 - duration: 27.603333ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - 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": "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: - - "2344" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7ba4cece-42fa-4677-ae5c-64c46517d677 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 67.977114ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/availability?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 769 - uncompressed: false - 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: - - "769" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4f61c674-6e6f-4a3e-9407-4a6549914390 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 102.528659ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 711f376a-0180-4c12-b8b4-43b5652a8379 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 59.762906ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eb55baa6-b6be-42db-9a15-3d128f05b3bb + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 78.664629ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 61673 + 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.00072176935, \"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.0007688735, \"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.0011458828, \"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.001240091, \"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.010476377, \"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.0019941095, \"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.002182526, \"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.003690563, \"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.0040673963, \"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.00708347, \"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.007837136, \"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.013869284, \"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.0006970822, \"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.0010965083, \"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.0018953608, \"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.0034930655, \"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.006688475, \"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.0011995853, \"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.0021676605, \"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.0041038105, \"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.007976111, \"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.015466397, \"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.00069848675, \"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.0010853781, \"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.001859161, \"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.0034067265, \"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.0065018577, \"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.00027788844, \"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.0003639541, \"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.00051359314, \"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.000790379, \"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.0010446726, \"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.0003949585, \"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.000492261, \"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.00068686606, \"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.0010394737, \"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.0017812913, \"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.0032649266, \"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.0062321974, \"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.0121667385, \"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.01810128, \"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.02403582, \"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.0005165753, \"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.00073549454, \"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.0011733331, \"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.0020490102, \"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.0038003647, \"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.005551719, \"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.007303073, \"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.00073549454, \"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.0005165753, \"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.00073549454, \"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: + - "61673" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4922df59-ddcb-46d9-881c-1355232a9a3e + status: 200 OK + code: 200 + duration: 40.925513ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2344 + 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: + - "2344" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9ed18b30-e5af-4f4d-b923-3bc23cafc770 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 99.616669ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/availability?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 769 + 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: + - "769" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c9e29c91-ce36-492a-892b-d0edfdb1695f + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 92.595469ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 98cea9b4-309b-458c-bd99-053d9afac95b + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 71.040689ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4ef670fa-c2fa-411b-a26c-aac8d9cbf0d3 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 40.937335ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 61673 + 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.00072176935, \"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.0007688735, \"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.0011458828, \"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.001240091, \"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.010476377, \"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.0019941095, \"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.002182526, \"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.003690563, \"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.0040673963, \"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.00708347, \"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.007837136, \"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.013869284, \"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.0006970822, \"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.0010965083, \"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.0018953608, \"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.0034930655, \"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.006688475, \"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.0011995853, \"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.0021676605, \"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.0041038105, \"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.007976111, \"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.015466397, \"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.00069848675, \"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.0010853781, \"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.001859161, \"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.0034067265, \"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.0065018577, \"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.00027788844, \"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.0003639541, \"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.00051359314, \"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.000790379, \"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.0010446726, \"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.0003949585, \"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.000492261, \"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.00068686606, \"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.0010394737, \"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.0017812913, \"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.0032649266, \"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.0062321974, \"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.0121667385, \"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.01810128, \"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.02403582, \"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.0005165753, \"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.00073549454, \"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.0011733331, \"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.0020490102, \"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.0038003647, \"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.005551719, \"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.007303073, \"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.00073549454, \"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.0005165753, \"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.00073549454, \"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: + - "61673" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ee299474-236a-48dc-a4e6-b9de57ebd73f + status: 200 OK + code: 200 + duration: 18.053232ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2344 + 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: + - "2344" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c53fc171-b909-4466-8f71-4f478b39a092 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 87.672966ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/availability?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 769 + 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: + - "769" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 93513472-6448-4f4c-8bff-e70c4ea3fa79 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 97.210204ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e8f3e241-cd4f-4fce-8cc0-145453e7f731 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 36.876969ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 26c9ee94-854c-442c-a764-067724140990 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 46.104487ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 61673 + 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.00072176935, \"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.0007688735, \"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.0011458828, \"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.001240091, \"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.010476377, \"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.0019941095, \"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.002182526, \"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.003690563, \"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.0040673963, \"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.00708347, \"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.007837136, \"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.013869284, \"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.0006970822, \"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.0010965083, \"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.0018953608, \"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.0034930655, \"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.006688475, \"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.0011995853, \"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.0021676605, \"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.0041038105, \"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.007976111, \"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.015466397, \"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.00069848675, \"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.0010853781, \"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.001859161, \"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.0034067265, \"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.0065018577, \"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.00027788844, \"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.0003639541, \"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.00051359314, \"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.000790379, \"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.0010446726, \"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.0003949585, \"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.000492261, \"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.00068686606, \"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.0010394737, \"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.0017812913, \"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.0032649266, \"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.0062321974, \"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.0121667385, \"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.01810128, \"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.02403582, \"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.0005165753, \"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.00073549454, \"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.0011733331, \"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.0020490102, \"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.0038003647, \"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.005551719, \"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.007303073, \"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.00073549454, \"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.0005165753, \"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.00073549454, \"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: + - "61673" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - efd1951b-02eb-4f23-8e75-5bd93130a67a + status: 200 OK + code: 200 + duration: 24.488162ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2344 + 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: + - "2344" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 53748c0d-2826-4032-a8d0-d937e11a5488 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 93.909925ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/availability?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 769 + 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: + - "769" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e9bcd800-7ed5-47c9-bd61-ce0a7502bfc0 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 94.150336ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 52e8444d-1ecc-4869-935d-9d81db21ca2e + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 50.299105ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f0a48ac1-b2f5-41ac-88ce-e4d267fc39ad + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 90.393489ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 61673 + 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.00072176935, \"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.0007688735, \"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.0011458828, \"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.001240091, \"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.010476377, \"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.0019941095, \"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.002182526, \"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.003690563, \"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.0040673963, \"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.00708347, \"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.007837136, \"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.013869284, \"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.0006970822, \"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.0010965083, \"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.0018953608, \"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.0034930655, \"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.006688475, \"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.0011995853, \"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.0021676605, \"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.0041038105, \"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.007976111, \"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.015466397, \"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.00069848675, \"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.0010853781, \"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.001859161, \"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.0034067265, \"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.0065018577, \"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.00027788844, \"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.0003639541, \"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.00051359314, \"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.000790379, \"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.0010446726, \"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.0003949585, \"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.000492261, \"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.00068686606, \"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.0010394737, \"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.0017812913, \"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.0032649266, \"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.0062321974, \"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.0121667385, \"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.01810128, \"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.02403582, \"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.0005165753, \"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.00073549454, \"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.0011733331, \"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.0020490102, \"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.0038003647, \"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.005551719, \"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.007303073, \"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.00073549454, \"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.0005165753, \"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.00073549454, \"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: + - "61673" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c7da8ba7-0577-4776-aa13-aee90d4b3433 + status: 200 OK + code: 200 + duration: 23.240782ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2344 + 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: + - "2344" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1ab6ccf6-4b96-4cda-95b7-5913c53faeca + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 106.480493ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/availability?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 769 + 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: + - "769" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9a9bd3d1-c578-4bf6-a4f2-20177c005715 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 78.675911ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6b509adc-2947-4b2c-bf73-4cc17feb6c87 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 35.006722ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ff320188-fac0-4af5-899b-5bbd3ede42c9 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 47.770131ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 61673 + 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.00072176935, \"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.0007688735, \"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.0011458828, \"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.001240091, \"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.010476377, \"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.0019941095, \"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.002182526, \"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.003690563, \"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.0040673963, \"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.00708347, \"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.007837136, \"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.013869284, \"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.0006970822, \"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.0010965083, \"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.0018953608, \"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.0034930655, \"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.006688475, \"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.0011995853, \"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.0021676605, \"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.0041038105, \"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.007976111, \"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.015466397, \"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.00069848675, \"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.0010853781, \"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.001859161, \"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.0034067265, \"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.0065018577, \"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.00027788844, \"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.0003639541, \"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.00051359314, \"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.000790379, \"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.0010446726, \"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.0003949585, \"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.000492261, \"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.00068686606, \"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.0010394737, \"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.0017812913, \"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.0032649266, \"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.0062321974, \"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.0121667385, \"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.01810128, \"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.02403582, \"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.0005165753, \"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.00073549454, \"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.0011733331, \"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.0020490102, \"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.0038003647, \"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.005551719, \"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.007303073, \"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.00073549454, \"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.0005165753, \"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.00073549454, \"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: + - "61673" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c3de2bab-b653-4547-a453-d12ed2a0c234 + status: 200 OK + code: 200 + duration: 21.781244ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2344 + 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: + - "2344" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7571309a-9017-4c83-ba8d-49dbfda17587 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 79.971331ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/availability?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 769 + 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: + - "769" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e62430d2-3eeb-47ac-beb4-4ec6b61321ea + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 92.819149ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f65a13f3-ffd7-489f-a9c4-acc588616479 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 47.587409ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 93d7aa8c-17d8-44f8-a38d-0aad20c388ea + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 58.599994ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 61673 + 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.00072176935, \"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.0007688735, \"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.0011458828, \"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.001240091, \"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.010476377, \"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.0019941095, \"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.002182526, \"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.003690563, \"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.0040673963, \"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.00708347, \"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.007837136, \"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.013869284, \"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.0006970822, \"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.0010965083, \"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.0018953608, \"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.0034930655, \"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.006688475, \"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.0011995853, \"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.0021676605, \"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.0041038105, \"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.007976111, \"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.015466397, \"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.00069848675, \"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.0010853781, \"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.001859161, \"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.0034067265, \"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.0065018577, \"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.00027788844, \"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.0003639541, \"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.00051359314, \"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.000790379, \"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.0010446726, \"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.0003949585, \"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.000492261, \"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.00068686606, \"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.0010394737, \"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.0017812913, \"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.0032649266, \"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.0062321974, \"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.0121667385, \"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.01810128, \"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.02403582, \"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.0005165753, \"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.00073549454, \"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.0011733331, \"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.0020490102, \"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.0038003647, \"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.005551719, \"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.007303073, \"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.00073549454, \"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.0005165753, \"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.00073549454, \"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: + - "61673" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bfba97a9-f67a-4a0f-a7be-11efa2bfb8d4 + status: 200 OK + code: 200 + duration: 29.29586ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2344 + 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: + - "2344" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - add7d23e-c3d8-43d5-b6f8-7c489fc02b00 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 124.013139ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/availability?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 769 + 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: + - "769" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 03140310-4c6b-441e-ac18-c739dfe7dfc6 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 90.523132ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f0e12a76-5596-47bd-b1af-6f66330c75dd + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 48.510019ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 02d41c9d-31da-47f5-b69b-74abd62c593d + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 49.637885ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 61673 + 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.00072176935, \"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.0007688735, \"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.0011458828, \"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.001240091, \"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.010476377, \"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.0019941095, \"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.002182526, \"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.003690563, \"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.0040673963, \"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.00708347, \"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.007837136, \"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.013869284, \"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.0006970822, \"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.0010965083, \"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.0018953608, \"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.0034930655, \"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.006688475, \"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.0011995853, \"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.0021676605, \"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.0041038105, \"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.007976111, \"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.015466397, \"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.00069848675, \"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.0010853781, \"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.001859161, \"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.0034067265, \"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.0065018577, \"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.00027788844, \"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.0003639541, \"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.00051359314, \"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.000790379, \"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.0010446726, \"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.0003949585, \"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.000492261, \"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.00068686606, \"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.0010394737, \"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.0017812913, \"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.0032649266, \"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.0062321974, \"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.0121667385, \"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.01810128, \"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.02403582, \"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.0005165753, \"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.00073549454, \"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.0011733331, \"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.0020490102, \"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.0038003647, \"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.005551719, \"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.007303073, \"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.00073549454, \"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.0005165753, \"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.00073549454, \"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: + - "61673" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 376cf37e-0b4e-48ab-9f3e-3b5d06ca827a + status: 200 OK + code: 200 + duration: 23.528021ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2344 + 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: + - "2344" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d149bce2-f18f-440a-be9f-7f04037ae69e + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 99.740812ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/availability?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 769 + 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: + - "769" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ee57fe1a-04fa-4a49-8f2d-cc439890adbf + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 84.26784ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cf98d966-4eab-4d1e-bd32-6efef2694a26 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 33.716491ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 497fac85-2800-4b05-b042-0580330f7220 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 37.284433ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 61673 + 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.00072176935, \"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.0007688735, \"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.0011458828, \"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.001240091, \"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.010476377, \"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.0019941095, \"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.002182526, \"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.003690563, \"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.0040673963, \"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.00708347, \"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.007837136, \"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.013869284, \"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.0006970822, \"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.0010965083, \"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.0018953608, \"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.0034930655, \"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.006688475, \"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.0011995853, \"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.0021676605, \"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.0041038105, \"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.007976111, \"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.015466397, \"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.00069848675, \"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.0010853781, \"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.001859161, \"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.0034067265, \"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.0065018577, \"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.00027788844, \"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.0003639541, \"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.00051359314, \"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.000790379, \"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.0010446726, \"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.0003949585, \"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.000492261, \"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.00068686606, \"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.0010394737, \"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.0017812913, \"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.0032649266, \"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.0062321974, \"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.0121667385, \"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.01810128, \"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.02403582, \"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.0005165753, \"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.00073549454, \"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.0011733331, \"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.0020490102, \"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.0038003647, \"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.005551719, \"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.007303073, \"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.00073549454, \"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.0005165753, \"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.00073549454, \"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: + - "61673" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f2015ec0-26b9-4ea4-926a-6fc58ac989e3 + status: 200 OK + code: 200 + duration: 23.139763ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2344 + 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: + - "2344" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 64cc610e-60eb-49de-8cd4-cde55fb93674 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 72.055614ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/availability?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 769 + 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: + - "769" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aaa6efb1-0be6-4541-a0f4-24b182a2a193 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 86.091871ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 477487b3-342e-4282-ab49-48644c4e3c04 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 45.618857ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e30de347-91f4-40a6-8a19-d5fe6e7a626c + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 34.172187ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 61673 + 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.00072176935, \"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.0007688735, \"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.0011458828, \"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.001240091, \"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.010476377, \"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.0019941095, \"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.002182526, \"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.003690563, \"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.0040673963, \"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.00708347, \"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.007837136, \"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.013869284, \"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.0006970822, \"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.0010965083, \"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.0018953608, \"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.0034930655, \"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.006688475, \"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.0011995853, \"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.0021676605, \"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.0041038105, \"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.007976111, \"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.015466397, \"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.00069848675, \"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.0010853781, \"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.001859161, \"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.0034067265, \"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.0065018577, \"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.00027788844, \"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.0003639541, \"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.00051359314, \"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.000790379, \"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.0010446726, \"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.0003949585, \"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.000492261, \"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.00068686606, \"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.0010394737, \"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.0017812913, \"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.0032649266, \"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.0062321974, \"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.0121667385, \"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.01810128, \"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.02403582, \"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.0005165753, \"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.00073549454, \"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.0011733331, \"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.0020490102, \"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.0038003647, \"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.005551719, \"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.007303073, \"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.00073549454, \"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.0005165753, \"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.00073549454, \"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: + - "61673" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4aea8348-d8a5-4e01-a6d1-be98144474c1 + status: 200 OK + code: 200 + duration: 27.378654ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2344 + 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: + - "2344" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 034aa983-6461-4d2b-8e87-3126996da1c2 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 76.416934ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/availability?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 769 + 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: + - "769" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - deaa11f0-0814-440b-ad78-273aa6939a22 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 77.034743ms 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 bc7ce29a0..e76773ab5 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 @@ -1,5361 +1,4449 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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=fr-par-2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 71103 - uncompressed: false - 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: - - "71103" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5f347ec0-a18b-412d-b3b0-0807390ca22f - status: 200 OK - code: 200 - duration: 114.501079ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=fr-par-3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 36952 - uncompressed: false - 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: - - "36952" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3597ee6c-4e2c-44ef-81de-9a578fb9478a - status: 200 OK - code: 200 - duration: 27.772869ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=nl-ams-3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 33493 - uncompressed: false - 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: - - "33493" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8dce4918-c23c-4954-9f0b-1f4b1792aba1 - status: 200 OK - code: 200 - duration: 37.099838ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=pl-waw-2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 54571 - uncompressed: false - 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: - - "54571" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ae4af591-eae3-4b71-a4d3-b596e64c7c3b - status: 200 OK - code: 200 - duration: 32.614541ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 61679 - uncompressed: false - 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: - - "61679" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3c15936a-7239-45b4-af2e-b881fc397c4b - status: 200 OK - code: 200 - duration: 27.038265ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 51183 - uncompressed: false - 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: - - "51183" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 910cef6f-e939-4cac-bed8-77cee80571e0 - status: 200 OK - code: 200 - duration: 40.981255ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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-2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 43383 - uncompressed: false - 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: - - "43383" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 789f727b-d547-4b1e-98d1-b2e4fbefabb0 - status: 200 OK - code: 200 - duration: 22.488989ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 43368 - uncompressed: false - 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: - - "43368" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 82233eb2-4b2f-4841-93d9-72c2ba1ff061 - status: 200 OK - code: 200 - duration: 29.781104ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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-3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 33495 - uncompressed: false - 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: - - "33495" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0419f4bb-8347-4a57-883e-5595c0f1b66c - status: 200 OK - code: 200 - duration: 22.828354ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 40275 - uncompressed: false - 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: - - "40275" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 58decd2e-9423-4598-bd8b-b9d9d198c0a8 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 39.388288ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14060 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 986c8812-819b-4bfa-a7b8-b35a62ebe3b0 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 79.44186ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=fr-par-2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 71103 - uncompressed: false - 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: - - "71103" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 941a890d-1526-4fb8-96ca-8f80b27ad7e2 - status: 200 OK - code: 200 - duration: 26.622718ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2305 - uncompressed: false - body: '{"servers": {"COPARM1-16C-64G": {"availability": "available"}, "COPARM1-2C-8G": {"availability": "available"}, "COPARM1-32C-128G": {"availability": "available"}, "COPARM1-4C-16G": {"availability": "available"}, "COPARM1-8C-32G": {"availability": "available"}, "DEV1-L": {"availability": "available"}, "DEV1-M": {"availability": "available"}, "DEV1-S": {"availability": "available"}, "DEV1-XL": {"availability": "available"}, "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: - - "2305" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b570dda4-f821-4844-a904-b0ef7194fbf4 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 90.077837ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 848 - 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"}}}' - headers: - Content-Length: - - "848" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 394ea68c-7ca5-47c1-b75c-beda1b21b552 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 90.500407ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 40275 - uncompressed: false - 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: - - "40275" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2af8e09f-bb5f-42e8-ae00-363915700be2 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 46.72719ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14060 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5704219f-34d4-4374-98ee-b831ddd31067 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 46.114674ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=fr-par-2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 71103 - uncompressed: false - 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: - - "71103" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 38f998f6-897d-4842-a35a-9ecfaee5802b - status: 200 OK - code: 200 - duration: 25.658776ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2305 - uncompressed: false - body: '{"servers": {"COPARM1-16C-64G": {"availability": "available"}, "COPARM1-2C-8G": {"availability": "available"}, "COPARM1-32C-128G": {"availability": "available"}, "COPARM1-4C-16G": {"availability": "available"}, "COPARM1-8C-32G": {"availability": "available"}, "DEV1-L": {"availability": "available"}, "DEV1-M": {"availability": "available"}, "DEV1-S": {"availability": "available"}, "DEV1-XL": {"availability": "available"}, "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: - - "2305" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 75098a08-2ed6-4f32-a65b-6d6368b31e6f - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 80.76266ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 848 - 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"}}}' - headers: - Content-Length: - - "848" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1617e1fa-a32c-4a22-bffb-5fea19250124 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 125.539472ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 40275 - uncompressed: false - 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: - - "40275" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ff9674af-3150-4c2c-94fb-5bebe76b1cae - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 55.734692ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14060 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 143ab2ae-6621-44f1-b8c9-5f122f67519f - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 47.057759ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=fr-par-2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 71103 - uncompressed: false - 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: - - "71103" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a47da634-ef92-41c4-8a5c-81435fe75648 - status: 200 OK - code: 200 - duration: 26.194899ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2305 - uncompressed: false - body: '{"servers": {"COPARM1-16C-64G": {"availability": "available"}, "COPARM1-2C-8G": {"availability": "available"}, "COPARM1-32C-128G": {"availability": "available"}, "COPARM1-4C-16G": {"availability": "available"}, "COPARM1-8C-32G": {"availability": "available"}, "DEV1-L": {"availability": "available"}, "DEV1-M": {"availability": "available"}, "DEV1-S": {"availability": "available"}, "DEV1-XL": {"availability": "available"}, "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: - - "2305" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b644e901-5c35-4346-a8d6-a169dbacddef - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 71.368624ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 848 - 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"}}}' - headers: - Content-Length: - - "848" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8904d466-2cd9-4de7-a6e7-fac37cf97308 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 65.25304ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 24905 - uncompressed: false - 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: - - "24905" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3474f7f1-928e-41c9-b4bc-8dd04fe83f8a - X-Total-Count: - - "32" - status: 200 OK - code: 200 - duration: 34.898222ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=fr-par-3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 36952 - uncompressed: false - 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: - - "36952" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d71f4cc5-a048-4716-b473-dc597e80d8c4 - status: 200 OK - code: 200 - duration: 21.103719ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1491 - 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": "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: - - "1491" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ca242141-28fb-4d50-b78c-4724b827d9ae - X-Total-Count: - - "32" - status: 200 OK - code: 200 - duration: 54.61559ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 24905 - uncompressed: false - 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: - - "24905" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a8e33d05-1fe5-4398-b5d4-2bd252a82b5d - X-Total-Count: - - "32" - status: 200 OK - code: 200 - duration: 39.12749ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=fr-par-3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 36952 - uncompressed: false - 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: - - "36952" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4b07a5cd-a597-4877-bcc2-d944d65d9aa1 - status: 200 OK - code: 200 - duration: 24.190872ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1491 - 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": "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: - - "1491" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ff853474-d60c-4bdc-a4e4-b896a2308f40 - X-Total-Count: - - "32" - status: 200 OK - code: 200 - duration: 63.447745ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 24905 - uncompressed: false - 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: - - "24905" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8a9380e9-5d05-4777-bb3e-28dd63c65720 - X-Total-Count: - - "32" - status: 200 OK - code: 200 - duration: 36.416391ms - - 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: - 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=fr-par-3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 36952 - uncompressed: false - 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: - - "36952" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 978ab0db-7522-4caa-bd31-3ebd36dc3e5d - status: 200 OK - code: 200 - duration: 51.82358ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1491 - 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": "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: - - "1491" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b29e5b21-cc2a-4895-acab-445cd28d1e9c - X-Total-Count: - - "32" - status: 200 OK - code: 200 - duration: 55.316581ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 24777 - uncompressed: false - 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: - - "24777" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 616cdab7-b9f1-498b-b09b-a4addb339e61 - X-Total-Count: - - "32" - status: 200 OK - code: 200 - duration: 60.172621ms - - 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: - 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=nl-ams-3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 33493 - uncompressed: false - 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: - - "33493" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8a0d8be3-79ba-4aa7-8854-82b129ed02f2 - status: 200 OK - code: 200 - duration: 29.196261ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1515 - 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"}}}' - headers: - Content-Length: - - "1515" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e8cb8805-825b-4a7c-bb6b-36e51313273a - X-Total-Count: - - "32" - status: 200 OK - code: 200 - duration: 72.533152ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 24777 - uncompressed: false - 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: - - "24777" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 79abf59b-dd47-4de2-95f7-1a439688deab - X-Total-Count: - - "32" - status: 200 OK - code: 200 - duration: 73.501744ms - - 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: - 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=nl-ams-3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 33493 - uncompressed: false - 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: - - "33493" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 96177cfa-409b-449b-b86d-e68060ff6382 - status: 200 OK - code: 200 - duration: 22.939091ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1515 - 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"}}}' - headers: - Content-Length: - - "1515" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 614c71fa-52d1-4b22-8b76-1a2a16b763f2 - X-Total-Count: - - "32" - status: 200 OK - code: 200 - duration: 68.810461ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 24777 - uncompressed: false - 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: - - "24777" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1c3ef901-8abc-4300-961f-63b9e7bde338 - X-Total-Count: - - "32" - status: 200 OK - code: 200 - duration: 52.274422ms - - 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: - 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=nl-ams-3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 33493 - uncompressed: false - 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: - - "33493" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 943b932b-c647-4d68-aa08-c99b5d7e5f4b - status: 200 OK - code: 200 - duration: 25.263938ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1515 - 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"}}}' - headers: - Content-Length: - - "1515" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bbbfbbc6-a564-427d-baba-841b38438a33 - X-Total-Count: - - "32" - status: 200 OK - code: 200 - duration: 91.490188ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39730 - uncompressed: false - 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: - - "39730" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7004ecf5-9507-4f5c-b715-039d254a45e5 - X-Total-Count: - - "52" - status: 200 OK - code: 200 - duration: 98.605062ms - - 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: - 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-2/products/servers?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1575 - uncompressed: false - 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: - - "1575" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b6256a5e-00ce-4b5a-b74f-da7003febd60 - X-Total-Count: - - "52" - status: 200 OK - code: 200 - duration: 95.072627ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=pl-waw-2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 54571 - uncompressed: false - 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: - - "54571" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0f9b6a9f-58d4-4518-9e68-e2dea8c5546f - status: 200 OK - code: 200 - duration: 23.33962ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2272 - 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": "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: - - "2272" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 822a5bd5-8175-45d8-bb11-ee1cd44fbc61 - X-Total-Count: - - "52" - status: 200 OK - code: 200 - duration: 123.52674ms - - 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: - 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-2/products/servers/availability?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 102 - uncompressed: false - body: '{"servers": {"PRO2-XXS": {"availability": "available"}, "STARDUST1-S": {"availability": "available"}}}' - headers: - Content-Length: - - "102" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 30e86b40-4102-4b20-a70e-4666582b0b71 - X-Total-Count: - - "52" - status: 200 OK - code: 200 - duration: 107.960586ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39730 - uncompressed: false - 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: - - "39730" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 041718b4-2b2e-470c-a9d5-dbf30fbc4bd5 - X-Total-Count: - - "52" - status: 200 OK - code: 200 - duration: 78.332295ms - - 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: - 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-2/products/servers?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1575 - uncompressed: false - 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: - - "1575" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9d41395b-1fa0-4f76-8008-3998e7dafbb3 - X-Total-Count: - - "52" - status: 200 OK - code: 200 - duration: 89.795259ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=pl-waw-2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 54571 - uncompressed: false - 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: - - "54571" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b4559c03-3d1b-406e-acd1-37978659253d - status: 200 OK - code: 200 - duration: 23.856697ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2272 - 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": "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: - - "2272" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7340d951-302f-4d0f-9eab-5c3a3b8739ba - X-Total-Count: - - "52" - status: 200 OK - code: 200 - duration: 101.75365ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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-2/products/servers/availability?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 102 - uncompressed: false - body: '{"servers": {"PRO2-XXS": {"availability": "available"}, "STARDUST1-S": {"availability": "available"}}}' - headers: - Content-Length: - - "102" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7ef20047-edd1-4e83-b439-bfd48bd7040b - X-Total-Count: - - "52" - status: 200 OK - code: 200 - duration: 119.588718ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39730 - uncompressed: false - 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: - - "39730" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d7c9896b-4d15-451d-9ceb-60b352c8f6c6 - X-Total-Count: - - "52" - status: 200 OK - code: 200 - duration: 78.474301ms - - 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: - 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-2/products/servers?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1575 - uncompressed: false - 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: - - "1575" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9962be50-e806-43c1-91de-3eef0e4899d5 - X-Total-Count: - - "52" - status: 200 OK - code: 200 - duration: 117.438066ms - - 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: - 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=pl-waw-2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 54571 - uncompressed: false - 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: - - "54571" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 46ce8279-0fa3-418e-970c-a3401cf6b18b - status: 200 OK - code: 200 - duration: 22.690447ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2272 - 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": "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: - - "2272" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1c27153d-f3c1-41eb-9971-471ce648fe1a - X-Total-Count: - - "52" - status: 200 OK - code: 200 - duration: 110.16083ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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-2/products/servers/availability?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 102 - uncompressed: false - body: '{"servers": {"PRO2-XXS": {"availability": "available"}, "STARDUST1-S": {"availability": "available"}}}' - headers: - Content-Length: - - "102" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 39dc5ff9-c2f9-4499-a44b-b5ed899e8f5e - X-Total-Count: - - "52" - status: 200 OK - code: 200 - duration: 107.976374ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9baa7c86-143b-4bb9-9aaf-44f9293cb4e0 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 39.988652ms - - 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: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 121d6d2c-126f-4be7-a90f-223f10e83856 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 52.512468ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 61679 - uncompressed: false - 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: - - "61679" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b0ff8a32-b909-4a1f-b254-a3664210a6e1 - status: 200 OK - code: 200 - duration: 20.33902ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - 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": "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: - - "2344" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4c335be7-58a7-4c97-aa27-4bd404ff55cf - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 87.84245ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/availability?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 769 - uncompressed: false - 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: - - "769" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1c6b2e4b-3d4f-40fe-88af-3f3e454856b1 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 136.852518ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 79bc3abf-a037-46ca-bdf9-932bc22970cb - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 41.064142ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 27cc2e2e-24d2-44ea-ab0a-be9216dc71f9 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 83.161996ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 61679 - uncompressed: false - 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: - - "61679" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5b1e7a50-86dc-4b83-a2d9-de38119ea7e8 - status: 200 OK - code: 200 - duration: 33.838502ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - 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": "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: - - "2344" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e0991bca-f26f-4d68-8ab2-3dfbc1093175 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 97.19192ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/availability?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 769 - uncompressed: false - 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: - - "769" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 72e2f9e2-3b27-4488-ab64-ace16d29fa92 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 97.48047ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9156590a-4afa-42dc-9a46-a0e96dae8209 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 48.797201ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3c3e7ca2-66cd-400c-9150-023ef6bef660 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 47.970195ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 61679 - uncompressed: false - 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: - - "61679" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 21b9b247-52a8-4869-a2a7-f10b63f48356 - status: 200 OK - code: 200 - duration: 25.095423ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - 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": "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: - - "2344" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b1bf411a-3e34-486d-85e5-fd27ac7cbd8f - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 88.931936ms - - 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: - 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/availability?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 769 - uncompressed: false - 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: - - "769" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6ee8d0b8-baeb-40a9-a03a-df09bf4f57ae - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 89.751458ms - - 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: - 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=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39006 - uncompressed: false - 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: - - "39006" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - eb983b2c-29a5-4909-8136-71e3d378ef9c - X-Total-Count: - - "58" - status: 200 OK - code: 200 - duration: 58.084266ms - - 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: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 6405 - uncompressed: false - 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: - - "6405" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c9423c68-5555-4213-ae76-108ae2739760 - X-Total-Count: - - "58" - status: 200 OK - code: 200 - duration: 51.71115ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 51183 - uncompressed: false - 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: - - "51183" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 63fb40be-60e9-42d4-9db6-02f51a3b6b27 - status: 200 OK - code: 200 - duration: 30.758773ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2298 - 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": "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: - - "2298" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6a3b6e5d-02dd-404a-a4ff-edd0c4436b96 - X-Total-Count: - - "58" - status: 200 OK - code: 200 - duration: 90.501621ms - - 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: - 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/availability?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 347 - 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"}}}' - headers: - Content-Length: - - "347" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - de22b7a3-9e21-42b5-ae7e-2e2d9e75ffa7 - X-Total-Count: - - "58" - status: 200 OK - code: 200 - duration: 93.247526ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39006 - uncompressed: false - 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: - - "39006" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bec1e55c-9527-4eba-a7e9-08a9643fa6a7 - X-Total-Count: - - "58" - status: 200 OK - code: 200 - duration: 59.402792ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 6405 - uncompressed: false - 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: - - "6405" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4c43476d-c5a9-4121-a16b-f1fc6a0397f5 - X-Total-Count: - - "58" - status: 200 OK - code: 200 - duration: 72.568299ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 51183 - uncompressed: false - 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: - - "51183" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0897d03e-5f89-4ffe-8912-78c05719bc21 - status: 200 OK - code: 200 - duration: 25.203706ms - - 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: - 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=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2298 - 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": "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: - - "2298" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 704969b4-d929-4242-9907-86b3bd038721 - X-Total-Count: - - "58" - status: 200 OK - code: 200 - duration: 90.449253ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/availability?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 347 - 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"}}}' - headers: - Content-Length: - - "347" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 631bd6d6-9c01-4bcd-a18b-d658dbee85af - X-Total-Count: - - "58" - status: 200 OK - code: 200 - duration: 96.690503ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39006 - uncompressed: false - 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: - - "39006" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0ae10e6c-dfda-45d4-9c0f-0cbc9a35df00 - X-Total-Count: - - "58" - status: 200 OK - code: 200 - duration: 79.265432ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 6405 - uncompressed: false - 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: - - "6405" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 81ce5df4-0bcf-4d06-b51d-6d0cfe95b94d - X-Total-Count: - - "58" - status: 200 OK - code: 200 - duration: 69.902235ms - - 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: - 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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 51183 - uncompressed: false - 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: - - "51183" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 916a79ee-89c8-4b28-8560-1c78f6361db8 - status: 200 OK - code: 200 - duration: 22.090435ms - - 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: - 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=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2298 - 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": "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: - - "2298" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 87237683-1bb3-4885-bb5a-213dc98a376d - X-Total-Count: - - "58" - status: 200 OK - code: 200 - duration: 105.746196ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/availability?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 347 - 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"}}}' - headers: - Content-Length: - - "347" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fe793e0b-a5bd-44a7-bb5e-8ca1af3366d8 - X-Total-Count: - - "58" - status: 200 OK - code: 200 - duration: 89.674254ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 31954 - uncompressed: false - 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: - - "31954" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 92b5d320-676b-40e1-a000-7df31793e23c - X-Total-Count: - - "41" - status: 200 OK - code: 200 - duration: 62.661205ms - - 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: - 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-2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 43383 - uncompressed: false - 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: - - "43383" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8acc3018-9a03-4b6f-b48b-f5384c9e1924 - status: 200 OK - code: 200 - duration: 25.953608ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - 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-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: - - "1882" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - afa92b56-15a3-41f7-932e-ed812381134f - X-Total-Count: - - "41" - status: 200 OK - code: 200 - duration: 68.935497ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 31954 - uncompressed: false - 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: - - "31954" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c35a9d4c-35ee-4cce-8288-b9c42cc83f4f - X-Total-Count: - - "41" - status: 200 OK - code: 200 - duration: 65.941478ms - - 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: - 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-2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 43383 - uncompressed: false - 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: - - "43383" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9dbc98cb-b20a-4285-82e2-43927ad81a00 - status: 200 OK - code: 200 - duration: 26.027326ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - 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-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: - - "1882" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1f3cfd4b-428a-4611-879a-07c8a6952bef - X-Total-Count: - - "41" - status: 200 OK - code: 200 - duration: 73.769105ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 31954 - uncompressed: false - 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: - - "31954" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9ac50c2e-b0d9-45e6-a2f7-0b82b3cf81bf - X-Total-Count: - - "41" - status: 200 OK - code: 200 - duration: 61.395198ms - - 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: - 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-2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 43383 - uncompressed: false - 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: - - "43383" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 952b15e1-cc9b-48f9-80ff-aeac3e3550f8 - status: 200 OK - code: 200 - duration: 20.802597ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - 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-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: - - "1882" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 340a0570-2fdc-4b86-804d-ae7408cca634 - X-Total-Count: - - "41" - status: 200 OK - code: 200 - duration: 84.937047ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 26508 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 69a4ffbb-4a9e-4794-9d3e-c11bcbf09f8b - X-Total-Count: - - "34" - status: 200 OK - code: 200 - duration: 123.334493ms - - 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: - 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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 43368 - uncompressed: false - 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: - - "43368" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 43091a99-839a-4de6-aa5e-92ecd511015e - status: 200 OK - code: 200 - duration: 19.739349ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - 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"}}}' - headers: - Content-Length: - - "1531" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a13b3990-c69a-49a8-92aa-ff5bf492754f - X-Total-Count: - - "34" - status: 200 OK - code: 200 - duration: 91.098628ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 26508 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1c7ecdea-ea62-4427-92ec-eedfdea67cf6 - X-Total-Count: - - "34" - status: 200 OK - code: 200 - duration: 110.776091ms - - 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: - 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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 43368 - uncompressed: false - 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: - - "43368" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 533617ad-5085-44e2-8f62-152a4dd1e4b5 - status: 200 OK - code: 200 - duration: 18.783702ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - 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"}}}' - headers: - Content-Length: - - "1531" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d9ba4367-e558-4803-8bad-e3ae94bfb7d7 - X-Total-Count: - - "34" - status: 200 OK - code: 200 - duration: 87.25437ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 26508 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 359921a9-7bde-46d0-bef3-b4d373b9373f - X-Total-Count: - - "34" - status: 200 OK - code: 200 - duration: 89.299584ms - - 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: - 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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 43368 - uncompressed: false - 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: - - "43368" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 61d36677-0005-4f4b-a889-b0d87d14fff9 - status: 200 OK - code: 200 - duration: 23.156889ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - 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"}}}' - headers: - Content-Length: - - "1531" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 04de6f01-9f4d-4129-b21d-433ee3136f0f - X-Total-Count: - - "34" - status: 200 OK - code: 200 - duration: 100.256361ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 24777 - uncompressed: false - 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: - - "24777" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 368b76db-f610-408c-abf4-926a253404f7 - X-Total-Count: - - "32" - status: 200 OK - code: 200 - duration: 83.711174ms - - 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: - 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-3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 33495 - uncompressed: false - 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: - - "33495" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 14fb5a7e-91da-4d0e-a8e4-be62fa5a5da8 - status: 200 OK - code: 200 - duration: 30.33996ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1515 - 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"}}}' - headers: - Content-Length: - - "1515" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ee0f2ca2-b55d-4bf2-bbd9-60365949e04e - X-Total-Count: - - "32" - status: 200 OK - code: 200 - duration: 106.32591ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 24777 - uncompressed: false - 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: - - "24777" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e855aae8-694f-4d13-903b-b57243e8d588 - X-Total-Count: - - "32" - status: 200 OK - code: 200 - duration: 114.397683ms - - 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: - 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-3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 33495 - uncompressed: false - 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: - - "33495" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 46a68f75-65ea-4722-b010-a59d2d30af1f - status: 200 OK - code: 200 - duration: 25.193567ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1515 - 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"}}}' - headers: - Content-Length: - - "1515" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 117243a7-d6ba-4e5c-91da-1f47e5e5e083 - X-Total-Count: - - "32" - status: 200 OK - code: 200 - duration: 89.452701ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 24777 - uncompressed: false - 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: - - "24777" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:59 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8390fb13-7284-4f7c-9679-b54b69ad9ee8 - X-Total-Count: - - "32" - status: 200 OK - code: 200 - duration: 113.49728ms - - id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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-3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 33495 - uncompressed: false - 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: - - "33495" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 82edcc6d-032f-458d-a005-df95f1679b0c - status: 200 OK - code: 200 - duration: 20.916911ms - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1515 - 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"}}}' - headers: - Content-Length: - - "1515" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:59 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d5be47a4-e2f8-4651-a456-5945d26a4b18 - X-Total-Count: - - "32" - status: 200 OK - code: 200 - duration: 109.28338ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 61673 + 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.00072176935, \"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.0007688735, \"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.0011458828, \"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.001240091, \"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.010476377, \"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.0019941095, \"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.002182526, \"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.003690563, \"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.0040673963, \"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.00708347, \"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.007837136, \"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.013869284, \"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.0006970822, \"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.0010965083, \"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.0018953608, \"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.0034930655, \"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.006688475, \"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.0011995853, \"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.0021676605, \"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.0041038105, \"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.007976111, \"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.015466397, \"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.00069848675, \"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.0010853781, \"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.001859161, \"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.0034067265, \"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.0065018577, \"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.00027788844, \"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.0003639541, \"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.00051359314, \"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.000790379, \"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.0010446726, \"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.0003949585, \"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.000492261, \"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.00068686606, \"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.0010394737, \"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.0017812913, \"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.0032649266, \"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.0062321974, \"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.0121667385, \"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.01810128, \"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.02403582, \"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.0005165753, \"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.00073549454, \"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.0011733331, \"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.0020490102, \"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.0038003647, \"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.005551719, \"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.007303073, \"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.00073549454, \"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.0005165753, \"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.00073549454, \"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: + - "61673" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 069cc025-45a5-4179-b38a-c5981d62d976 + status: 200 OK + code: 200 + duration: 118.285174ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=fr-par-2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 71103 + 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.0012326766, \"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.0012755877, \"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.0016436499, \"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.0017294721, \"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.010685062, \"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.0024655964, \"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.0026372408, \"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.0041094897, \"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.0044527785, \"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.007397276, \"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.008083854, \"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.013972849, \"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.0012093231, \"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.0015969429, \"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.0023721824, \"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.0039226618, \"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.00702362, \"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.0015744945, \"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.0025098864, \"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.0043806704, \"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.008122238, \"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.015359644, \"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.0012374712, \"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.0016147583, \"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.0023693326, \"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.003878481, \"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.006896778, \"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.0006957094, \"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.0008401634, \"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.0011073584, \"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.0013528401, \"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.0009166967, \"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.00101169, \"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.0012016768, \"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.0015459164, \"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.0022701295, \"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.003718556, \"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.006615408, \"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.012409113, \"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.018202819, \"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.023996525, \"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.0010338399, \"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.0012459765, \"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.0016702499, \"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.0025187964, \"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.004215889, \"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.0059129824, \"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.0076100756, \"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.0012459765, \"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.0010338399, \"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.0012459765, \"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: + - "71103" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0949f0af-7553-4fda-9b89-1b391c1b0f61 + status: 200 OK + code: 200 + duration: 28.934892ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=fr-par-3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 36951 + 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.00091093476, \"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.0013343911, \"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.010650432, \"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.002181304, \"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.0038751294, \"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.0072627803, \"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.014038082, \"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.00088631426, \"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.0012851502, \"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.002082822, \"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.0036781654, \"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.0068688523, \"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.0013455908, \"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.0023120318, \"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.004244914, \"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.008110678, \"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.015588319, \"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.0012284159, \"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.0019693533, \"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.0034512281, \"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.006414978, \"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.012342477, \"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.018269977, \"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.024197476, \"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.0007060585, \"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.0009246387, \"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.001361799, \"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.0022361197, \"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.003984761, \"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.005733402, \"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.0074820435, \"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.0009246387, \"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.0007060585, \"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.0009246387, \"m3_water_usage\":3.016819e-8}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":34}" + headers: + Content-Length: + - "36951" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 19db9638-d8b8-431f-82a0-10a7f0931c7a + status: 200 OK + code: 200 + duration: 37.5225ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 51182 + 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.0020151697, \"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.00286535, \"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.02156932, \"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.0045657107, \"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.007966433, \"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.014767875, \"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.02837076, \"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.0019472387, \"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.002729488, \"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.0042939866, \"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.007422984, \"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.013680979, \"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.0029339304, \"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.004961758, \"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.0090174135, \"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.017128725, \"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.03281863, \"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.0019178565, \"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.0026161666, \"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.0040127872, \"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.006806028, \"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.01239251, \"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.00093353033, \"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.0011162898, \"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.0014340528, \"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.002021823, \"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.0025618374, \"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.0013371658, \"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.0015093422, \"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.0018536953, \"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.0024776333, \"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.0037902775, \"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.0064155655, \"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.011666141, \"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.022167295, \"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.03266845, \"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.0431696, \"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.0016038363, \"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.0020426833, \"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.0029203773, \"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.0046757655, \"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.0081865415, \"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.0116973175, \"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.015208093, \"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.0020426833, \"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.0016038363, \"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.0020426833, \"m3_water_usage\":0.0000027819565}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":47}" + headers: + Content-Length: + - "51182" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 338fd779-30d4-4772-a132-b40b0a9a9383 + status: 200 OK + code: 200 + duration: 29.673207ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=nl-ams-3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 33492 + 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.0031964693}, \"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.0039786496}, \"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.02118662}, \"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.005543011}, \"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.008671733}, \"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.014929176}, \"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.027444065}, \"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.00313544}, \"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.003856591}, \"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.0052988934}, \"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.008183498}, \"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.013952707}, \"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.0025745153}, \"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.0027347421}, \"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.0030551956}, \"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.0036358295}, \"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.00485737}, \"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.007300452}, \"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.012186615}, \"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.02195894}, \"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.031731267}, \"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.041503593}, \"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.0028180354}, \"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.0032217822}, \"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.004029276}, \"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.005644263}, \"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.008874237}, \"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.01210421}, \"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.015334185}, \"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.0032217822}, \"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.0028180354}, \"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.0032217822}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":32}" + headers: + Content-Length: + - "33492" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0449f07e-6564-4a7d-b1a6-4a3f40d87de7 + status: 200 OK + code: 200 + duration: 35.416159ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=pl-waw-2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 54567 + 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.003084576}, \"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.004552131}, \"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.03683834}, \"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.0074872407}, \"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.0133574605}, \"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.025097901}, \"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.04857878}, \"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.0029539843}, \"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.0042909477}, \"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.006964874}, \"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.012312727}, \"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.023008434}, \"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.0048211007}, \"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.008384518}, \"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.0155113535}, \"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.029765025}, \"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.05733625}, \"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.0013649499}, \"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.0016878194}, \"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.0022491955}, \"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.0032875848}, \"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.004241611}, \"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.0018976906}, \"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.00217836}, \"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.002739699}, \"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.0037567974}, \"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.0058965734}, \"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.010176126}, \"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.018735232}, \"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.03585344}, \"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.05297165}, \"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.07008986}, \"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.0023745452}, \"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.0031320693}, \"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.0046471176}, \"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.0076772138}, \"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.013737407}, \"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.019797599}, \"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.025857791}, \"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.0031320693}, \"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.0023745452}, \"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.0031320693}, \"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: + - "54567" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 94f51cca-63e8-4be7-8955-88854bd668ef + status: 200 OK + code: 200 + duration: 27.583688ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 43378 + 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.002085632}, \"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.002943368}, \"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.021813558}, \"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.0046588397}, \"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.008089784}, \"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.014951671}, \"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.028675444}, \"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.002016934}, \"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.0028059722}, \"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.0043840483}, \"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.0075402004}, \"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.013852505}, \"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.0030016508}, \"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.0050482713}, \"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.009141512}, \"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.017327994}, \"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.033163305}, \"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.0011602591}, \"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.0014810036}, \"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.0020742887}, \"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.0026193697}, \"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.0014014003}, \"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.0015749045}, \"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.0019219131}, \"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.0025506627}, \"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.0038734295}, \"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.006518963}, \"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.01181003}, \"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.022392163}, \"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.032974295}, \"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.04355643}, \"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.0016706431}, \"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.00211339}, \"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.002998884}, \"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.0047698724}, \"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.008311848}, \"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.011853824}, \"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.015395801}, \"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.00211339}, \"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.0016706431}, \"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.00211339}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":41}" + headers: + Content-Length: + - "43378" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3af1b2b0-9541-4565-bc64-cdd72ccba353 + status: 200 OK + code: 200 + duration: 28.753923ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 43363 + 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.006173454}, \"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.00787977}, \"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.045418724}, \"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.011292403}, \"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.018117668}, \"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.031768195}, \"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.059069254}, \"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.0060186293}, \"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.007570121}, \"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.010673104}, \"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.016879069}, \"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.029290998}, \"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.007631727}, \"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.011789013}, \"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.020103585}, \"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.03673273}, \"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.068898894}, \"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.003632933}, \"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.004288523}, \"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.0055011827}, \"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.0066153225}, \"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.004789766}, \"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.0051123938}, \"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.005757649}, \"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.0069267964}, \"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.009386455}, \"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.014305771}, \"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.024144405}, \"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.04382167}, \"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.06349894}, \"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.0831762}, \"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.005347906}, \"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.006228674}, \"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.00799021}, \"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.011513283}, \"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.018559428}, \"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.025605572}, \"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.032651715}, \"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.006228674}, \"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.005347906}, \"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.006228674}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":41}" + headers: + Content-Length: + - "43363" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 21c1fcb1-15ff-41e7-a5d1-d57553cf0c0d + status: 200 OK + code: 200 + duration: 21.14493ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 33489 + 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.003151157}, \"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.004857473}, \"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.04239643}, \"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.008270105}, \"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.01509537}, \"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.028745899}, \"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.05604696}, \"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.0029963322}, \"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.0045478237}, \"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.007650806}, \"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.013856771}, \"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.026268702}, \"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.0017674686}, \"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.0020900962}, \"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.0027353517}, \"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.003904499}, \"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.0063641574}, \"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.011283474}, \"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.021122107}, \"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.040799376}, \"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.060476642}, \"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.080153905}, \"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.0023256089}, \"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.003206377}, \"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.004967913}, \"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.008490985}, \"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.01553713}, \"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.022583274}, \"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.029629419}, \"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.003206377}, \"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.0023256089}, \"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.003206377}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":32}" + headers: + Content-Length: + - "33489" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 14b1f165-9060-4c13-8d76-135c192283ba + status: 200 OK + code: 200 + duration: 36.259631ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:26 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8b488579-31b7-4040-a0ae-dcb99ba218db + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 46.926559ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 39152a5e-a662-4d4d-8deb-7fa1bedce911 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 43.213634ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 61673 + 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.00072176935, \"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.0007688735, \"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.0011458828, \"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.001240091, \"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.010476377, \"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.0019941095, \"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.002182526, \"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.003690563, \"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.0040673963, \"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.00708347, \"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.007837136, \"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.013869284, \"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.0006970822, \"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.0010965083, \"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.0018953608, \"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.0034930655, \"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.006688475, \"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.0011995853, \"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.0021676605, \"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.0041038105, \"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.007976111, \"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.015466397, \"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.00069848675, \"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.0010853781, \"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.001859161, \"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.0034067265, \"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.0065018577, \"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.00027788844, \"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.0003639541, \"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.00051359314, \"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.000790379, \"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.0010446726, \"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.0003949585, \"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.000492261, \"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.00068686606, \"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.0010394737, \"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.0017812913, \"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.0032649266, \"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.0062321974, \"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.0121667385, \"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.01810128, \"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.02403582, \"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.0005165753, \"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.00073549454, \"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.0011733331, \"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.0020490102, \"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.0038003647, \"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.005551719, \"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.007303073, \"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.00073549454, \"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.0005165753, \"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.00073549454, \"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: + - "61673" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9164b117-5613-42cf-84f2-f6ef5c0e1c25 + status: 200 OK + code: 200 + duration: 25.876862ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2344 + 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: + - "2344" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8cafd558-9268-4700-81c7-c17f86ac40ab + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 122.386562ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/availability?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 769 + 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: + - "769" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cb2c79be-0376-4d37-941c-242d14519cf1 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 105.088633ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 73c55500-5e20-4a3a-ba53-0e4058105f5e + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 37.543006ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 80aac2aa-6f9d-4349-a3e5-255410c4b7f5 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 40.02386ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 61673 + 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.00072176935, \"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.0007688735, \"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.0011458828, \"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.001240091, \"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.010476377, \"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.0019941095, \"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.002182526, \"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.003690563, \"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.0040673963, \"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.00708347, \"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.007837136, \"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.013869284, \"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.0006970822, \"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.0010965083, \"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.0018953608, \"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.0034930655, \"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.006688475, \"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.0011995853, \"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.0021676605, \"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.0041038105, \"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.007976111, \"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.015466397, \"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.00069848675, \"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.0010853781, \"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.001859161, \"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.0034067265, \"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.0065018577, \"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.00027788844, \"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.0003639541, \"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.00051359314, \"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.000790379, \"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.0010446726, \"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.0003949585, \"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.000492261, \"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.00068686606, \"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.0010394737, \"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.0017812913, \"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.0032649266, \"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.0062321974, \"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.0121667385, \"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.01810128, \"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.02403582, \"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.0005165753, \"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.00073549454, \"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.0011733331, \"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.0020490102, \"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.0038003647, \"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.005551719, \"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.007303073, \"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.00073549454, \"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.0005165753, \"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.00073549454, \"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: + - "61673" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ddf8ad63-6483-49ce-9a9c-5a9e3a2bfe30 + status: 200 OK + code: 200 + duration: 27.992651ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2344 + 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: + - "2344" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - de88075e-2dab-4772-bcfa-8c9602990bad + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 100.488324ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/availability?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 769 + 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: + - "769" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dcf40ccb-969b-4cfa-a902-c5b3d1383c9f + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 93.761596ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3c7ab596-8598-4cf9-84c8-1734c46f3fa7 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 37.213879ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 78794c17-cd02-4cc4-a739-b3f68163b90a + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 48.59023ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 61673 + 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.00072176935, \"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.0007688735, \"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.0011458828, \"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.001240091, \"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.010476377, \"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.0019941095, \"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.002182526, \"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.003690563, \"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.0040673963, \"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.00708347, \"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.007837136, \"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.013869284, \"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.0006970822, \"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.0010965083, \"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.0018953608, \"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.0034930655, \"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.006688475, \"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.0011995853, \"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.0021676605, \"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.0041038105, \"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.007976111, \"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.015466397, \"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.00069848675, \"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.0010853781, \"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.001859161, \"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.0034067265, \"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.0065018577, \"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.00027788844, \"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.0003639541, \"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.00051359314, \"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.000790379, \"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.0010446726, \"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.0003949585, \"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.000492261, \"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.00068686606, \"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.0010394737, \"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.0017812913, \"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.0032649266, \"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.0062321974, \"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.0121667385, \"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.01810128, \"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.02403582, \"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.0005165753, \"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.00073549454, \"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.0011733331, \"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.0020490102, \"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.0038003647, \"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.005551719, \"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.007303073, \"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.00073549454, \"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.0005165753, \"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.00073549454, \"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: + - "61673" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 26eb8330-08ae-4e4d-a812-dc3ae6ec1d57 + status: 200 OK + code: 200 + duration: 22.537718ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2344 + 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: + - "2344" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f68b94ca-348b-440f-9d37-a34440a69d4a + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 104.643589ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/availability?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 769 + 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: + - "769" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b9ce6951-4660-4e24-ba24-70b240131496 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 93.109001ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 40275 + 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: + - "40275" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 75ab80b3-5c2c-4e5e-950a-6609b46c9e2e + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 88.785281ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14060 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3790ba44-71cd-4a14-b485-b72478023ed4 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 57.877631ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=fr-par-2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 71103 + 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.0012326766, \"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.0012755877, \"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.0016436499, \"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.0017294721, \"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.010685062, \"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.0024655964, \"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.0026372408, \"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.0041094897, \"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.0044527785, \"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.007397276, \"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.008083854, \"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.013972849, \"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.0012093231, \"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.0015969429, \"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.0023721824, \"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.0039226618, \"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.00702362, \"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.0015744945, \"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.0025098864, \"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.0043806704, \"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.008122238, \"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.015359644, \"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.0012374712, \"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.0016147583, \"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.0023693326, \"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.003878481, \"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.006896778, \"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.0006957094, \"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.0008401634, \"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.0011073584, \"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.0013528401, \"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.0009166967, \"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.00101169, \"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.0012016768, \"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.0015459164, \"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.0022701295, \"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.003718556, \"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.006615408, \"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.012409113, \"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.018202819, \"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.023996525, \"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.0010338399, \"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.0012459765, \"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.0016702499, \"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.0025187964, \"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.004215889, \"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.0059129824, \"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.0076100756, \"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.0012459765, \"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.0010338399, \"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.0012459765, \"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: + - "71103" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f3f979a5-f295-4ecf-903d-52c80096a6e1 + status: 200 OK + code: 200 + duration: 27.412292ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2295 + 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\": \"scarce\"}, \"GP1-XS\": {\"availability\": \"available\"}, \"GPU-3070-S\": {\"availability\": \"shortage\"}, \"H100-1-80G\": {\"availability\": \"available\"}, \"H100-1-M\": {\"availability\": \"available\"}, \"H100-2-80G\": {\"availability\": \"scarce\"}, \"H100-2-M\": {\"availability\": \"scarce\"}, \"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\": \"scarce\"}, \"PLAY2-MICRO\": {\"availability\": \"available\"}, \"PLAY2-NANO\": {\"availability\": \"available\"}, \"PLAY2-PICO\": {\"availability\": \"available\"}, \"POP2-16C-64G\": {\"availability\": \"available\"}, \"POP2-16C-64G-WIN\": {\"availability\": \"available\"}, \"POP2-2C-8G\": {\"availability\": \"available\"}, \"POP2-2C-8G-WIN\": {\"availability\": \"available\"}, \"POP2-32C-128G\": {\"availability\": \"available\"}, \"POP2-32C-128G-WIN\": {\"availability\": \"available\"}, \"POP2-48C-192G\": {\"availability\": \"available\"}, \"POP2-4C-16G\": {\"availability\": \"available\"}, \"POP2-4C-16G-WIN\": {\"availability\": \"available\"}, \"POP2-64C-256G\": {\"availability\": \"available\"}, \"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: + - "2295" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3c3fe3a3-1008-431c-b605-2172bb981753 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 67.166727ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 848 + 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: + - "848" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d5350f2d-294a-4dd6-a62c-641d4bb4499f + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 80.485451ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 40275 + 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: + - "40275" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7167d41c-328b-4570-856c-51ba30ca1c1c + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 61.296455ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14060 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 62f20432-31f8-4826-ae31-2bf63e485dd5 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 43.259379ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=fr-par-2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 71103 + 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.0012326766, \"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.0012755877, \"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.0016436499, \"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.0017294721, \"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.010685062, \"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.0024655964, \"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.0026372408, \"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.0041094897, \"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.0044527785, \"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.007397276, \"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.008083854, \"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.013972849, \"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.0012093231, \"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.0015969429, \"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.0023721824, \"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.0039226618, \"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.00702362, \"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.0015744945, \"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.0025098864, \"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.0043806704, \"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.008122238, \"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.015359644, \"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.0012374712, \"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.0016147583, \"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.0023693326, \"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.003878481, \"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.006896778, \"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.0006957094, \"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.0008401634, \"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.0011073584, \"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.0013528401, \"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.0009166967, \"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.00101169, \"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.0012016768, \"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.0015459164, \"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.0022701295, \"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.003718556, \"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.006615408, \"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.012409113, \"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.018202819, \"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.023996525, \"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.0010338399, \"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.0012459765, \"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.0016702499, \"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.0025187964, \"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.004215889, \"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.0059129824, \"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.0076100756, \"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.0012459765, \"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.0010338399, \"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.0012459765, \"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: + - "71103" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 874d6ef7-8732-4f70-a02a-c3228f1eb2dd + status: 200 OK + code: 200 + duration: 27.725551ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2295 + 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\": \"scarce\"}, \"GP1-XS\": {\"availability\": \"available\"}, \"GPU-3070-S\": {\"availability\": \"shortage\"}, \"H100-1-80G\": {\"availability\": \"available\"}, \"H100-1-M\": {\"availability\": \"available\"}, \"H100-2-80G\": {\"availability\": \"scarce\"}, \"H100-2-M\": {\"availability\": \"scarce\"}, \"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\": \"scarce\"}, \"PLAY2-MICRO\": {\"availability\": \"available\"}, \"PLAY2-NANO\": {\"availability\": \"available\"}, \"PLAY2-PICO\": {\"availability\": \"available\"}, \"POP2-16C-64G\": {\"availability\": \"available\"}, \"POP2-16C-64G-WIN\": {\"availability\": \"available\"}, \"POP2-2C-8G\": {\"availability\": \"available\"}, \"POP2-2C-8G-WIN\": {\"availability\": \"available\"}, \"POP2-32C-128G\": {\"availability\": \"available\"}, \"POP2-32C-128G-WIN\": {\"availability\": \"available\"}, \"POP2-48C-192G\": {\"availability\": \"available\"}, \"POP2-4C-16G\": {\"availability\": \"available\"}, \"POP2-4C-16G-WIN\": {\"availability\": \"available\"}, \"POP2-64C-256G\": {\"availability\": \"available\"}, \"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: + - "2295" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:29 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cc962da6-60ec-44c6-a335-e825715ba6b1 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 63.621365ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 848 + 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: + - "848" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:29 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1d6d63c8-e1a8-4aa2-97f3-a557a89d8049 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 84.305638ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 40275 + 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: + - "40275" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:29 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 91a9181d-0875-45b5-b4cd-32e482396754 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 51.198854ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14060 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:29 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aafc5e6c-fb5d-47a0-8c3c-d811cda773ed + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 65.934716ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=fr-par-2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 71103 + 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.0012326766, \"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.0012755877, \"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.0016436499, \"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.0017294721, \"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.010685062, \"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.0024655964, \"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.0026372408, \"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.0041094897, \"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.0044527785, \"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.007397276, \"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.008083854, \"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.013972849, \"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.0012093231, \"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.0015969429, \"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.0023721824, \"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.0039226618, \"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.00702362, \"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.0015744945, \"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.0025098864, \"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.0043806704, \"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.008122238, \"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.015359644, \"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.0012374712, \"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.0016147583, \"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.0023693326, \"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.003878481, \"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.006896778, \"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.0006957094, \"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.0008401634, \"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.0011073584, \"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.0013528401, \"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.0009166967, \"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.00101169, \"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.0012016768, \"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.0015459164, \"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.0022701295, \"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.003718556, \"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.006615408, \"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.012409113, \"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.018202819, \"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.023996525, \"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.0010338399, \"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.0012459765, \"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.0016702499, \"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.0025187964, \"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.004215889, \"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.0059129824, \"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.0076100756, \"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.0012459765, \"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.0010338399, \"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.0012459765, \"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: + - "71103" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6a65b5f9-fef7-4100-8803-f6bd672e533e + status: 200 OK + code: 200 + duration: 21.44024ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2295 + 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\": \"scarce\"}, \"GP1-XS\": {\"availability\": \"available\"}, \"GPU-3070-S\": {\"availability\": \"shortage\"}, \"H100-1-80G\": {\"availability\": \"available\"}, \"H100-1-M\": {\"availability\": \"available\"}, \"H100-2-80G\": {\"availability\": \"scarce\"}, \"H100-2-M\": {\"availability\": \"scarce\"}, \"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\": \"scarce\"}, \"PLAY2-MICRO\": {\"availability\": \"available\"}, \"PLAY2-NANO\": {\"availability\": \"available\"}, \"PLAY2-PICO\": {\"availability\": \"available\"}, \"POP2-16C-64G\": {\"availability\": \"available\"}, \"POP2-16C-64G-WIN\": {\"availability\": \"available\"}, \"POP2-2C-8G\": {\"availability\": \"available\"}, \"POP2-2C-8G-WIN\": {\"availability\": \"available\"}, \"POP2-32C-128G\": {\"availability\": \"available\"}, \"POP2-32C-128G-WIN\": {\"availability\": \"available\"}, \"POP2-48C-192G\": {\"availability\": \"available\"}, \"POP2-4C-16G\": {\"availability\": \"available\"}, \"POP2-4C-16G-WIN\": {\"availability\": \"available\"}, \"POP2-64C-256G\": {\"availability\": \"available\"}, \"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: + - "2295" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:29 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3144ae11-1cbd-43fe-b6a2-822235037281 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 79.047143ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 848 + 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: + - "848" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:29 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 04376ca8-4cc3-4b4d-b1dd-38a49dcf891b + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 81.01242ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 24905 + 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: + - "24905" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:29 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0b722c8a-a1f3-4d2f-aa28-e23313f9ea8a + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: 36.689876ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=fr-par-3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 36951 + 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.00091093476, \"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.0013343911, \"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.010650432, \"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.002181304, \"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.0038751294, \"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.0072627803, \"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.014038082, \"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.00088631426, \"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.0012851502, \"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.002082822, \"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.0036781654, \"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.0068688523, \"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.0013455908, \"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.0023120318, \"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.004244914, \"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.008110678, \"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.015588319, \"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.0012284159, \"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.0019693533, \"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.0034512281, \"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.006414978, \"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.012342477, \"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.018269977, \"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.024197476, \"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.0007060585, \"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.0009246387, \"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.001361799, \"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.0022361197, \"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.003984761, \"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.005733402, \"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.0074820435, \"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.0009246387, \"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.0007060585, \"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.0009246387, \"m3_water_usage\":3.016819e-8}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":34}" + headers: + Content-Length: + - "36951" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bdc0e1d8-82ab-43db-ab4f-4b44c2d72acd + status: 200 OK + code: 200 + duration: 23.740845ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1497 + 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\": \"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: + - "1497" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:29 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4ce2b274-f822-4f9d-a5c2-8c7cac863f78 + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: 103.776483ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 24905 + 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: + - "24905" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8255a26d-d91e-4d06-a281-0790842f6a85 + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: 38.313632ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=fr-par-3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 36951 + 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.00091093476, \"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.0013343911, \"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.010650432, \"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.002181304, \"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.0038751294, \"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.0072627803, \"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.014038082, \"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.00088631426, \"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.0012851502, \"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.002082822, \"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.0036781654, \"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.0068688523, \"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.0013455908, \"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.0023120318, \"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.004244914, \"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.008110678, \"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.015588319, \"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.0012284159, \"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.0019693533, \"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.0034512281, \"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.006414978, \"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.012342477, \"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.018269977, \"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.024197476, \"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.0007060585, \"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.0009246387, \"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.001361799, \"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.0022361197, \"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.003984761, \"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.005733402, \"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.0074820435, \"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.0009246387, \"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.0007060585, \"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.0009246387, \"m3_water_usage\":3.016819e-8}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":34}" + headers: + Content-Length: + - "36951" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9e3ce848-4e19-4f66-9a6e-5e7f261985ef + status: 200 OK + code: 200 + duration: 26.217892ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1497 + 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\": \"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: + - "1497" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 70143ca4-42bf-4398-9293-7a7226e5ea03 + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: 54.034692ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 24905 + 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: + - "24905" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 37cc039a-33a0-4868-9b80-db4876e35817 + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: 37.10266ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=fr-par-3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 36951 + 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.00091093476, \"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.0013343911, \"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.010650432, \"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.002181304, \"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.0038751294, \"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.0072627803, \"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.014038082, \"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.00088631426, \"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.0012851502, \"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.002082822, \"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.0036781654, \"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.0068688523, \"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.0013455908, \"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.0023120318, \"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.004244914, \"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.008110678, \"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.015588319, \"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.0012284159, \"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.0019693533, \"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.0034512281, \"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.006414978, \"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.012342477, \"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.018269977, \"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.024197476, \"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.0007060585, \"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.0009246387, \"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.001361799, \"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.0022361197, \"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.003984761, \"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.005733402, \"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.0074820435, \"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.0009246387, \"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.0007060585, \"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.0009246387, \"m3_water_usage\":3.016819e-8}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":34}" + headers: + Content-Length: + - "36951" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a6efb3a1-1401-4aef-b918-d3bd7276669a + status: 200 OK + code: 200 + duration: 21.951248ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1497 + 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\": \"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: + - "1497" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7e946826-0267-48b5-8866-0cf8979b1c6e + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: 64.999773ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39006 + 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: + - "39006" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1634051d-e313-443b-bfdb-3ab63bcfe90c + X-Total-Count: + - "58" + status: 200 OK + code: 200 + duration: 93.23599ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 6405 + 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: + - "6405" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b8c423a7-2027-4b61-9cbd-81cee6b32a85 + X-Total-Count: + - "58" + status: 200 OK + code: 200 + duration: 59.537566ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 51182 + 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.0020151697, \"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.00286535, \"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.02156932, \"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.0045657107, \"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.007966433, \"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.014767875, \"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.02837076, \"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.0019472387, \"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.002729488, \"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.0042939866, \"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.007422984, \"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.013680979, \"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.0029339304, \"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.004961758, \"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.0090174135, \"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.017128725, \"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.03281863, \"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.0019178565, \"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.0026161666, \"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.0040127872, \"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.006806028, \"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.01239251, \"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.00093353033, \"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.0011162898, \"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.0014340528, \"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.002021823, \"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.0025618374, \"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.0013371658, \"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.0015093422, \"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.0018536953, \"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.0024776333, \"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.0037902775, \"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.0064155655, \"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.011666141, \"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.022167295, \"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.03266845, \"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.0431696, \"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.0016038363, \"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.0020426833, \"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.0029203773, \"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.0046757655, \"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.0081865415, \"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.0116973175, \"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.015208093, \"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.0020426833, \"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.0016038363, \"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.0020426833, \"m3_water_usage\":0.0000027819565}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":47}" + headers: + Content-Length: + - "51182" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a1b123ad-7fb4-49f7-b466-7c09d7134818 + status: 200 OK + code: 200 + duration: 18.986937ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2298 + 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: + - "2298" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 49cf45c1-ca07-4543-bc08-51f3e45d1d2b + X-Total-Count: + - "58" + status: 200 OK + code: 200 + duration: 98.036456ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/availability?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 347 + 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: + - "347" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ae4b6a31-e59f-490d-baf4-68513ce55db6 + X-Total-Count: + - "58" + status: 200 OK + code: 200 + duration: 93.19831ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39006 + 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: + - "39006" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:31 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6cafaf79-15b0-4589-ab21-eb4e6d907eb9 + X-Total-Count: + - "58" + status: 200 OK + code: 200 + duration: 59.778818ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 6405 + 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: + - "6405" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:31 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 33626bd7-3680-417b-932d-6dc2b2406b16 + X-Total-Count: + - "58" + status: 200 OK + code: 200 + duration: 83.406181ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 51182 + 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.0020151697, \"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.00286535, \"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.02156932, \"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.0045657107, \"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.007966433, \"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.014767875, \"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.02837076, \"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.0019472387, \"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.002729488, \"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.0042939866, \"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.007422984, \"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.013680979, \"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.0029339304, \"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.004961758, \"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.0090174135, \"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.017128725, \"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.03281863, \"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.0019178565, \"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.0026161666, \"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.0040127872, \"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.006806028, \"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.01239251, \"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.00093353033, \"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.0011162898, \"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.0014340528, \"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.002021823, \"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.0025618374, \"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.0013371658, \"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.0015093422, \"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.0018536953, \"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.0024776333, \"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.0037902775, \"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.0064155655, \"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.011666141, \"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.022167295, \"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.03266845, \"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.0431696, \"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.0016038363, \"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.0020426833, \"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.0029203773, \"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.0046757655, \"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.0081865415, \"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.0116973175, \"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.015208093, \"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.0020426833, \"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.0016038363, \"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.0020426833, \"m3_water_usage\":0.0000027819565}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":47}" + headers: + Content-Length: + - "51182" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e6f763f1-b892-489e-809e-518a12e9cb22 + status: 200 OK + code: 200 + duration: 24.341833ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2298 + 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: + - "2298" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:31 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a8f9b893-a4bd-45b0-94c8-57155317ff45 + X-Total-Count: + - "58" + status: 200 OK + code: 200 + duration: 91.235337ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/availability?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 347 + 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: + - "347" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:31 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6068ca2b-b1dd-4d6a-967a-8e65a8317b06 + X-Total-Count: + - "58" + status: 200 OK + code: 200 + duration: 88.614441ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39006 + 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: + - "39006" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:31 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e38acc1a-9394-4dd7-a0ec-3ecf036c62e5 + X-Total-Count: + - "58" + status: 200 OK + code: 200 + duration: 65.399753ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 6405 + 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: + - "6405" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:31 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f8c9a517-4eb8-43b1-91c9-d08f558c3b1d + X-Total-Count: + - "58" + status: 200 OK + code: 200 + duration: 63.817084ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 51182 + 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.0020151697, \"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.00286535, \"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.02156932, \"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.0045657107, \"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.007966433, \"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.014767875, \"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.02837076, \"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.0019472387, \"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.002729488, \"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.0042939866, \"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.007422984, \"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.013680979, \"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.0029339304, \"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.004961758, \"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.0090174135, \"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.017128725, \"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.03281863, \"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.0019178565, \"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.0026161666, \"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.0040127872, \"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.006806028, \"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.01239251, \"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.00093353033, \"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.0011162898, \"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.0014340528, \"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.002021823, \"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.0025618374, \"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.0013371658, \"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.0015093422, \"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.0018536953, \"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.0024776333, \"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.0037902775, \"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.0064155655, \"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.011666141, \"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.022167295, \"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.03266845, \"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.0431696, \"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.0016038363, \"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.0020426833, \"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.0029203773, \"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.0046757655, \"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.0081865415, \"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.0116973175, \"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.015208093, \"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.0020426833, \"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.0016038363, \"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.0020426833, \"m3_water_usage\":0.0000027819565}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":47}" + headers: + Content-Length: + - "51182" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 46b616e6-a143-4400-9efa-d8a06f279cfb + status: 200 OK + code: 200 + duration: 25.989583ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2298 + 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: + - "2298" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:31 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e93d415e-97a2-4479-a76b-92880d7be4a2 + X-Total-Count: + - "58" + status: 200 OK + code: 200 + duration: 88.829244ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/availability?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 347 + 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: + - "347" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:31 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7543af29-e576-402c-9e6d-b05c94d2e3e1 + X-Total-Count: + - "58" + status: 200 OK + code: 200 + duration: 118.367755ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 24777 + 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: + - "24777" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:32 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6d2fea06-78e0-4cb1-95e9-eeee612226c3 + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: 49.452277ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=nl-ams-3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 33492 + 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.0031964693}, \"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.0039786496}, \"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.02118662}, \"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.005543011}, \"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.008671733}, \"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.014929176}, \"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.027444065}, \"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.00313544}, \"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.003856591}, \"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.0052988934}, \"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.008183498}, \"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.013952707}, \"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.0025745153}, \"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.0027347421}, \"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.0030551956}, \"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.0036358295}, \"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.00485737}, \"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.007300452}, \"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.012186615}, \"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.02195894}, \"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.031731267}, \"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.041503593}, \"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.0028180354}, \"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.0032217822}, \"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.004029276}, \"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.005644263}, \"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.008874237}, \"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.01210421}, \"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.015334185}, \"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.0032217822}, \"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.0028180354}, \"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.0032217822}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":32}" + headers: + Content-Length: + - "33492" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a82b36f9-faae-4934-ac60-af6901ccbf95 + status: 200 OK + code: 200 + duration: 29.759606ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1507 + 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\": \"scarce\"}, \"POP2-HM-2C-16G\": {\"availability\": \"available\"}, \"POP2-HM-32C-256G\": {\"availability\": \"scarce\"}, \"POP2-HM-48C-384G\": {\"availability\": \"shortage\"}, \"POP2-HM-4C-32G\": {\"availability\": \"available\"}, \"POP2-HM-64C-512G\": {\"availability\": \"shortage\"}, \"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: + - "1507" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:32 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 19b1e91a-7bb2-4503-a5a1-94bd624ffdf4 + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: 65.271071ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 24777 + 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: + - "24777" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:32 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f0f5714a-19c7-4f7f-a09a-4599fe4a8435 + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: 51.338706ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=nl-ams-3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 33492 + 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.0031964693}, \"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.0039786496}, \"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.02118662}, \"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.005543011}, \"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.008671733}, \"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.014929176}, \"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.027444065}, \"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.00313544}, \"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.003856591}, \"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.0052988934}, \"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.008183498}, \"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.013952707}, \"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.0025745153}, \"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.0027347421}, \"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.0030551956}, \"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.0036358295}, \"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.00485737}, \"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.007300452}, \"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.012186615}, \"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.02195894}, \"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.031731267}, \"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.041503593}, \"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.0028180354}, \"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.0032217822}, \"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.004029276}, \"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.005644263}, \"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.008874237}, \"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.01210421}, \"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.015334185}, \"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.0032217822}, \"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.0028180354}, \"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.0032217822}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":32}" + headers: + Content-Length: + - "33492" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ca5fa3c9-fae5-4bb0-996d-236456f57bc4 + status: 200 OK + code: 200 + duration: 19.473931ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1507 + 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\": \"scarce\"}, \"POP2-HM-2C-16G\": {\"availability\": \"available\"}, \"POP2-HM-32C-256G\": {\"availability\": \"scarce\"}, \"POP2-HM-48C-384G\": {\"availability\": \"shortage\"}, \"POP2-HM-4C-32G\": {\"availability\": \"available\"}, \"POP2-HM-64C-512G\": {\"availability\": \"shortage\"}, \"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: + - "1507" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:32 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 58fa02e0-75f0-40a8-8e57-18480e16e7f9 + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: 51.283722ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 24777 + 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: + - "24777" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:32 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 64d5a6c6-85fa-4fc3-82ec-9e73990636b8 + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: 52.161029ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=nl-ams-3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 33492 + 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.0031964693}, \"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.0039786496}, \"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.02118662}, \"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.005543011}, \"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.008671733}, \"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.014929176}, \"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.027444065}, \"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.00313544}, \"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.003856591}, \"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.0052988934}, \"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.008183498}, \"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.013952707}, \"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.0025745153}, \"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.0027347421}, \"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.0030551956}, \"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.0036358295}, \"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.00485737}, \"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.007300452}, \"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.012186615}, \"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.02195894}, \"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.031731267}, \"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.041503593}, \"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.0028180354}, \"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.0032217822}, \"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.004029276}, \"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.005644263}, \"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.008874237}, \"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.01210421}, \"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.015334185}, \"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.0032217822}, \"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.0028180354}, \"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.0032217822}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":32}" + headers: + Content-Length: + - "33492" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 331f92e5-2f22-4019-9650-bbae4fdba3ea + status: 200 OK + code: 200 + duration: 26.375728ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1507 + 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\": \"scarce\"}, \"POP2-HM-2C-16G\": {\"availability\": \"available\"}, \"POP2-HM-32C-256G\": {\"availability\": \"scarce\"}, \"POP2-HM-48C-384G\": {\"availability\": \"shortage\"}, \"POP2-HM-4C-32G\": {\"availability\": \"available\"}, \"POP2-HM-64C-512G\": {\"availability\": \"shortage\"}, \"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: + - "1507" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:32 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d007bb52-1d99-4bb1-b234-150f437f984c + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: 81.658703ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39730 + 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: + - "39730" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:32 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 49f1ff2f-73b5-42da-812c-d09342ccd919 + X-Total-Count: + - "52" + status: 200 OK + code: 200 + duration: 120.392333ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-2/products/servers?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1575 + 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: + - "1575" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:33 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f43f4de3-d769-4b0c-b8be-dd193cdfebd2 + X-Total-Count: + - "52" + status: 200 OK + code: 200 + duration: 82.517724ms +- id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=pl-waw-2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 54567 + 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.003084576}, \"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.004552131}, \"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.03683834}, \"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.0074872407}, \"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.0133574605}, \"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.025097901}, \"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.04857878}, \"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.0029539843}, \"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.0042909477}, \"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.006964874}, \"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.012312727}, \"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.023008434}, \"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.0048211007}, \"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.008384518}, \"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.0155113535}, \"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.029765025}, \"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.05733625}, \"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.0013649499}, \"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.0016878194}, \"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.0022491955}, \"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.0032875848}, \"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.004241611}, \"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.0018976906}, \"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.00217836}, \"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.002739699}, \"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.0037567974}, \"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.0058965734}, \"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.010176126}, \"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.018735232}, \"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.03585344}, \"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.05297165}, \"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.07008986}, \"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.0023745452}, \"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.0031320693}, \"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.0046471176}, \"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.0076772138}, \"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.013737407}, \"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.019797599}, \"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.025857791}, \"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.0031320693}, \"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.0023745452}, \"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.0031320693}, \"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: + - "54567" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c3be69f2-0b60-4ef7-99f9-c8cb9f10c195 + status: 200 OK + code: 200 + duration: 23.428709ms +- id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2272 + 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\": \"scarce\"}, \"H100-2-80G\": {\"availability\": \"scarce\"}, \"L4-1-24G\": {\"availability\": \"available\"}, \"L4-2-24G\": {\"availability\": \"available\"}, \"L4-4-24G\": {\"availability\": \"available\"}, \"L4-8-24G\": {\"availability\": \"available\"}, \"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: + - "2272" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:33 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 218aa351-7fde-4974-8663-7a69ea4cd851 + X-Total-Count: + - "52" + status: 200 OK + code: 200 + duration: 105.977232ms +- id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-2/products/servers/availability?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 102 + body: "{\"servers\": {\"PRO2-XXS\": {\"availability\": \"available\"}, \"STARDUST1-S\": {\"availability\": \"available\"}}}" + headers: + Content-Length: + - "102" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:33 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1a080f19-2e83-478b-845a-a56e36f9efd2 + X-Total-Count: + - "52" + status: 200 OK + code: 200 + duration: 107.958639ms +- id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39730 + 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: + - "39730" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:33 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 833a80f2-e640-463a-a23f-9ead4a8a4406 + X-Total-Count: + - "52" + status: 200 OK + code: 200 + duration: 85.680548ms +- id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-2/products/servers?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1575 + 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: + - "1575" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:33 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fb521c8a-2f4f-4783-859f-323bca20966a + X-Total-Count: + - "52" + status: 200 OK + code: 200 + duration: 99.233361ms +- id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=pl-waw-2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 54567 + 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.003084576}, \"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.004552131}, \"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.03683834}, \"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.0074872407}, \"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.0133574605}, \"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.025097901}, \"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.04857878}, \"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.0029539843}, \"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.0042909477}, \"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.006964874}, \"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.012312727}, \"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.023008434}, \"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.0048211007}, \"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.008384518}, \"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.0155113535}, \"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.029765025}, \"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.05733625}, \"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.0013649499}, \"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.0016878194}, \"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.0022491955}, \"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.0032875848}, \"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.004241611}, \"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.0018976906}, \"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.00217836}, \"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.002739699}, \"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.0037567974}, \"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.0058965734}, \"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.010176126}, \"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.018735232}, \"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.03585344}, \"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.05297165}, \"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.07008986}, \"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.0023745452}, \"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.0031320693}, \"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.0046471176}, \"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.0076772138}, \"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.013737407}, \"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.019797599}, \"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.025857791}, \"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.0031320693}, \"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.0023745452}, \"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.0031320693}, \"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: + - "54567" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6ed846bf-b8eb-4552-aaac-93ba2d1dd536 + status: 200 OK + code: 200 + duration: 19.908817ms +- id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2272 + 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\": \"scarce\"}, \"H100-2-80G\": {\"availability\": \"scarce\"}, \"L4-1-24G\": {\"availability\": \"available\"}, \"L4-2-24G\": {\"availability\": \"available\"}, \"L4-4-24G\": {\"availability\": \"available\"}, \"L4-8-24G\": {\"availability\": \"available\"}, \"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: + - "2272" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:33 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 95cc3f97-65e0-4466-ba63-cf15206da290 + X-Total-Count: + - "52" + status: 200 OK + code: 200 + duration: 109.341563ms +- id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-2/products/servers/availability?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 102 + body: "{\"servers\": {\"PRO2-XXS\": {\"availability\": \"available\"}, \"STARDUST1-S\": {\"availability\": \"available\"}}}" + headers: + Content-Length: + - "102" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:33 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aeb7c70e-e0f7-4468-9654-da2787dcf54f + X-Total-Count: + - "52" + status: 200 OK + code: 200 + duration: 123.972018ms +- id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39730 + 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: + - "39730" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:34 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f89881c9-e4aa-4685-a6f1-b910e88cc8b8 + X-Total-Count: + - "52" + status: 200 OK + code: 200 + duration: 121.202984ms +- id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-2/products/servers?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1575 + 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: + - "1575" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:34 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 05285357-8c4f-4f4e-9096-5c1b532d12ce + X-Total-Count: + - "52" + status: 200 OK + code: 200 + duration: 83.022712ms +- id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=pl-waw-2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 54567 + 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.003084576}, \"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.004552131}, \"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.03683834}, \"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.0074872407}, \"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.0133574605}, \"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.025097901}, \"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.04857878}, \"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.0029539843}, \"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.0042909477}, \"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.006964874}, \"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.012312727}, \"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.023008434}, \"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.0048211007}, \"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.008384518}, \"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.0155113535}, \"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.029765025}, \"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.05733625}, \"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.0013649499}, \"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.0016878194}, \"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.0022491955}, \"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.0032875848}, \"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.004241611}, \"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.0018976906}, \"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.00217836}, \"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.002739699}, \"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.0037567974}, \"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.0058965734}, \"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.010176126}, \"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.018735232}, \"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.03585344}, \"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.05297165}, \"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.07008986}, \"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.0023745452}, \"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.0031320693}, \"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.0046471176}, \"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.0076772138}, \"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.013737407}, \"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.019797599}, \"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.025857791}, \"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.0031320693}, \"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.0023745452}, \"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.0031320693}, \"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: + - "54567" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4d1ac3d1-86fc-4f80-8f93-d1a392011e8d + status: 200 OK + code: 200 + duration: 21.433827ms +- id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2272 + 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\": \"scarce\"}, \"H100-2-80G\": {\"availability\": \"scarce\"}, \"L4-1-24G\": {\"availability\": \"available\"}, \"L4-2-24G\": {\"availability\": \"available\"}, \"L4-4-24G\": {\"availability\": \"available\"}, \"L4-8-24G\": {\"availability\": \"available\"}, \"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: + - "2272" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:34 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 64aedc3c-cc36-49b1-81da-c49e31230283 + X-Total-Count: + - "52" + status: 200 OK + code: 200 + duration: 151.038332ms +- id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-2/products/servers/availability?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 102 + body: "{\"servers\": {\"PRO2-XXS\": {\"availability\": \"available\"}, \"STARDUST1-S\": {\"availability\": \"available\"}}}" + headers: + Content-Length: + - "102" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:34 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b44ff809-fed6-42e6-9aa4-f5df3f63ed26 + X-Total-Count: + - "52" + status: 200 OK + code: 200 + duration: 109.95826ms +- id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 31954 + 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: + - "31954" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:34 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 71aeebc8-2e41-41d5-a5ca-7b6329e21619 + X-Total-Count: + - "41" + status: 200 OK + code: 200 + duration: 71.819856ms +- id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 43378 + 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.002085632}, \"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.002943368}, \"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.021813558}, \"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.0046588397}, \"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.008089784}, \"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.014951671}, \"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.028675444}, \"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.002016934}, \"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.0028059722}, \"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.0043840483}, \"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.0075402004}, \"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.013852505}, \"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.0030016508}, \"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.0050482713}, \"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.009141512}, \"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.017327994}, \"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.033163305}, \"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.0011602591}, \"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.0014810036}, \"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.0020742887}, \"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.0026193697}, \"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.0014014003}, \"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.0015749045}, \"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.0019219131}, \"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.0025506627}, \"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.0038734295}, \"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.006518963}, \"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.01181003}, \"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.022392163}, \"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.032974295}, \"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.04355643}, \"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.0016706431}, \"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.00211339}, \"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.002998884}, \"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.0047698724}, \"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.008311848}, \"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.011853824}, \"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.015395801}, \"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.00211339}, \"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.0016706431}, \"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.00211339}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":41}" + headers: + Content-Length: + - "43378" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 54153086-cf36-4f97-84aa-d93bc4cacb17 + status: 200 OK + code: 200 + duration: 19.971084ms +- id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1882 + 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: + - "1882" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:34 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 390dd663-c5e6-4c05-b52f-f41dfa3514bf + X-Total-Count: + - "41" + status: 200 OK + code: 200 + duration: 78.64018ms +- id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 31954 + 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: + - "31954" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:35 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2a9ecd4c-2e7f-479e-9dc4-ac4dd681d127 + X-Total-Count: + - "41" + status: 200 OK + code: 200 + duration: 68.658486ms +- id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 43378 + 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.002085632}, \"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.002943368}, \"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.021813558}, \"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.0046588397}, \"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.008089784}, \"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.014951671}, \"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.028675444}, \"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.002016934}, \"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.0028059722}, \"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.0043840483}, \"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.0075402004}, \"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.013852505}, \"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.0030016508}, \"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.0050482713}, \"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.009141512}, \"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.017327994}, \"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.033163305}, \"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.0011602591}, \"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.0014810036}, \"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.0020742887}, \"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.0026193697}, \"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.0014014003}, \"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.0015749045}, \"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.0019219131}, \"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.0025506627}, \"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.0038734295}, \"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.006518963}, \"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.01181003}, \"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.022392163}, \"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.032974295}, \"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.04355643}, \"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.0016706431}, \"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.00211339}, \"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.002998884}, \"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.0047698724}, \"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.008311848}, \"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.011853824}, \"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.015395801}, \"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.00211339}, \"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.0016706431}, \"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.00211339}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":41}" + headers: + Content-Length: + - "43378" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 538dd527-b4d2-4b30-80d1-2b8843eefe54 + status: 200 OK + code: 200 + duration: 30.189903ms +- id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1882 + 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: + - "1882" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:35 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 54463122-f741-495d-b8ef-8484333304f4 + X-Total-Count: + - "41" + status: 200 OK + code: 200 + duration: 84.265954ms +- id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 31954 + 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: + - "31954" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:35 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2039c7e2-ad34-436c-9535-edd94b0e1fab + X-Total-Count: + - "41" + status: 200 OK + code: 200 + duration: 48.979982ms +- id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 43378 + 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.002085632}, \"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.002943368}, \"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.021813558}, \"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.0046588397}, \"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.008089784}, \"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.014951671}, \"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.028675444}, \"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.002016934}, \"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.0028059722}, \"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.0043840483}, \"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.0075402004}, \"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.013852505}, \"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.0030016508}, \"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.0050482713}, \"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.009141512}, \"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.017327994}, \"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.033163305}, \"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.0011602591}, \"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.0014810036}, \"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.0020742887}, \"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.0026193697}, \"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.0014014003}, \"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.0015749045}, \"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.0019219131}, \"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.0025506627}, \"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.0038734295}, \"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.006518963}, \"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.01181003}, \"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.022392163}, \"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.032974295}, \"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.04355643}, \"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.0016706431}, \"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.00211339}, \"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.002998884}, \"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.0047698724}, \"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.008311848}, \"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.011853824}, \"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.015395801}, \"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.00211339}, \"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.0016706431}, \"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.00211339}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":41}" + headers: + Content-Length: + - "43378" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 894ce151-6cd6-4ae4-9c45-500ce7fa3f7f + status: 200 OK + code: 200 + duration: 21.7231ms +- id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1882 + 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: + - "1882" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:35 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ce1f507a-167f-478f-bc99-1a766c3bbdb8 + X-Total-Count: + - "41" + status: 200 OK + code: 200 + duration: 100.076804ms +- id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 26508 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:35 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0a425072-0c80-41b0-b5a5-dee454e06424 + X-Total-Count: + - "34" + status: 200 OK + code: 200 + duration: 82.137231ms +- id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 43363 + 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.006173454}, \"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.00787977}, \"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.045418724}, \"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.011292403}, \"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.018117668}, \"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.031768195}, \"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.059069254}, \"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.0060186293}, \"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.007570121}, \"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.010673104}, \"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.016879069}, \"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.029290998}, \"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.007631727}, \"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.011789013}, \"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.020103585}, \"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.03673273}, \"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.068898894}, \"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.003632933}, \"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.004288523}, \"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.0055011827}, \"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.0066153225}, \"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.004789766}, \"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.0051123938}, \"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.005757649}, \"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.0069267964}, \"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.009386455}, \"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.014305771}, \"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.024144405}, \"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.04382167}, \"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.06349894}, \"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.0831762}, \"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.005347906}, \"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.006228674}, \"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.00799021}, \"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.011513283}, \"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.018559428}, \"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.025605572}, \"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.032651715}, \"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.006228674}, \"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.005347906}, \"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.006228674}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":41}" + headers: + Content-Length: + - "43363" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2b3b9a0e-5daf-4b19-8ed9-96dbbb300b56 + status: 200 OK + code: 200 + duration: 21.979011ms +- id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1531 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:35 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e769160d-1c04-4a8f-9334-d2f69dc16183 + X-Total-Count: + - "34" + status: 200 OK + code: 200 + duration: 88.237555ms +- id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 26508 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 34283f8e-e866-4601-9186-a83f01027c16 + X-Total-Count: + - "34" + status: 200 OK + code: 200 + duration: 119.353144ms +- id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 43363 + 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.006173454}, \"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.00787977}, \"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.045418724}, \"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.011292403}, \"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.018117668}, \"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.031768195}, \"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.059069254}, \"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.0060186293}, \"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.007570121}, \"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.010673104}, \"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.016879069}, \"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.029290998}, \"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.007631727}, \"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.011789013}, \"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.020103585}, \"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.03673273}, \"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.068898894}, \"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.003632933}, \"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.004288523}, \"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.0055011827}, \"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.0066153225}, \"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.004789766}, \"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.0051123938}, \"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.005757649}, \"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.0069267964}, \"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.009386455}, \"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.014305771}, \"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.024144405}, \"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.04382167}, \"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.06349894}, \"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.0831762}, \"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.005347906}, \"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.006228674}, \"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.00799021}, \"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.011513283}, \"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.018559428}, \"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.025605572}, \"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.032651715}, \"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.006228674}, \"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.005347906}, \"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.006228674}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":41}" + headers: + Content-Length: + - "43363" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a577677d-3f14-4288-bc94-a425ab782a3b + status: 200 OK + code: 200 + duration: 23.614107ms +- id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1531 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 36eaedf0-d009-458d-b7f2-ab4edefa2cfb + X-Total-Count: + - "34" + status: 200 OK + code: 200 + duration: 102.045106ms +- id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 26508 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 64d3341c-d75a-4c59-81f1-77d828c376d2 + X-Total-Count: + - "34" + status: 200 OK + code: 200 + duration: 110.988102ms +- id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 43363 + 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.006173454}, \"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.00787977}, \"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.045418724}, \"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.011292403}, \"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.018117668}, \"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.031768195}, \"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.059069254}, \"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.0060186293}, \"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.007570121}, \"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.010673104}, \"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.016879069}, \"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.029290998}, \"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.007631727}, \"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.011789013}, \"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.020103585}, \"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.03673273}, \"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.068898894}, \"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.003632933}, \"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.004288523}, \"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.0055011827}, \"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.0066153225}, \"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.004789766}, \"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.0051123938}, \"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.005757649}, \"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.0069267964}, \"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.009386455}, \"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.014305771}, \"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.024144405}, \"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.04382167}, \"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.06349894}, \"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.0831762}, \"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.005347906}, \"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.006228674}, \"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.00799021}, \"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.011513283}, \"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.018559428}, \"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.025605572}, \"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.032651715}, \"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.006228674}, \"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.005347906}, \"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.006228674}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":41}" + headers: + Content-Length: + - "43363" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d45318a1-59db-4a26-980b-1591c9e187ab + status: 200 OK + code: 200 + duration: 20.979636ms +- id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1531 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cc22eba3-d8ec-4758-afd9-3aae12874fea + X-Total-Count: + - "34" + status: 200 OK + code: 200 + duration: 91.699118ms +- id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 24777 + 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: + - "24777" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d48949c6-dfad-4e2a-8abf-b02160de43be + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: 114.520198ms +- id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 33489 + 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.003151157}, \"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.004857473}, \"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.04239643}, \"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.008270105}, \"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.01509537}, \"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.028745899}, \"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.05604696}, \"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.0029963322}, \"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.0045478237}, \"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.007650806}, \"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.013856771}, \"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.026268702}, \"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.0017674686}, \"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.0020900962}, \"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.0027353517}, \"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.003904499}, \"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.0063641574}, \"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.011283474}, \"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.021122107}, \"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.040799376}, \"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.060476642}, \"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.080153905}, \"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.0023256089}, \"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.003206377}, \"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.004967913}, \"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.008490985}, \"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.01553713}, \"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.022583274}, \"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.029629419}, \"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.003206377}, \"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.0023256089}, \"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.003206377}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":32}" + headers: + Content-Length: + - "33489" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6de744fb-28c0-4b65-aed6-acbdce06c5ea + status: 200 OK + code: 200 + duration: 23.821737ms +- id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1515 + 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: + - "1515" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5599de33-0fb0-46dc-835c-4f06d57e6f66 + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: 89.831514ms +- id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 24777 + 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: + - "24777" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c56d26c6-287d-401a-9fdc-ec3144419f08 + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: 83.09653ms +- id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 33489 + 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.003151157}, \"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.004857473}, \"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.04239643}, \"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.008270105}, \"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.01509537}, \"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.028745899}, \"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.05604696}, \"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.0029963322}, \"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.0045478237}, \"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.007650806}, \"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.013856771}, \"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.026268702}, \"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.0017674686}, \"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.0020900962}, \"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.0027353517}, \"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.003904499}, \"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.0063641574}, \"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.011283474}, \"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.021122107}, \"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.040799376}, \"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.060476642}, \"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.080153905}, \"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.0023256089}, \"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.003206377}, \"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.004967913}, \"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.008490985}, \"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.01553713}, \"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.022583274}, \"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.029629419}, \"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.003206377}, \"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.0023256089}, \"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.003206377}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":32}" + headers: + Content-Length: + - "33489" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1909a116-baa5-424b-b1c0-fdd24481060c + status: 200 OK + code: 200 + duration: 19.208453ms +- id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1515 + 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: + - "1515" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eac32d30-be04-4e2f-a73d-999d171a4ccb + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: 96.848948ms +- id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 24777 + 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: + - "24777" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 35fb8d2b-9703-47dd-909c-612873991ed9 + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: 81.877834ms +- id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 33489 + 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.003151157}, \"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.004857473}, \"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.04239643}, \"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.008270105}, \"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.01509537}, \"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.028745899}, \"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.05604696}, \"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.0029963322}, \"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.0045478237}, \"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.007650806}, \"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.013856771}, \"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.026268702}, \"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.0017674686}, \"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.0020900962}, \"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.0027353517}, \"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.003904499}, \"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.0063641574}, \"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.011283474}, \"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.021122107}, \"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.040799376}, \"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.060476642}, \"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.080153905}, \"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.0023256089}, \"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.003206377}, \"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.004967913}, \"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.008490985}, \"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.01553713}, \"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.022583274}, \"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.029629419}, \"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.003206377}, \"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.0023256089}, \"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.003206377}, \"unit_of_measure\":{\"unit\":\"hour\", \"size\":1}, \"status\":\"general_availability\"}], \"total_count\":32}" + headers: + Content-Length: + - "33489" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 24cd5567-4ccc-4518-b3c2-924117dbf695 + status: 200 OK + code: 200 + duration: 19.39896ms +- id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1515 + 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: + - "1515" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4fc35279-a703-4294-a90d-d91bc40b4b11 + X-Total-Count: + - "32" + status: 200 OK + code: 200 + duration: 96.18323ms 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 14746d583..157e0e359 100644 --- a/internal/services/instance/testdata/data-source-servers-basic.cassette.yaml +++ b/internal/services/instance/testdata/data-source-servers-basic.cassette.yaml @@ -1,5722 +1,3796 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fddeae8c-68d6-45f4-8099-8e3fa0b28c33 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 54.869995ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 53bbd1fb-93a4-43fe-8100-094e26914e70 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 43.355806ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cad6d76f-e1d1-470c-ae8a-1639d8fbfa8a - status: 200 OK - code: 200 - duration: 46.017653ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 301 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-server-datasource0","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 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:47 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0fe97832-8b31-4790-ab36-1910cb4577b9 - status: 201 Created - code: 201 - duration: 1.042278179s - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/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:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ab38e7ea-47fc-4731-95ba-9a85fcf13433 - status: 200 OK - code: 200 - duration: 174.054806ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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: 1797 - 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}}' - headers: - Content-Length: - - "1797" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c6a4c812-36a8-4353-8b34-27ea52acf7f6 - status: 200 OK - code: 200 - duration: 139.027593ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6e651907-1369-4aee-8088-5b086a2c6aeb - status: 200 OK - code: 200 - duration: 131.512391ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ade4ab0-de81-45b6-889c-5afed15bf99f - 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": "4ade4ab0-de81-45b6-889c-5afed15bf99f"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f77833b0-5edc-475c-87d4-72ed28767767 - status: 404 Not Found - code: 404 - duration: 27.085825ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/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:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 65b56113-7c10-4f11-af0d-e4d205a2e551 - status: 200 OK - code: 200 - duration: 122.930464ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a7f00a17-2715-4849-969f-1f2068bf70f8 - status: 200 OK - code: 200 - duration: 91.813663ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:48 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3b8d36af-0308-47ea-9f3e-6b4eedb8ffd2 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 90.060034ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1797 - 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}}' - headers: - Content-Length: - - "1797" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dcf4ec4a-2f5d-43b2-bf6d-88a3bcf1d53b - status: 200 OK - code: 200 - duration: 147.975564ms - - 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/4ade4ab0-de81-45b6-889c-5afed15bf99f - 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": "4ade4ab0-de81-45b6-889c-5afed15bf99f"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f5053220-6432-4cb4-8b8e-d77faf1794f0 - status: 404 Not Found - code: 404 - duration: 31.266391ms - - 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/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:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 84e1d3af-4eb6-4e49-a9aa-aa3a8ab5146f - status: 200 OK - code: 200 - duration: 93.301545ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c3fe2399-780e-4a4b-a5a1-df2390fc9368 - status: 200 OK - code: 200 - duration: 107.49828ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:49 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 168d4e04-c36e-4549-8c15-50e091e19f30 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 105.416757ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1797 - 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}}' - headers: - Content-Length: - - "1797" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1c6c45e7-de38-4c49-a3de-91494260efca - status: 200 OK - code: 200 - duration: 145.222165ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ade4ab0-de81-45b6-889c-5afed15bf99f - 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": "4ade4ab0-de81-45b6-889c-5afed15bf99f"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a312eb4f-2ebd-4947-967b-9deda26f317b - status: 404 Not Found - code: 404 - duration: 35.276ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/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:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6cad4d3e-ed8b-4142-867b-cda23310b5c7 - status: 200 OK - code: 200 - duration: 80.55932ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 545baeba-ca24-4ddd-b82a-edd1e46d9064 - status: 200 OK - code: 200 - duration: 83.65109ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:50 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9c6b8b04-1e86-4450-a925-4f9176f0664f - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 104.180607ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e0ec690d-b0c3-4a36-ad02-fe8c74930253 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 43.764561ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6d3c6dbf-1c92-4351-85c2-8075136bc47c - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 41.756927ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 653eca5e-b45f-49cb-946a-a821d9998710 - status: 200 OK - code: 200 - duration: 70.688073ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 301 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-server-datasource1","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 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:51 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b6a04f65-e477-4b38-9ff8-bb904a2f2d20 - status: 201 Created - code: 201 - duration: 1.14132059s - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 28bbdc2a-813d-41a6-9ad5-299b6a79d01b - status: 200 OK - code: 200 - duration: 143.690152ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1843 - 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, "admin_password_encryption_ssh_key_id": null}}' - headers: - Content-Length: - - "1843" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ed26d6df-2e8e-4ef8-8c24-4dda195ee019 - status: 200 OK - code: 200 - duration: 136.741149ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1843 - 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, "admin_password_encryption_ssh_key_id": null}}' - headers: - Content-Length: - - "1843" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3c6a14e5-33c1-4427-ba80-825c05e22539 - status: 200 OK - code: 200 - duration: 121.400595ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b569175f-a2e6-4869-8817-083af7ab4c77 - 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": "b569175f-a2e6-4869-8817-083af7ab4c77"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 28d696b0-206d-4c6e-b9d3-f3cdd83fb006 - status: 404 Not Found - code: 404 - duration: 28.700565ms - - 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/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: 702 - 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":"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: - - "702" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d48cadc1-093a-4d86-b2e3-09b836a9cbc1 - status: 200 OK - code: 200 - duration: 90.104217ms - - 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/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:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7f66f930-933e-4692-b5df-f1dc07a13518 - status: 200 OK - code: 200 - duration: 111.24677ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:52 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 410d5df9-ed7f-44a9-93ae-61f02a172fae - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 97.22375ms - - 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/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:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0cfb6a57-ae2d-4abb-ba39-15913656ad4c - status: 200 OK - code: 200 - duration: 136.717195ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8f788b32-4947-46e8-92bb-27f3b30f3533 - status: 200 OK - code: 200 - duration: 147.72089ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b569175f-a2e6-4869-8817-083af7ab4c77 - 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": "b569175f-a2e6-4869-8817-083af7ab4c77"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ece99898-7471-43bb-80c8-8372091ee77f - status: 404 Not Found - code: 404 - duration: 35.630422ms - - 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/volumes/4ade4ab0-de81-45b6-889c-5afed15bf99f - 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": "4ade4ab0-de81-45b6-889c-5afed15bf99f"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9821aa06-6b5c-4787-a3f3-f95ebf571dcb - status: 404 Not Found - code: 404 - duration: 43.852025ms - - 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/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:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b76ef269-ded9-4a9a-98d2-b641370df3bf - status: 200 OK - code: 200 - duration: 87.786093ms - - 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/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:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f77e29b2-d17e-46fa-ba7c-4c9a5d524bb1 - status: 200 OK - code: 200 - duration: 88.443051ms - - 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/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:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cfa0303b-f9e1-4f99-b33b-66b0d091ebcd - status: 200 OK - code: 200 - duration: 104.716158ms - - 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/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:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8346d762-740e-48bf-8614-788c7d4101d8 - status: 200 OK - code: 200 - duration: 120.143605ms - - 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/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:53 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 55d4cfc8-dd52-4049-8ebf-3c433dcc4aa4 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 90.083469ms - - 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/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:53 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 012f4638-34e8-4b72-b594-01767ec65341 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 111.723271ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 15 - uncompressed: false - body: '{"servers": []}' - headers: - Content-Length: - - "15" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b8fd23ea-159b-45ba-8674-e426eb1ce0a4 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 125.008613ms - - 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/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:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 113b8b2a-c824-465c-ae27-fa4a89258aeb - status: 200 OK - code: 200 - duration: 140.365968ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1797 - 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}}' - headers: - Content-Length: - - "1797" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bf4ce986-ac82-42eb-88e7-0e524aeebd6d - status: 200 OK - code: 200 - duration: 149.110519ms - - id: 45 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b569175f-a2e6-4869-8817-083af7ab4c77 - 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": "b569175f-a2e6-4869-8817-083af7ab4c77"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 83e609bc-31e0-4dfc-8085-93105b2694a8 - status: 404 Not Found - code: 404 - duration: 24.245324ms - - 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/volumes/4ade4ab0-de81-45b6-889c-5afed15bf99f - 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": "4ade4ab0-de81-45b6-889c-5afed15bf99f"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 039a1ee0-b9a5-4fe1-b5a4-50a6c548e145 - status: 404 Not Found - code: 404 - duration: 30.075044ms - - 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: - 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?name=tf-server-datasource&order=creation_date_desc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 7867 - uncompressed: false - 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: - - "7867" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6ca31aa8-220e-4119-b999-694ae6338a3b - X-Total-Count: - - "4" - status: 200 OK - code: 200 - duration: 207.289001ms - - 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: - 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?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 7683 - uncompressed: false - 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: - - "7683" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b52112e5-59d7-4be0-91d8-4e061d921bc5 - X-Total-Count: - - "4" - status: 200 OK - code: 200 - duration: 226.230258ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/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:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b592e2e1-ff5d-4a93-aec1-1456075e3bb9 - status: 200 OK - code: 200 - duration: 91.981378ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/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:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ebf227db-1141-4491-a4f7-a3219236d398 - status: 200 OK - code: 200 - duration: 82.647805ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 20 - uncompressed: false - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 33baba05-eb95-4f14-b90e-0e68fbf0240e - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 92.033514ms - - 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/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: 20 - uncompressed: false - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9d628958-2982-42f5-b870-9a4dbec1c9a5 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 121.314435ms - - 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/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:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9b355aa6-4a1e-4039-bef0-a067c75fdc70 - status: 200 OK - code: 200 - duration: 83.550163ms - - 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/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:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 744dfa77-6c9e-40cc-a58f-337eb3f836e5 - status: 200 OK - code: 200 - duration: 110.088574ms - - 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/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:53 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4310d860-d7c0-43c6-8307-7b8f524595a6 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 87.936224ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:53 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f8243fdb-683c-4521-a566-cda830972348 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 95.608439ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:53 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 79245f23-6807-40b2-9c40-857f6dcb6bea - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 131.576292ms - - 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/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:53 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a2c9ef40-9ff0-4219-9c41-f667ab45d481 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 112.127166ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:53 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3b5e08a4-8794-4294-b9c4-0a3294c9b046 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 101.837957ms - - 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/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:53 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fdbab17e-a759-49ef-ba1e-2d15b0cad6e0 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 94.963463ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4abdc305-d530-41da-9972-10e85b88d772 - status: 200 OK - code: 200 - duration: 30.284917ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a73139c4-9d15-4a0c-8e48-5b3f1175bfc6 - status: 200 OK - code: 200 - duration: 27.590849ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:53 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a43882d6-eb01-47a8-bac1-ad1a446fe7dc - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 105.222787ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:53 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3373f86b-b7f4-4759-865b-0918051c6d35 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 109.375982ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 15 - uncompressed: false - body: '{"servers": []}' - headers: - Content-Length: - - "15" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4cb034b5-31d2-48eb-8d19-73010cc294e3 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 122.67024ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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?name=tf-server-datasource&order=creation_date_desc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 8325 - uncompressed: false - 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: - - "8325" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6574c1a9-9b8b-4b87-ac25-3350ac634b2f - X-Total-Count: - - "4" - status: 200 OK - code: 200 - duration: 205.618247ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 8141 - uncompressed: false - 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: - - "8141" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d47c30d6-0425-43b9-b299-d92901e8ae86 - X-Total-Count: - - "4" - status: 200 OK - code: 200 - duration: 227.150608ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:54 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6a5f1629-638c-4e1e-a74b-adb17a88d62f - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 91.010302ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 44b903a4-ed7c-4e5a-a4c0-0e474a85b848 - status: 200 OK - code: 200 - duration: 29.491413ms - - 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/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:54 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9c877c32-a55f-443f-9c76-31b03caa356c - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 104.310341ms - - 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: - 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:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fc54f19f-c018-4a18-b437-051668d134e9 - status: 200 OK - code: 200 - duration: 29.15755ms - - 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/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:54 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 35d9e39c-2194-41bf-a60f-b61788440e2f - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 110.119242ms - - 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/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:54 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d13b6220-13ac-4334-9318-0aeb50bef379 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 110.585133ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:54 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 243e16da-a087-4a61-a24f-cbd340732dd3 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 94.681246ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 29da3900-94d8-4b35-a456-f70a1ff7dcd6 - status: 200 OK - code: 200 - duration: 27.732394ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:54 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d2acfab5-d184-4993-b19d-893fca7ec99b - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 100.626653ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f3c30873-af8a-413c-8d03-4438d3a77f6f - status: 200 OK - code: 200 - duration: 19.698773ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:54 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f86421a5-3458-4c70-9bdf-d5618ce7b9bb - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 98.963042ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:54 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ea2eb2ea-bd7d-43e7-bd94-856649ff3d0f - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 109.275434ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 15 - uncompressed: false - body: '{"servers": []}' - headers: - Content-Length: - - "15" - 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: - - 5d1692b7-e025-453d-94f6-754e157c13e3 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 147.716432ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1797 - 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}}' - headers: - Content-Length: - - "1797" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3e75cab2-8e8f-4a40-b173-31dfd34d255a - status: 200 OK - code: 200 - duration: 155.280916ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1843 - 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, "admin_password_encryption_ssh_key_id": null}}' - headers: - Content-Length: - - "1843" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 32c83eba-725e-437b-95d4-aa5248bf9600 - status: 200 OK - code: 200 - duration: 160.781792ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b569175f-a2e6-4869-8817-083af7ab4c77 - 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": "b569175f-a2e6-4869-8817-083af7ab4c77"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 12bd9590-d4db-4966-ba5a-062a8b615f8f - status: 404 Not Found - code: 404 - duration: 21.482518ms - - 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/volumes/4ade4ab0-de81-45b6-889c-5afed15bf99f - 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": "4ade4ab0-de81-45b6-889c-5afed15bf99f"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 921131b8-fa90-428e-9bf8-4feaa8c13a07 - status: 404 Not Found - code: 404 - duration: 26.5219ms - - 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: - 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?name=tf-server-datasource&order=creation_date_desc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 8325 - uncompressed: false - 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: - - "8325" - 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: - - e5c400f7-1fbd-4714-9dc2-c4751b90f5e0 - X-Total-Count: - - "4" - status: 200 OK - code: 200 - duration: 200.148119ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 8325 - uncompressed: false - 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: - - "8325" - 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: - - 8517adfd-a578-4034-9a7f-231a19864da0 - X-Total-Count: - - "4" - status: 200 OK - code: 200 - duration: 209.936231ms - - id: 87 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/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:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e0e8976d-7ac1-4546-92d6-b9a74386d392 - status: 200 OK - code: 200 - duration: 79.96517ms - - id: 88 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/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:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b1ad0238-405c-4292-a1a7-3072212ec436 - status: 200 OK - code: 200 - duration: 80.017307ms - - 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/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: - - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/db0b3443-ff5b-4d16-987d-457f7bfa66dd - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 790930d8-a5c7-4a67-95b1-5f65f7354d1d - status: 202 Accepted - code: 202 - duration: 226.195123ms - - id: 112 - 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/f35109e4-cdf2-44d3-aede-1f09b9318b2a/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6aeb08cd-2d1c-401c-b86b-6556ce7f8020 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c874767e-af50-4f07-9436-565c02d9463d - status: 202 Accepted - code: 202 - duration: 261.328667ms - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1819 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aa264b84-d2b6-4b9e-958d-b7d42b49b3c1 - status: 200 OK - code: 200 - duration: 139.188306ms - - 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/f35109e4-cdf2-44d3-aede-1f09b9318b2a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1819 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cc3d5c80-2ffb-49dd-8c6f-8367d69d9536 - status: 200 OK - code: 200 - duration: 144.077679ms - - id: 115 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1953 - 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": "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: - - "1953" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2b3248e5-4780-4e77-9bef-48487844db69 - status: 200 OK - code: 200 - duration: 132.465317ms - - id: 116 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1954 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 23515c27-1adf-40a8-b140-b2599a19fed7 - status: 200 OK - code: 200 - duration: 152.68794ms - - id: 117 - 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/0817874c-7a02-45ba-871b-5853554aa022/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:02 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b00c2a21-46ce-4562-b5bc-048f03b7cd4e - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c79cea15-6ae0-4525-a6dd-fbfb20ccff70 - status: 202 Accepted - code: 202 - duration: 291.294551ms - - id: 118 - 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/f35109e4-cdf2-44d3-aede-1f09b9318b2a/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:02 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/823c8225-ee36-4404-9bf3-9791f133dfaf - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2444e44d-0b03-44b8-947f-2a7eecffb95c - status: 202 Accepted - code: 202 - duration: 285.354034ms - - id: 119 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1962 - 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": "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: - - "1962" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 56222a1a-1cea-44cb-97c7-acee5672eb53 - status: 200 OK - code: 200 - duration: 125.346557ms - - id: 120 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1963 - 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": "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: - - "1963" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - caa74537-1a6f-4b36-bab2-089f8bef644f - status: 200 OK - code: 200 - duration: 145.542991ms - - id: 121 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022 - 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": "0817874c-7a02-45ba-871b-5853554aa022"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d58e7e55-a0fa-4212-b52c-ec2933e31f78 - status: 404 Not Found - code: 404 - duration: 57.104496ms - - id: 122 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b569175f-a2e6-4869-8817-083af7ab4c77 - 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": "b569175f-a2e6-4869-8817-083af7ab4c77"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7c0d4b05-6bae-4bf5-baf4-2d50f25ac3ee - status: 404 Not Found - code: 404 - duration: 25.244914ms - - id: 123 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a - 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": "f35109e4-cdf2-44d3-aede-1f09b9318b2a"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 45468e60-3916-472d-86f2-8f543f82dcbd - status: 404 Not Found - code: 404 - duration: 58.293381ms - - id: 124 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ade4ab0-de81-45b6-889c-5afed15bf99f - 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": "4ade4ab0-de81-45b6-889c-5afed15bf99f"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d4ee2aa7-2d03-4d88-8f5b-db25110a7776 - status: 404 Not Found - code: 404 - duration: 27.185602ms - - id: 125 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b569175f-a2e6-4869-8817-083af7ab4c77 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - 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: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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 848d3a6a-9512-47c7-b93f-3eedcc65b414 - status: 200 OK - code: 200 - duration: 89.170715ms - - id: 126 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ade4ab0-de81-45b6-889c-5afed15bf99f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - 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: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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cd1e8b19-16d3-4c08-a43c-2ec89b763cdb - status: 200 OK - code: 200 - duration: 89.257778ms - - id: 127 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b569175f-a2e6-4869-8817-083af7ab4c77 - 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:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c205ee39-0258-4f41-a922-fb5e56e4d1b5 - status: 204 No Content - code: 204 - duration: 153.223795ms - - id: 128 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ade4ab0-de81-45b6-889c-5afed15bf99f - 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:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 114d573a-1c74-4ceb-89b4-fec47afeb377 - status: 204 No Content - code: 204 - duration: 141.565766ms - - id: 129 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0817874c-7a02-45ba-871b-5853554aa022 - 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": "0817874c-7a02-45ba-871b-5853554aa022"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 958a3d83-1438-4312-9897-d60ce00fcaf2 - status: 404 Not Found - code: 404 - duration: 40.668404ms - - id: 130 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f35109e4-cdf2-44d3-aede-1f09b9318b2a - 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": "f35109e4-cdf2-44d3-aede-1f09b9318b2a"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 49d7d05b-12f6-4e38-b5f0-90cb03f8c665 - status: 404 Not Found - code: 404 - duration: 41.237548ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:54 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - d3e22b7a-b748-4a59-b3f4-ca6df853101b + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 109.145881ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:54 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - e24174ec-3554-4484-839f-fd2dc92ed0ba + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 63.069881ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 43866b87-e7bc-4997-a414-de9945d0dd0d + status: 200 OK + code: 200 + duration: 46.60398ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 301 + host: api.scaleway.com + body: "{\"name\":\"tf-server-datasource0\",\"dynamic_ip_required\":false,\"commercial_type\":\"DEV1-S\",\"image\":\"8ac1fe52-01dc-4dc1-8578-73ec5d126648\",\"volumes\":{\"0\":{\"boot\":false}},\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[\"terraform-test\",\"data_scaleway_instance_servers\",\"basic\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1797 + body: "{\"server\": {\"id\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"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\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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:6e:25\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:55.313452+00:00\", \"modification_date\": \"2025-10-30T15:58:55.313452+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:58:55 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50 + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - b913c59a-b7c6-4649-88f7-f89401c0bfe0 + status: 201 Created + code: 201 + duration: 1.273700176s +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1797 + body: "{\"server\": {\"id\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"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\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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:6e:25\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:55.313452+00:00\", \"modification_date\": \"2025-10-30T15:58:55.313452+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:58:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 3a40ca20-bca9-4286-b708-a0f20d3ca6bb + status: 200 OK + code: 200 + duration: 157.755726ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1797 + body: "{\"server\": {\"id\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"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\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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:6e:25\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:55.313452+00:00\", \"modification_date\": \"2025-10-30T15:58:55.313452+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:58:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 70bc1a9c-7eb4-4ab6-b408-1f3241af3c2d + status: 200 OK + code: 200 + duration: 153.024036ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1797 + body: "{\"server\": {\"id\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"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\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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:6e:25\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:55.313452+00:00\", \"modification_date\": \"2025-10-30T15:58:55.313452+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:58:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 41fdc7bc-73a3-4230-82a3-5dbb2989bf7f + status: 200 OK + code: 200 + duration: 136.468536ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9cedc526-192d-40cc-a85c-f717f73df5e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - a6714da7-d0ab-411b-842a-5cd43376a4e8 + status: 404 Not Found + code: 404 + duration: 20.762123ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9cedc526-192d-40cc-a85c-f717f73df5e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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-30T15:58:55.439718Z\", \"updated_at\":\"2025-10-30T15:58:55.439718Z\", \"references\":[{\"id\":\"49a04ed3-8b2d-48ed-8ae0-5c26f05c227d\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"created_at\":\"2025-10-30T15:58:55.439718Z\", \"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: + - Thu, 30 Oct 2025 15:58:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 12f90240-dc34-49ad-81ed-9564e861b0c9 + status: 200 OK + code: 200 + duration: 98.395436ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - f1d5f6cc-5afd-4b80-ae30-8d0f7ffd2524 + status: 200 OK + code: 200 + duration: 112.584814ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:56 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - cf8e7680-10fe-4f24-9c74-44e334ab5c24 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 103.510475ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1797 + body: "{\"server\": {\"id\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"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\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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:6e:25\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:55.313452+00:00\", \"modification_date\": \"2025-10-30T15:58:55.313452+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:58:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - d68ac241-a104-48eb-8f08-dff0a994f2ea + status: 200 OK + code: 200 + duration: 144.933662ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9cedc526-192d-40cc-a85c-f717f73df5e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - e068a3e1-ec5f-4f22-a5c3-7beb31cb27c2 + status: 404 Not Found + code: 404 + duration: 24.493036ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9cedc526-192d-40cc-a85c-f717f73df5e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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-30T15:58:55.439718Z\", \"updated_at\":\"2025-10-30T15:58:55.439718Z\", \"references\":[{\"id\":\"49a04ed3-8b2d-48ed-8ae0-5c26f05c227d\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"created_at\":\"2025-10-30T15:58:55.439718Z\", \"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: + - Thu, 30 Oct 2025 15:58:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 30444648-9d88-4687-ba26-4bc34179ea7b + status: 200 OK + code: 200 + duration: 95.167738ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - c3e68c10-3902-4ed2-ae4e-a1d678a3d5e7 + status: 200 OK + code: 200 + duration: 115.044551ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:57 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 1915939f-f994-457c-b6d4-aa960490c7d3 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 105.342373ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1797 + body: "{\"server\": {\"id\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"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\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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:6e:25\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:55.313452+00:00\", \"modification_date\": \"2025-10-30T15:58:55.313452+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:58:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - cc782c0e-9e2c-46b8-a5aa-8d69be76c8fa + status: 200 OK + code: 200 + duration: 129.689575ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9cedc526-192d-40cc-a85c-f717f73df5e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 0c993fb6-d30d-4813-9c6f-0e33c8bb5c4c + status: 404 Not Found + code: 404 + duration: 33.303049ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9cedc526-192d-40cc-a85c-f717f73df5e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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-30T15:58:55.439718Z\", \"updated_at\":\"2025-10-30T15:58:55.439718Z\", \"references\":[{\"id\":\"49a04ed3-8b2d-48ed-8ae0-5c26f05c227d\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"created_at\":\"2025-10-30T15:58:55.439718Z\", \"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: + - Thu, 30 Oct 2025 15:58:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 9070c87c-0031-429a-a50b-de80de6d5371 + status: 200 OK + code: 200 + duration: 82.037387ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - dce1a3e5-4f09-406c-a19f-165e19b58e89 + status: 200 OK + code: 200 + duration: 100.336358ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:58 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - dcec76b8-3781-4317-966e-22f6ba724e20 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 104.682434ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:58 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - d32ae73a-0c55-43a6-8f5c-355efaf91eb9 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 68.247609ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:58 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 8ca0c0ae-1536-41ef-9f6e-3e8cc4fc7fef + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 122.420203ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 6a33683b-aac6-4684-8b14-7477aa03bda9 + status: 200 OK + code: 200 + duration: 55.974917ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 301 + host: api.scaleway.com + body: "{\"name\":\"tf-server-datasource1\",\"dynamic_ip_required\":false,\"commercial_type\":\"DEV1-S\",\"image\":\"8ac1fe52-01dc-4dc1-8578-73ec5d126648\",\"volumes\":{\"0\":{\"boot\":false}},\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[\"terraform-test\",\"data_scaleway_instance_servers\",\"basic\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1797 + body: "{\"server\": {\"id\": \"4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"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\": \"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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:6e:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:58.998498+00:00\", \"modification_date\": \"2025-10-30T15:58:58.998498+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:59:00 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - e5bffbde-6961-42c2-a0c3-81cdded7bb70 + status: 201 Created + code: 201 + duration: 1.923099407s +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1797 + body: "{\"server\": {\"id\": \"4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"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\": \"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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:6e:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:58.998498+00:00\", \"modification_date\": \"2025-10-30T15:58:58.998498+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:59:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 51ae5a85-9fa6-4f05-8f9f-d0ca41380a4b + status: 200 OK + code: 200 + duration: 142.516988ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1797 + body: "{\"server\": {\"id\": \"4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"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\": \"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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:6e:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:58.998498+00:00\", \"modification_date\": \"2025-10-30T15:58:58.998498+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:59:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 458140eb-54a3-46c5-8793-483ca76f4f90 + status: 200 OK + code: 200 + duration: 146.967941ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1797 + body: "{\"server\": {\"id\": \"4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"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\": \"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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:6e:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:58.998498+00:00\", \"modification_date\": \"2025-10-30T15:58:58.998498+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:59:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 9592c33b-c27f-412b-8eea-4ee607aad441 + status: 200 OK + code: 200 + duration: 156.567235ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17ab2f08-0fd7-449d-bbf3-ddeb9f21541a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 509b6ad3-8c2e-4a2f-9b82-d4e47c9ef2bf + status: 404 Not Found + code: 404 + duration: 34.07626ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17ab2f08-0fd7-449d-bbf3-ddeb9f21541a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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-30T15:58:59.129702Z\", \"updated_at\":\"2025-10-30T15:58:59.129702Z\", \"references\":[{\"id\":\"a02a9aee-38ad-4548-b4f0-5dfbed6025aa\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"created_at\":\"2025-10-30T15:58:59.129702Z\", \"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: + - Thu, 30 Oct 2025 15:59:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 33d5553a-e7ad-4f49-a49a-6b9cf1ecd84e + status: 200 OK + code: 200 + duration: 94.843269ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 50caf91e-71cf-40d7-a8f6-88c09e532a7c + status: 200 OK + code: 200 + duration: 118.588672ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:01 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - e729d353-382b-42be-953e-9c0560569904 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 99.317426ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1797 + body: "{\"server\": {\"id\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"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\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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:6e:25\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:55.313452+00:00\", \"modification_date\": \"2025-10-30T15:58:55.313452+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:59:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - f4d55729-a5a5-4fb3-ac42-00e6bc26915a + status: 200 OK + code: 200 + duration: 133.216804ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1797 + body: "{\"server\": {\"id\": \"4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"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\": \"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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:6e:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:58.998498+00:00\", \"modification_date\": \"2025-10-30T15:58:58.998498+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:59:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 0cfa7d46-d581-48da-a4c1-a30ee2106065 + status: 200 OK + code: 200 + duration: 132.872148ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9cedc526-192d-40cc-a85c-f717f73df5e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 13add1cb-88ff-4715-9540-b1d8f365a610 + status: 404 Not Found + code: 404 + duration: 32.900633ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17ab2f08-0fd7-449d-bbf3-ddeb9f21541a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 37ef9e4f-c526-43dd-8c4a-2fd9a99abb2c + status: 404 Not Found + code: 404 + duration: 34.416859ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17ab2f08-0fd7-449d-bbf3-ddeb9f21541a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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-30T15:58:59.129702Z\", \"updated_at\":\"2025-10-30T15:58:59.129702Z\", \"references\":[{\"id\":\"a02a9aee-38ad-4548-b4f0-5dfbed6025aa\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"created_at\":\"2025-10-30T15:58:59.129702Z\", \"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: + - Thu, 30 Oct 2025 15:59:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - bf23787b-7433-4621-8553-af561915afeb + status: 200 OK + code: 200 + duration: 89.984572ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9cedc526-192d-40cc-a85c-f717f73df5e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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-30T15:58:55.439718Z\", \"updated_at\":\"2025-10-30T15:58:55.439718Z\", \"references\":[{\"id\":\"49a04ed3-8b2d-48ed-8ae0-5c26f05c227d\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"created_at\":\"2025-10-30T15:58:55.439718Z\", \"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: + - Thu, 30 Oct 2025 15:59:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 179074b7-d505-4521-afd7-96c804d64435 + status: 200 OK + code: 200 + duration: 98.762455ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 5818b01e-c480-46f9-ad7b-4512d67c5e49 + status: 200 OK + code: 200 + duration: 88.472514ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 3af53ff3-4950-424a-bef4-dbfd8fa07318 + status: 200 OK + code: 200 + duration: 122.055138ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:01 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - ba40aed0-d444-437c-9297-9b01fef715d3 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 112.822591ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:01 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 0cfd5e78-cdc5-4cec-8d07-20b9c1018e17 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 111.205878ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1797 + body: "{\"server\": {\"id\": \"4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"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\": \"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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:6e:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:58.998498+00:00\", \"modification_date\": \"2025-10-30T15:58:58.998498+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:59:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 112396e2-9775-44df-8e8d-db6d81a36f14 + status: 200 OK + code: 200 + duration: 131.504391ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1797 + body: "{\"server\": {\"id\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"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\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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:6e:25\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:55.313452+00:00\", \"modification_date\": \"2025-10-30T15:58:55.313452+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:59:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 819c9e31-ecd8-4b1c-98cc-1fd12c63df5b + status: 200 OK + code: 200 + duration: 148.204201ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 15 + body: "{\"servers\": []}" + headers: + Content-Length: + - "15" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:02 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 85ca49bc-052b-4968-b9cb-fed0ad28e4f7 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 163.371275ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17ab2f08-0fd7-449d-bbf3-ddeb9f21541a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 33de0d10-4676-4f2a-9825-a0ce15772473 + status: 404 Not Found + code: 404 + duration: 41.600641ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9cedc526-192d-40cc-a85c-f717f73df5e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 65cc26fe-7de4-4ab5-8242-cd72b61761cd + status: 404 Not Found + code: 404 + duration: 29.364758ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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?name=tf-server-datasource&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3587 + body: "{\"servers\": [{\"id\": \"4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"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\": \"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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:6e:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:58.998498+00:00\", \"modification_date\": \"2025-10-30T15:58:58.998498+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"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\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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:6e:25\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:55.313452+00:00\", \"modification_date\": \"2025-10-30T15:58:55.313452+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:02 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 3ac8e206-4492-4c18-b3c4-db658e5a62e2 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 178.668382ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3587 + body: "{\"servers\": [{\"id\": \"4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"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\": \"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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:6e:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:58.998498+00:00\", \"modification_date\": \"2025-10-30T15:58:58.998498+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"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\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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:6e:25\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:55.313452+00:00\", \"modification_date\": \"2025-10-30T15:58:55.313452+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:02 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - cfb4362c-c340-47c8-803d-78eef56dfdb6 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 210.886475ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17ab2f08-0fd7-449d-bbf3-ddeb9f21541a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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-30T15:58:59.129702Z\", \"updated_at\":\"2025-10-30T15:58:59.129702Z\", \"references\":[{\"id\":\"a02a9aee-38ad-4548-b4f0-5dfbed6025aa\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"created_at\":\"2025-10-30T15:58:59.129702Z\", \"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: + - Thu, 30 Oct 2025 15:59:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 02efc39d-15fb-474a-bdb0-863cc04c2b17 + status: 200 OK + code: 200 + duration: 87.940956ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9cedc526-192d-40cc-a85c-f717f73df5e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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-30T15:58:55.439718Z\", \"updated_at\":\"2025-10-30T15:58:55.439718Z\", \"references\":[{\"id\":\"49a04ed3-8b2d-48ed-8ae0-5c26f05c227d\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"created_at\":\"2025-10-30T15:58:55.439718Z\", \"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: + - Thu, 30 Oct 2025 15:59:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 4742709b-1235-48e7-a7d0-72e5dfde1063 + status: 200 OK + code: 200 + duration: 86.751434ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:02 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 843beb84-45c6-49d6-b4ac-0c1119769abf + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 102.431921ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:02 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 39fca5c1-2f28-4a3c-b3c8-c0f133784166 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 105.000471ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 08a1a417-ec88-44ad-bc73-bafdaad68388 + status: 200 OK + code: 200 + duration: 99.267613ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:02 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 0fcdd6f0-34c1-4031-aa23-7f1b462c9f00 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 87.821653ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - b2b4de5a-d149-41ac-8ad9-df061dde9b4d + status: 200 OK + code: 200 + duration: 112.260597ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:02 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 94af47e2-fb3f-484b-8a5f-4af77f96808e + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 99.615726ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:02 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - df45cd6e-a75d-49b5-9c7b-985b97f977a9 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 87.576723ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:02 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 8cb1d5c9-402b-4127-91e1-bc7ddf005e13 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 108.260019ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 15 + body: "{\"servers\": []}" + headers: + Content-Length: + - "15" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:02 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 3ae6a0ac-8a2c-4547-99c8-d2f95b80d808 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 148.163945ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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?name=tf-server-datasource&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3587 + body: "{\"servers\": [{\"id\": \"4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"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\": \"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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:6e:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:58.998498+00:00\", \"modification_date\": \"2025-10-30T15:58:58.998498+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"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\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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:6e:25\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:55.313452+00:00\", \"modification_date\": \"2025-10-30T15:58:55.313452+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:02 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 3c2437f6-e5eb-446e-a9a3-31f33201bb55 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 208.713436ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3587 + body: "{\"servers\": [{\"id\": \"4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"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\": \"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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:6e:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:58.998498+00:00\", \"modification_date\": \"2025-10-30T15:58:58.998498+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"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\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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:6e:25\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:55.313452+00:00\", \"modification_date\": \"2025-10-30T15:58:55.313452+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:02 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 0ca86a26-7c9c-439f-b8db-e5af214ea8b5 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 216.751101ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:02 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 5b22e831-ac04-4b79-b979-c330440ad818 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 94.044922ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:02 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 6803a696-274a-43f4-9c5c-2f6315e26f24 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 106.745256ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:03 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 5dd54214-286a-4ac5-8b16-bb883bef0b85 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 93.568217ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:03 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - f56aeae5-91da-4846-8932-2650468cae80 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 101.26909ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 15 + body: "{\"servers\": []}" + headers: + Content-Length: + - "15" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:03 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 2c57ee54-60a6-497b-b3ff-ca1b73e978ad + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 143.56826ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1797 + body: "{\"server\": {\"id\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"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\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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:6e:25\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:55.313452+00:00\", \"modification_date\": \"2025-10-30T15:58:55.313452+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:59:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - cbb0a206-f68b-4320-aa33-652735b1a224 + status: 200 OK + code: 200 + duration: 148.024483ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1797 + body: "{\"server\": {\"id\": \"4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"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\": \"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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:6e:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:58.998498+00:00\", \"modification_date\": \"2025-10-30T15:58:58.998498+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:59:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 33dba3cb-4f88-4796-8b69-dacdb557552b + status: 200 OK + code: 200 + duration: 167.705649ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9cedc526-192d-40cc-a85c-f717f73df5e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 3f981edf-8587-4a18-b050-992da0e7554b + status: 404 Not Found + code: 404 + duration: 24.824708ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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?name=tf-server-datasource&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3587 + body: "{\"servers\": [{\"id\": \"4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"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\": \"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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:6e:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:58.998498+00:00\", \"modification_date\": \"2025-10-30T15:58:58.998498+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"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\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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:6e:25\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:55.313452+00:00\", \"modification_date\": \"2025-10-30T15:58:55.313452+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:03 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 2702d11a-dd05-41d9-ad15-e48e24ae6d95 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 186.771519ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17ab2f08-0fd7-449d-bbf3-ddeb9f21541a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 34be7cb9-2f99-4473-b539-76a3adadbc1f + status: 404 Not Found + code: 404 + duration: 42.440117ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3587 + body: "{\"servers\": [{\"id\": \"4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"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\": \"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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:6e:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:58.998498+00:00\", \"modification_date\": \"2025-10-30T15:58:58.998498+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"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\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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:6e:25\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:55.313452+00:00\", \"modification_date\": \"2025-10-30T15:58:55.313452+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:03 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 6cad6f9f-c0cf-49c0-9a96-b081473b29a4 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 212.436614ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:03 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 875a5c1f-4654-4eea-9013-596d798fd13f + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 108.530457ms +- id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17ab2f08-0fd7-449d-bbf3-ddeb9f21541a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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-30T15:58:59.129702Z\", \"updated_at\":\"2025-10-30T15:58:59.129702Z\", \"references\":[{\"id\":\"a02a9aee-38ad-4548-b4f0-5dfbed6025aa\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"created_at\":\"2025-10-30T15:58:59.129702Z\", \"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: + - Thu, 30 Oct 2025 15:59:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 6f8d0b48-b263-4a93-a8ea-66233d82aab0 + status: 200 OK + code: 200 + duration: 82.965309ms +- id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9cedc526-192d-40cc-a85c-f717f73df5e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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-30T15:58:55.439718Z\", \"updated_at\":\"2025-10-30T15:58:55.439718Z\", \"references\":[{\"id\":\"49a04ed3-8b2d-48ed-8ae0-5c26f05c227d\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"created_at\":\"2025-10-30T15:58:55.439718Z\", \"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: + - Thu, 30 Oct 2025 15:59:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 36cddc57-caee-4f6e-818b-b7fd3068692d + status: 200 OK + code: 200 + duration: 120.608302ms +- id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:03 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - e26baa25-9ae4-4eb7-9538-63b1c28bf70b + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 108.843043ms +- id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:03 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 2f57398f-3ddf-446f-b2eb-abe699b254dd + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 92.145617ms +- id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 9f0ed7b1-6822-4be1-aaf5-e46f91a6ff7c + status: 200 OK + code: 200 + duration: 91.924041ms +- id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - f15775be-383d-48e8-9ccc-10b355ba79fe + status: 200 OK + code: 200 + duration: 92.049406ms +- id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:03 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - ab3ceaa9-660c-45de-bf2e-ed3c48829fcf + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 105.529324ms +- id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:03 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 39f22d12-e968-4ebb-8258-5dead0d85a1e + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 90.790033ms +- id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:03 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 48e53589-08e1-4643-b3a2-6011dbd68200 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 102.508475ms +- id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1797 + body: "{\"server\": {\"id\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"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\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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:6e:25\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:55.313452+00:00\", \"modification_date\": \"2025-10-30T15:58:55.313452+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:59:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 5706be9f-b8fa-42c0-b436-441dffee67bb + status: 200 OK + code: 200 + duration: 148.955982ms +- id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1797 + body: "{\"server\": {\"id\": \"4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"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\": \"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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:6e:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:58.998498+00:00\", \"modification_date\": \"2025-10-30T15:58:58.998498+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:59:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 4b9078e7-db06-41d1-a620-d533335d2ff1 + status: 200 OK + code: 200 + duration: 162.974821ms +- id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1797 + body: "{\"server\": {\"id\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"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\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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:6e:25\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:55.313452+00:00\", \"modification_date\": \"2025-10-30T15:58:55.313452+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:59:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - ae963861-b5e6-4a3b-b092-0a3ca2f74f86 + status: 200 OK + code: 200 + duration: 151.401461ms +- id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1797 + body: "{\"server\": {\"id\": \"4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"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\": \"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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:6e:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:58.998498+00:00\", \"modification_date\": \"2025-10-30T15:58:58.998498+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:59:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - d60cdd42-8e61-4a28-93ca-7716c53264f2 + status: 200 OK + code: 200 + duration: 176.415454ms +- id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9cedc526-192d-40cc-a85c-f717f73df5e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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-30T15:58:55.439718Z\", \"updated_at\":\"2025-10-30T15:58:55.439718Z\", \"references\":[{\"id\":\"49a04ed3-8b2d-48ed-8ae0-5c26f05c227d\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"created_at\":\"2025-10-30T15:58:55.439718Z\", \"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: + - Thu, 30 Oct 2025 15:59:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - f5a55115-8a0c-4a4e-aebe-f55d7762467c + status: 200 OK + code: 200 + duration: 103.516467ms +- id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17ab2f08-0fd7-449d-bbf3-ddeb9f21541a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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-30T15:58:59.129702Z\", \"updated_at\":\"2025-10-30T15:58:59.129702Z\", \"references\":[{\"id\":\"a02a9aee-38ad-4548-b4f0-5dfbed6025aa\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"created_at\":\"2025-10-30T15:58:59.129702Z\", \"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: + - Thu, 30 Oct 2025 15:59:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 1bb66db8-cbbe-4f34-bcf6-3bd2a8ea6e3f + status: 200 OK + code: 200 + duration: 80.24877ms +- id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"09ed7deb-d7e0-42b8-b2fd-2d89fc28d5ef\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50/action\", \"href_result\": \"/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"started_at\": \"2025-10-30T15:59:04.524233+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:04 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/09ed7deb-d7e0-42b8-b2fd-2d89fc28d5ef + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 9211824b-3cd9-4e29-aedf-fcfd0e4fc02a + status: 202 Accepted + code: 202 + duration: 293.08741ms +- id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"272e13a9-4648-40d2-ada6-e26f9d2666b6\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a/action\", \"href_result\": \"/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"started_at\": \"2025-10-30T15:59:04.573263+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:04 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/272e13a9-4648-40d2-ada6-e26f9d2666b6 + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 92dbdd1f-a1d5-47fc-9228-9dfd08cf77fe + status: 202 Accepted + code: 202 + duration: 335.920493ms +- id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1819 + body: "{\"server\": {\"id\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"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\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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:6e:25\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:55.313452+00:00\", \"modification_date\": \"2025-10-30T15:59:04.289844+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - b3b3acfc-898b-40f3-ba5b-50577b30c0f7 + status: 200 OK + code: 200 + duration: 137.284939ms +- id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1819 + body: "{\"server\": {\"id\": \"4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"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\": \"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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:6e:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:58.998498+00:00\", \"modification_date\": \"2025-10-30T15:59:04.315328+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 7b4aa3b8-cc41-4fb1-a04b-9c7c959bf8de + status: 200 OK + code: 200 + duration: 125.078181ms +- id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1953 + body: "{\"server\": {\"id\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"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\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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:6e:25\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:55.313452+00:00\", \"modification_date\": \"2025-10-30T15:59:07.912613+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"301\", \"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: + - "1953" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - b59cfbc9-3ff8-4f9f-bbfc-054b972ec4aa + status: 200 OK + code: 200 + duration: 132.219223ms +- id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1952 + body: "{\"server\": {\"id\": \"4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"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\": \"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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:6e:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:58.998498+00:00\", \"modification_date\": \"2025-10-30T15:59:07.612613+00:00\", \"bootscript\": 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\": \"101\", \"node_id\": \"1\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1952" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 75834ae3-c9fa-4edf-93ff-d384ae7eb16c + status: 200 OK + code: 200 + duration: 150.328708ms +- id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"e00dc14d-bf38-4437-9011-f2b19a4c30e9\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a/action\", \"href_result\": \"/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"started_at\": \"2025-10-30T15:59:10.142082+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:10 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e00dc14d-bf38-4437-9011-f2b19a4c30e9 + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - f5d0a20e-6021-440d-982d-5a27c7309860 + status: 202 Accepted + code: 202 + duration: 285.69135ms +- id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"1cfc6fac-ec26-4adc-a87d-1f461206c160\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50/action\", \"href_result\": \"/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"started_at\": \"2025-10-30T15:59:10.135262+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:10 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1cfc6fac-ec26-4adc-a87d-1f461206c160 + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - ed7005e5-8019-49f9-b545-aff01be234d0 + status: 202 Accepted + code: 202 + duration: 351.911243ms +- id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1916 + body: "{\"server\": {\"id\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"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\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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:6e:25\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:55.313452+00:00\", \"modification_date\": \"2025-10-30T15:59:09.862367+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"301\", \"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: + - "1916" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 05cb3a8f-0522-4af1-8572-9a3a64f7e62d + status: 200 OK + code: 200 + duration: 131.990584ms +- id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1915 + body: "{\"server\": {\"id\": \"4c1619b6-27fb-4f4e-9e18-70660d83427a\", \"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\": \"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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:6e:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:58.998498+00:00\", \"modification_date\": \"2025-10-30T15:59:09.925678+00:00\", \"bootscript\": 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\": \"101\", \"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: + - "1915" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - fe26895b-fac5-4f91-90e5-772e92b602e5 + status: 200 OK + code: 200 + duration: 152.177939ms +- id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"4c1619b6-27fb-4f4e-9e18-70660d83427a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 35ddfd12-c23b-4d5c-9447-089a7ff45383 + status: 404 Not Found + code: 404 + duration: 45.344607ms +- id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17ab2f08-0fd7-449d-bbf3-ddeb9f21541a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - c97d42d6-c8b5-41b9-ba47-2bee37100465 + status: 404 Not Found + code: 404 + duration: 31.948257ms +- id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1916 + body: "{\"server\": {\"id\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"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\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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:6e:25\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:55.313452+00:00\", \"modification_date\": \"2025-10-30T15:59:09.862367+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"301\", \"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: + - "1916" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 0c1afd83-a453-4bfe-b2ae-8ee937f66961 + status: 200 OK + code: 200 + duration: 155.608096ms +- id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17ab2f08-0fd7-449d-bbf3-ddeb9f21541a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"17ab2f08-0fd7-449d-bbf3-ddeb9f21541a\", \"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-30T15:58:59.129702Z\", \"updated_at\":\"2025-10-30T15:59:11.669373Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:59:11.669373Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - a2b27ec5-3f3f-4d5e-9cfe-a6cfc5394924 + status: 200 OK + code: 200 + duration: 80.233923ms +- id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17ab2f08-0fd7-449d-bbf3-ddeb9f21541a + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 63121862-e24a-410a-aba4-179f78e9d25d + status: 204 No Content + code: 204 + duration: 163.334215ms +- id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1916 + body: "{\"server\": {\"id\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\", \"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\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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:6e:25\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:58:55.313452+00:00\", \"modification_date\": \"2025-10-30T15:59:09.862367+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"301\", \"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: + - "1916" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 2e0eca5a-b538-40f5-a982-47e4e84ca7e0 + status: 200 OK + code: 200 + duration: 160.420197ms +- id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - bbdb0612-fc95-4815-8109-8285d2d9c8f9 + status: 404 Not Found + code: 404 + duration: 56.100563ms +- id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9cedc526-192d-40cc-a85c-f717f73df5e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"9cedc526-192d-40cc-a85c-f717f73df5e8\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - a8c53f26-6c19-4f3a-9725-45d820a33528 + status: 404 Not Found + code: 404 + duration: 52.153545ms +- id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9cedc526-192d-40cc-a85c-f717f73df5e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"9cedc526-192d-40cc-a85c-f717f73df5e8\", \"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-30T15:58:55.439718Z\", \"updated_at\":\"2025-10-30T15:59:22.073321Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:59:22.073321Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - cd6d4d39-0552-4cbc-9baf-eefd951aea5c + status: 200 OK + code: 200 + duration: 105.765899ms +- id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9cedc526-192d-40cc-a85c-f717f73df5e8 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - 459ef15b-46c1-42fc-9448-0854cfc51dc0 + status: 204 No Content + code: 204 + duration: 183.293733ms +- id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5bc0d871-fd58-43f2-b7a2-c6ab6e797e50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"5bc0d871-fd58-43f2-b7a2-c6ab6e797e50\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - b4b66c3f-5856-446d-b835-b251d06e1555 + status: 404 Not Found + code: 404 + duration: 44.156518ms +- id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c1619b6-27fb-4f4e-9e18-70660d83427a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"4c1619b6-27fb-4f4e-9e18-70660d83427a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:59:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + X-Request-Id: + - a40ce6f2-2fe0-4d40-a0f6-93694cc1675b + status: 404 Not Found + code: 404 + duration: 43.14535ms 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 5365d4330..6a68316bb 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 @@ -1,6934 +1,6765 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 162 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"private_network_instance_servers","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"default_route_propagation_enabled":false}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1102 - uncompressed: false - 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: - - "1102" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4f07dd90-f7f6-47c2-b77c-91d2af923df8 - status: 200 OK - code: 200 - duration: 675.010455ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/37b82d43-c38d-46ff-97ad-4148d47df03b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1102 - uncompressed: false - 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: - - "1102" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5d69d565-c622-42cf-bf29-9a603224657e - status: 200 OK - code: 200 - duration: 24.968626ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a351b629-69b7-4b54-b907-8eed6b1e0bee - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 45.434193ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d25c5515-af3e-47e1-8f8d-206b9c0d2a09 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 65.621419ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b358dcb9-e74b-470c-af06-e1c42c04d763 - status: 200 OK - code: 200 - duration: 53.348621ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 320 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-server-datasource-private-ips-0","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","data_scaleway_instance_servers","private-ips"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1875 - uncompressed: false - 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: - - "1875" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8df84e3a-fec3-4651-abe4-9d4332a8056f - status: 201 Created - code: 201 - duration: 1.003987164s - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1829 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cea1a6d3-54fc-4f58-9080-3fa90b96e2a6 - status: 200 OK - code: 200 - duration: 168.739657ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1829 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 41ce0653-6d64-4dea-825d-35bb8b237e13 - status: 200 OK - code: 200 - duration: 125.745027ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/37b82d43-c38d-46ff-97ad-4148d47df03b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1102 - uncompressed: false - 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: - - "1102" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2c36d1af-70ea-46fb-b983-e60d6046a131 - status: 200 OK - code: 200 - duration: 20.924855ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1875 - uncompressed: false - 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: - - "1875" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 633313ce-9153-4b77-ae32-3fe4fc797a09 - status: 200 OK - code: 200 - duration: 146.994649ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 61 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"private_network_id":"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/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9ba63cf5-52fe-4306-bf0a-dbbf83c32862 - status: 201 Created - code: 201 - duration: 509.00842ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics/01e1075c-dd46-4375-81d4-7cbf5cd5f6cd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 930d9fc6-0a24-4576-ab84-2672b422d590 - status: 200 OK - code: 200 - duration: 136.074311ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics/01e1075c-dd46-4375-81d4-7cbf5cd5f6cd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c2c37c94-630a-473d-a225-70e7819b9caa - status: 200 OK - code: 200 - duration: 108.602965ms - - 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/49c30c05-0a5d-449f-b309-eb84bc089f00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2373 - uncompressed: false - 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: - - "2373" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 17af183a-93da-44f1-bb09-b0c3d2296fe5 - status: 200 OK - code: 200 - duration: 147.874705ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd75f866-a92c-4de9-93ea-485d6356640c - 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": "cd75f866-a92c-4de9-93ea-485d6356640c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3779ab5f-4455-47ab-b0cb-91a616307d54 - status: 404 Not Found - code: 404 - duration: 42.868937ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b0b8c4c9-dd63-4cc6-9038-c1f98793e8a9 - status: 200 OK - code: 200 - duration: 98.869727ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/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:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b742aa33-90cf-450a-9197-b945c4815918 - status: 200 OK - code: 200 - duration: 107.809772ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:50 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3ad64576-6561-4491-a5ef-cd5082cd3b5e - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 91.230643ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8760f696-f906-49a4-a300-e5263351b001 - status: 200 OK - code: 200 - duration: 30.276281ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/37b82d43-c38d-46ff-97ad-4148d47df03b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1102 - uncompressed: false - 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: - - "1102" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9b55c351-222d-486d-a115-7047b1051091 - status: 200 OK - code: 200 - duration: 30.015212ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2333 - uncompressed: false - 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: - - "2333" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9bde54e9-749e-402e-9135-1e9e4838aeec - status: 200 OK - code: 200 - duration: 142.326151ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd75f866-a92c-4de9-93ea-485d6356640c - 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": "cd75f866-a92c-4de9-93ea-485d6356640c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 51068293-f7ab-41d8-9c94-e46111b788c6 - status: 404 Not Found - code: 404 - duration: 27.784582ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd75f866-a92c-4de9-93ea-485d6356640c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2a802bcf-4c2a-4be6-834d-79ba4243420a - status: 200 OK - code: 200 - duration: 93.605002ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/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:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ad6ee5d3-d4db-4601-ad15-306ba525908b - status: 200 OK - code: 200 - duration: 94.479367ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:50 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3327b019-a973-4951-bc2c-56f7358855aa - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 112.307692ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ddc21bff-4158-4a43-a973-8f4b987e86c0 - status: 200 OK - code: 200 - duration: 28.871995ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/37b82d43-c38d-46ff-97ad-4148d47df03b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1102 - uncompressed: false - 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: - - "1102" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1e997e19-256f-4180-8a71-45989467a646 - status: 200 OK - code: 200 - duration: 18.675289ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2333 - uncompressed: false - 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: - - "2333" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 36891955-448f-46a6-80a3-3121842c1a4c - status: 200 OK - code: 200 - duration: 146.535983ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd75f866-a92c-4de9-93ea-485d6356640c - 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": "cd75f866-a92c-4de9-93ea-485d6356640c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4acc46bd-62b7-4bc6-902e-c0dc5db8a8c3 - status: 404 Not Found - code: 404 - duration: 27.143143ms - - 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/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: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e80ab2b4-f781-4aef-8cbc-529934715b58 - status: 200 OK - code: 200 - duration: 86.262103ms - - 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/49c30c05-0a5d-449f-b309-eb84bc089f00/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:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c233ae13-edb1-4296-8b9a-9265896ecefd - status: 200 OK - code: 200 - duration: 84.373773ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:51 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dbca6085-c184-4254-a484-edaea5c10c19 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 102.792402ms - - 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: - 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:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d27dd19f-e179-4cc4-bce0-d417bd24f911 - status: 200 OK - code: 200 - duration: 24.975419ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7622db61-6dc6-4b7b-bccd-12b8c1452a5b - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 48.067417ms - - 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: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a88c0fc8-e563-4019-a31b-3ef9f731807d - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 43.890957ms - - 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: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b2e05558-d7a7-45e1-93e1-eea853692d22 - status: 200 OK - code: 200 - duration: 46.688529ms - - id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 320 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-server-datasource-private-ips-1","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","data_scaleway_instance_servers","private-ips"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1829 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f8f6a152-94d2-4201-841a-c5c2e6f3a30c - status: 201 Created - code: 201 - duration: 1.062198183s - - 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/93f8a173-3d05-474c-a527-0258fb1ad785 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1829 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1960fdd0-5303-4c8f-bf5d-ac2e6da6dca8 - status: 200 OK - code: 200 - duration: 134.476034ms - - 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/93f8a173-3d05-474c-a527-0258fb1ad785 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1829 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dff8fc2b-ee81-43be-a53f-3c02f5dfa76b - status: 200 OK - code: 200 - duration: 151.738322ms - - 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/vpc/v2/regions/fr-par/private-networks/37b82d43-c38d-46ff-97ad-4148d47df03b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1102 - uncompressed: false - 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: - - "1102" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5e9af82a-b68b-4b26-89ea-2c1ea3ba8fdf - status: 200 OK - code: 200 - duration: 22.75077ms - - 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/93f8a173-3d05-474c-a527-0258fb1ad785 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1915 - uncompressed: false - 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: - - "1915" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1618ec00-a1a5-4c02-bff6-b5cb0eea2c2a - status: 200 OK - code: 200 - duration: 154.805827ms - - id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 61 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"private_network_id":"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/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6c0dde0d-5140-4769-8e6d-4e1a4442144d - status: 201 Created - code: 201 - duration: 509.789658ms - - 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/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics/91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 947b9320-5070-4c9e-8f25-b529dd6ba2e3 - status: 200 OK - code: 200 - duration: 109.13946ms - - 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/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics/91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5ed63fda-2de2-4fc7-8afc-7d14c4cc213c - status: 200 OK - code: 200 - duration: 92.960338ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2333 - uncompressed: false - 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: - - "2333" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 98a51a45-16fc-48eb-8930-04a08f1701c2 - status: 200 OK - code: 200 - duration: 135.897021ms - - id: 45 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d1f23dc-8985-4202-9b3a-1bdaccd996c5 - 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": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4d1b5b0e-91dd-4ae8-bfdb-d610d44c2653 - status: 404 Not Found - code: 404 - duration: 29.11537ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/3d1f23dc-8985-4202-9b3a-1bdaccd996c5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ffc707c9-2289-4f38-b429-01b2b94e67ce - status: 200 OK - code: 200 - duration: 89.692178ms - - 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/93f8a173-3d05-474c-a527-0258fb1ad785/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:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c1239c9d-f014-47c8-81c3-cb8da5acb492 - status: 200 OK - code: 200 - duration: 118.613545ms - - 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/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:54 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f150f417-60aa-442c-a657-16b4cd3f9d55 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 109.820764ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2d3f151a-d741-4751-a9ae-6f30bdd1e8d9 - status: 200 OK - code: 200 - duration: 24.21654ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/37b82d43-c38d-46ff-97ad-4148d47df03b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1102 - uncompressed: false - 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: - - "1102" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c7ce5843-d344-4937-96d2-91df575fc5b3 - status: 200 OK - code: 200 - duration: 104.466102ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2287 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2264be53-a1ae-4b81-9df2-56f1ef011efe - status: 200 OK - code: 200 - duration: 126.49927ms - - 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/volumes/3d1f23dc-8985-4202-9b3a-1bdaccd996c5 - 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": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 26ef0efe-7cc7-4232-adab-adfdad3b746c - status: 404 Not Found - code: 404 - duration: 28.535787ms - - 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/49c30c05-0a5d-449f-b309-eb84bc089f00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2333 - uncompressed: false - 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: - - "2333" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d64064f9-b0c6-47ca-acea-168efcccb432 - status: 200 OK - code: 200 - duration: 200.240723ms - - 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/volumes/cd75f866-a92c-4de9-93ea-485d6356640c - 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": "cd75f866-a92c-4de9-93ea-485d6356640c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - daee6d32-3cd9-4197-ae45-a6857d3e3c04 - status: 404 Not Found - code: 404 - duration: 28.079304ms - - id: 55 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d1f23dc-8985-4202-9b3a-1bdaccd996c5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2acfc3e6-40ca-49bb-bf6a-de9b2ffb901a - status: 200 OK - code: 200 - duration: 102.83912ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd75f866-a92c-4de9-93ea-485d6356640c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c0eb2e5f-2be6-4f02-9e92-d5bc03d7209b - status: 200 OK - code: 200 - duration: 68.825601ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/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: - - c0649d1f-dff0-4012-962e-1a55f35f0e8c - status: 200 OK - code: 200 - duration: 90.400942ms - - 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/49c30c05-0a5d-449f-b309-eb84bc089f00/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: - - c65b8384-3b62-4472-9676-8e6a55342070 - status: 200 OK - code: 200 - duration: 82.348115ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: - - cc836b7c-72a9-442f-8224-501dcc030ca9 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 111.591526ms - - 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/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: - - d26c5eba-2645-49f8-b10a-00a83fe49639 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 92.646973ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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: - - cacfdfbd-0f00-4a7a-93ab-de186d908bdb - status: 200 OK - code: 200 - duration: 23.550715ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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: - - 2a5b4b81-b5f1-43b5-9cce-5ee3ee863932 - status: 200 OK - code: 200 - duration: 29.047594ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/37b82d43-c38d-46ff-97ad-4148d47df03b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1102 - uncompressed: false - 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: - - "1102" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5101e835-ea97-4ee6-80b1-05e53710493b - status: 200 OK - code: 200 - duration: 24.838494ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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-2/servers?name=tf-server-datasource-private-ips&order=creation_date_desc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 15 - uncompressed: false - body: '{"servers": []}' - headers: - Content-Length: - - "15" - 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: - - 1ea61073-3f7a-44d7-9044-cbd688908e63 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 150.264376ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2373 - uncompressed: false - 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: - - "2373" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5d1563bb-bf75-4079-b6f3-14bcce68e2ab - status: 200 OK - code: 200 - duration: 136.786404ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2333 - uncompressed: false - 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: - - "2333" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2ace91b1-52ef-4b33-a062-f9de9904ba9d - status: 200 OK - code: 200 - duration: 147.049846ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd75f866-a92c-4de9-93ea-485d6356640c - 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": "cd75f866-a92c-4de9-93ea-485d6356640c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8e17d90b-5434-4215-9a2e-df1e0399f572 - status: 404 Not Found - code: 404 - duration: 28.090825ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d1f23dc-8985-4202-9b3a-1bdaccd996c5 - 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": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8452cc78-25b6-4267-8e54-156dfd9b021c - status: 404 Not Found - code: 404 - duration: 35.22281ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test%2Cprivate-ips - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 4659 - uncompressed: false - 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: - - "4659" - 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: - - fdc436bb-3c6a-4aba-8569-4c1358cfd1a6 - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 217.208299ms - - 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: - 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?name=tf-server-datasource-private-ips&order=creation_date_desc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 4659 - uncompressed: false - 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: - - "4659" - 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: - - 7d948ed7-d26b-4162-80e6-41719871c616 - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 222.395568ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd75f866-a92c-4de9-93ea-485d6356640c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2066ac67-b897-4883-b835-afd8f2b0989b - status: 200 OK - code: 200 - duration: 83.955591ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d1f23dc-8985-4202-9b3a-1bdaccd996c5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 82f61ef9-2a6a-4813-ae36-f1d24ca4e720 - status: 200 OK - code: 200 - duration: 82.584397ms - - 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/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:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c0827d49-ed71-4785-910b-81375c402fc6 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 95.44811ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dbc98223-8bc1-4bb4-a012-f7ed15c34700 - status: 200 OK - code: 200 - duration: 29.203475ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/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:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 733cdf94-0bf3-4dda-9afd-963a5d4fae56 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 132.846959ms - - 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: - 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:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ad48a8de-97bb-4f82-9514-aca07f30c58a - status: 200 OK - code: 200 - duration: 26.198656ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/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:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0efe219d-6ee3-4a2c-9746-ab77589623f1 - status: 200 OK - code: 200 - duration: 115.283729ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/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:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 09e93d71-c081-4a8e-9453-3a5ff1a3a80b - status: 200 OK - code: 200 - duration: 100.133972ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6efec462-983b-40a6-bb42-253061bc0bb8 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 79.350381ms - - 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: - 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:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 194113cd-5543-4d41-87f8-fb1a375598df - status: 200 OK - code: 200 - duration: 25.916188ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 92fd69f5-55a2-49bc-9d2a-0e6c38ef59f9 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 85.288243ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6a05f82c-61de-4379-87e8-b7aea944e8c3 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 108.997866ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7e186b28-309b-437b-a9f8-0658658ff701 - status: 200 OK - code: 200 - duration: 18.158594ms - - 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/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:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 43b1e92a-2dce-4010-b4f1-c835b0cda19a - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 111.896246ms - - 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: - 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:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3cf7d3e8-c45b-4739-8187-2d4d4fff148b - status: 200 OK - code: 200 - duration: 26.8263ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 695c792d-484a-447a-8128-ceaf33b3723e - status: 200 OK - code: 200 - duration: 33.985507ms - - 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: - 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-2/servers?name=tf-server-datasource-private-ips&order=creation_date_desc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 15 - uncompressed: false - body: '{"servers": []}' - headers: - Content-Length: - - "15" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f73744d7-9408-488b-99f2-0c0b22b96ab8 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 131.278817ms - - 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: - 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?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test%2Cprivate-ips - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 4659 - uncompressed: false - 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: - - "4659" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ecd52286-2f48-4587-91e6-2776b42d9c13 - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 184.705115ms - - 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: - 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?name=tf-server-datasource-private-ips&order=creation_date_desc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 4567 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a4a8b249-dae7-4323-a37e-908f11c5da6b - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 189.447302ms - - 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/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:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f657b587-75d9-461b-bdc3-0c9b5bd94bad - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 89.537188ms - - 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:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 71e363bd-ce3e-4fcf-a0e4-46a9c379ba46 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 109.720687ms - - 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: - 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:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - eb951379-068b-42e4-9181-90f605875555 - status: 200 OK - code: 200 - duration: 33.569018ms - - 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: - 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:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 446fc8d0-7b56-42fe-a59d-c8e08ef3c46c - status: 200 OK - code: 200 - duration: 30.249361ms - - 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/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:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cb764cae-c0c8-48e7-94d3-59e501840d86 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 88.514455ms - - 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: - 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:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 39f97688-6864-4c6d-b157-4570b6774fd8 - status: 200 OK - code: 200 - duration: 25.270652ms - - 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/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:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1bd201f3-ebdf-42d4-87ae-983cc83ba7c2 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 100.197891ms - - 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: - 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:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ed195d70-d1ff-4249-8998-ef04e30323ab - status: 200 OK - code: 200 - duration: 60.826845ms - - 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/vpc/v2/regions/fr-par/private-networks/37b82d43-c38d-46ff-97ad-4148d47df03b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1102 - uncompressed: false - 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: - - "1102" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7d010dc7-fcb4-4609-b57d-a819d9d671a1 - status: 200 OK - code: 200 - duration: 41.396414ms - - 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: - 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-2/servers?name=tf-server-datasource-private-ips&order=creation_date_desc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 15 - uncompressed: false - body: '{"servers": []}' - headers: - Content-Length: - - "15" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 65563228-995e-4338-9b52-3c493b8e0fd4 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 139.244803ms - - 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: - 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?name=tf-server-datasource-private-ips&order=creation_date_desc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 4659 - uncompressed: false - 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: - - "4659" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 38920f97-889e-4393-b74b-fd8806259f87 - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 185.303544ms - - 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/93f8a173-3d05-474c-a527-0258fb1ad785 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2333 - uncompressed: false - 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: - - "2333" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a7e193da-4e69-4607-b626-12b649485cf9 - status: 200 OK - code: 200 - duration: 143.861164ms - - 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/49c30c05-0a5d-449f-b309-eb84bc089f00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2287 - uncompressed: false - 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: - - "2287" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f84ad529-5b9a-4a4a-8ae6-20164151da15 - status: 200 OK - code: 200 - duration: 144.673363ms - - 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: - 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?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test%2Cprivate-ips - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 4567 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c2989443-801d-462d-a28d-e42f03d5f460 - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 209.250982ms - - 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/volumes/cd75f866-a92c-4de9-93ea-485d6356640c - 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": "cd75f866-a92c-4de9-93ea-485d6356640c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dfbda5af-f13f-49ec-860a-e122f1a6a26d - status: 404 Not Found - code: 404 - duration: 26.09355ms - - 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/volumes/3d1f23dc-8985-4202-9b3a-1bdaccd996c5 - 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": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 97f8ca1a-f2ca-419e-b461-74471a514762 - status: 404 Not Found - code: 404 - duration: 30.126451ms - - 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/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:57 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6139f753-4b37-4930-b8ed-9193a13ece14 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 110.345296ms - - id: 107 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d1f23dc-8985-4202-9b3a-1bdaccd996c5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3b455cec-c75f-4ff3-bb37-9459e74c81f5 - status: 200 OK - code: 200 - duration: 80.485433ms - - 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: - 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:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - eb0f7289-ac88-425b-8a4d-0cb9d60b157f - status: 200 OK - code: 200 - duration: 24.844325ms - - 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/cd75f866-a92c-4de9-93ea-485d6356640c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 35bc47fd-a870-4869-a657-2a5bcbd40ad2 - status: 200 OK - code: 200 - duration: 118.677416ms - - id: 110 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/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:57 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 73a50d4c-7fbb-4dd7-b387-e34c601b8c52 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 134.145688ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ea35f912-6f41-43d9-81ba-ca3a7d7b6e8d - status: 200 OK - code: 200 - duration: 29.85835ms - - id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/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:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5c5f230a-63ec-4833-98d4-82a6aeebd0c4 - status: 200 OK - code: 200 - duration: 89.826729ms - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:57 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 989224dd-0598-4f57-84e0-d83b70399068 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 84.325453ms - - 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: - 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:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c7e91749-883c-4a5e-9730-b6b7294375ac - status: 200 OK - code: 200 - duration: 32.243179ms - - id: 115 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/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:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e0085d16-727f-41b1-8686-e75f5f14410b - status: 200 OK - code: 200 - duration: 108.658622ms - - id: 116 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:57 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8ccbe249-9bac-4f60-8961-753955d0aca8 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 92.154432ms - - id: 117 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:57 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7ced03b2-a2a4-4361-8e99-3efbe1c26797 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 94.917178ms - - id: 118 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 11b15935-7dea-4770-bb68-c4d9ce3e4709 - status: 200 OK - code: 200 - duration: 31.996969ms - - id: 119 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fab119a3-6291-4944-bab1-55f16485267c - status: 200 OK - code: 200 - duration: 26.280791ms - - id: 120 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:57 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 43b9958c-a7fb-4664-b0cd-32522f52a12b - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 102.228228ms - - id: 121 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4f38a1df-c031-4a1b-945c-b035f409bae3 - status: 200 OK - code: 200 - duration: 27.544884ms - - id: 122 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:57 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b6fbf6a3-8c30-4530-8a6b-b79110e56201 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 104.573273ms - - id: 123 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/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:57 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ae58b8e3-97ab-4df1-a76b-70f754de2c1e - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 107.376124ms - - id: 124 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics/91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4963d0f0-bda4-42af-920f-44cb78eee788 - status: 200 OK - code: 200 - duration: 96.956881ms - - id: 125 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics/01e1075c-dd46-4375-81d4-7cbf5cd5f6cd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 979340b6-7f46-434f-a38e-fad9783ed0a7 - status: 200 OK - code: 200 - duration: 118.350474ms - - id: 126 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics/91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 - 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:53:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 97edc6b4-b0a6-4b00-b568-a7fbd298080a - status: 204 No Content - code: 204 - duration: 351.78768ms - - id: 127 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics/01e1075c-dd46-4375-81d4-7cbf5cd5f6cd - 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:53:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9d1f2820-e93a-4f66-8d13-2ae582709f5d - status: 204 No Content - code: 204 - duration: 338.093765ms - - id: 128 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/private_nics/01e1075c-dd46-4375-81d4-7cbf5cd5f6cd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 148 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 895b05b9-b9eb-4618-af6e-82e778bce814 - status: 404 Not Found - code: 404 - duration: 89.450196ms - - id: 129 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/private_nics/91d96552-e6e6-4eaa-b3e2-e0e51f6fd085 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 148 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 04d59324-42bf-4811-ba16-c452cd6cd130 - status: 404 Not Found - code: 404 - duration: 113.334084ms - - id: 130 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/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: 20 - uncompressed: false - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1b886a25-ccbb-421b-a882-f1ab58d38224 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 107.109907ms - - id: 131 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 20 - uncompressed: false - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 07af61d7-dfa5-40cb-80b5-ab3b83804718 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 107.551903ms - - id: 132 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1829 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3504f140-29d8-4e86-83a8-20bceebbc08b - status: 200 OK - code: 200 - duration: 151.088378ms - - id: 133 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1829 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8de74fc4-6330-4e4d-819f-101795d99515 - status: 200 OK - code: 200 - duration: 145.611979ms - - id: 134 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1875 - uncompressed: false - 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: - - "1875" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 19d276ec-40df-4b61-b57f-60fc2c7aa986 - status: 200 OK - code: 200 - duration: 147.837059ms - - id: 135 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1875 - uncompressed: false - 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: - - "1875" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4276adb1-169a-4424-b6eb-42acb2a00c3e - status: 200 OK - code: 200 - duration: 171.501517ms - - id: 136 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7b9504a7-1047-4739-97d9-7cc24587b620 - status: 200 OK - code: 200 - duration: 105.625511ms - - id: 137 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d1f23dc-8985-4202-9b3a-1bdaccd996c5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 05e28907-9bb3-48fc-a318-4e94edd91baa - status: 200 OK - code: 200 - duration: 79.266986ms - - id: 138 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweron"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:59 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9526dc3a-9d87-42eb-b9be-7a184c9b284c - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cace8e31-7e98-4c43-b592-b9da7e918cf9 - status: 202 Accepted - code: 202 - duration: 250.041162ms - - id: 139 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweron"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:59 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/76ae44dd-98dd-4b36-9cbe-55da342c6f84 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - be3046e4-d8fe-4218-a181-fe8c793adebd - status: 202 Accepted - code: 202 - duration: 275.583011ms - - id: 140 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1897 - uncompressed: false - 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: - - "1897" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f0e069fd-2bc8-4a8f-9be4-25303e395e52 - status: 200 OK - code: 200 - duration: 168.567211ms - - id: 141 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1897 - uncompressed: false - 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: - - "1897" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f9d8a325-d3aa-40e4-ba93-071090237820 - status: 200 OK - code: 200 - duration: 173.716609ms - - id: 142 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2031 - uncompressed: false - 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: - - "2031" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ed5f4c19-bd52-4c57-b057-37c0f3fa416c - status: 200 OK - code: 200 - duration: 133.828729ms - - id: 143 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2031 - uncompressed: false - 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: - - "2031" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b5db1c1e-f6b1-493d-be6f-e3ab08973d54 - status: 200 OK - code: 200 - duration: 154.214757ms - - id: 144 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 22 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"terminate"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4dc57ada-1cba-43f4-b786-84f52e971edd - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 187a45bc-36dc-4482-84b1-b7faff89c216 - status: 202 Accepted - code: 202 - duration: 292.568045ms - - id: 145 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/93f8a173-3d05-474c-a527-0258fb1ad785 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1994 - uncompressed: false - 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: - - "1994" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 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: 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/49c30c05-0a5d-449f-b309-eb84bc089f00/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": "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: - - "353" - Content-Type: - - application/json - Date: - - 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;edge03) - X-Request-Id: - - 45b799ce-8f19-432f-968e-e37faf0b9115 - status: 202 Accepted - code: 202 - duration: 476.336973ms - - 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/49c30c05-0a5d-449f-b309-eb84bc089f00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1948 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f65c1f84-7b9d-493f-b17b-11540db3d875 - status: 200 OK - code: 200 - duration: 142.911633ms - - 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/93f8a173-3d05-474c-a527-0258fb1ad785 - 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": "93f8a173-3d05-474c-a527-0258fb1ad785"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7bfccfe7-8c75-4f65-98d0-973c65ba4d2a - status: 404 Not Found - code: 404 - duration: 40.771697ms - - id: 149 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d1f23dc-8985-4202-9b3a-1bdaccd996c5 - 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": "3d1f23dc-8985-4202-9b3a-1bdaccd996c5"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a2c75224-d762-4ef3-9b28-d4e1ceb2ae10 - status: 404 Not Found - code: 404 - duration: 31.760869ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/3d1f23dc-8985-4202-9b3a-1bdaccd996c5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - 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: - - "494" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - da191094-b0b6-4d09-8054-5942317e3606 - status: 200 OK - code: 200 - duration: 85.35956ms - - id: 151 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49c30c05-0a5d-449f-b309-eb84bc089f00 - 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": "49c30c05-0a5d-449f-b309-eb84bc089f00"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d3959d5f-112c-4cc3-a37e-be800cdf563a - status: 404 Not Found - code: 404 - duration: 53.07894ms - - 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/volumes/cd75f866-a92c-4de9-93ea-485d6356640c - 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": "cd75f866-a92c-4de9-93ea-485d6356640c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 99a0cd67-a90e-4f1e-af9a-81b5672ac1e8 - status: 404 Not Found - code: 404 - duration: 25.484392ms - - 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/cd75f866-a92c-4de9-93ea-485d6356640c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - 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-Length: - - "494" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3c2869bb-bdfd-44cc-82ee-7b43d8e6f082 - status: 200 OK - code: 200 - duration: 89.200533ms - - 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/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: 0 - uncompressed: false - body: "" - headers: - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 38e38f19-0b0f-4330-a8db-89a38825b118 - status: 204 No Content - code: 204 - duration: 180.40398ms - - id: 155 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd75f866-a92c-4de9-93ea-485d6356640c - 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:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 329aaf6c-5096-4746-8145-e1d90e7a0501 - status: 204 No Content - code: 204 - duration: 150.033712ms - - id: 156 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/37b82d43-c38d-46ff-97ad-4148d47df03b - 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:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ee3fb932-6ab2-4cff-9ed2-d0124d9f3876 - status: 204 No Content - code: 204 - duration: 1.223828345s - - 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/49c30c05-0a5d-449f-b309-eb84bc089f00 - 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": "49c30c05-0a5d-449f-b309-eb84bc089f00"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3383d860-559d-468f-96a3-9b1289457146 - status: 404 Not Found - code: 404 - duration: 43.927188ms - - 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/93f8a173-3d05-474c-a527-0258fb1ad785 - 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": "93f8a173-3d05-474c-a527-0258fb1ad785"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1150b08b-d3ce-46d1-8614-27ba24e37d33 - status: 404 Not Found - code: 404 - duration: 47.064384ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 162 + host: api.scaleway.com + body: "{\"name\":\"private_network_instance_servers\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"subnets\":null,\"default_route_propagation_enabled\":false}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1102 + body: "{\"id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"name\":\"private_network_instance_servers\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"subnet\":\"172.17.28.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"vpc_id\":\"8feba4f5-79f9-42cd-b5ce-3ed8c510569e\"}, {\"id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"subnet\":\"fd5f:519c:6d46:fac8::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"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: + - "1102" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7026d336-7c47-417e-bb79-162737efae95 + status: 200 OK + code: 200 + duration: 940.919179ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/9ee7be1c-b91d-491b-a769-3a56e330cd7e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1102 + body: "{\"id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"name\":\"private_network_instance_servers\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"subnet\":\"172.17.28.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"vpc_id\":\"8feba4f5-79f9-42cd-b5ce-3ed8c510569e\"}, {\"id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"subnet\":\"fd5f:519c:6d46:fac8::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"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: + - "1102" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d7b5fec0-3fd1-468e-b835-107d3d72d447 + status: 200 OK + code: 200 + duration: 98.230929ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 083d6c47-96c7-4957-acc4-c6776a863ba0 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 78.019599ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8cf98255-74cd-4dac-aa9f-61c7b3e9ae08 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 39.87312ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 71d2fba2-3697-4d09-b4d1-7a262f2a2174 + status: 200 OK + code: 200 + duration: 45.105383ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 320 + host: api.scaleway.com + body: "{\"name\":\"tf-server-datasource-private-ips-0\",\"dynamic_ip_required\":false,\"commercial_type\":\"DEV1-S\",\"image\":\"8ac1fe52-01dc-4dc1-8578-73ec5d126648\",\"volumes\":{\"0\":{\"boot\":false}},\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[\"terraform-test\",\"data_scaleway_instance_servers\",\"private-ips\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1829 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:41:48.621572+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5fb22cc1-55f1-43ba-92ab-07c50440ef69 + status: 201 Created + code: 201 + duration: 1.693648772s +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1829 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:41:48.621572+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f977fa6e-fd72-40be-8be4-0cd4d9e034c3 + status: 200 OK + code: 200 + duration: 129.490934ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1829 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:41:48.621572+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5d505e0e-e7d3-402a-98ad-715ff6265b26 + status: 200 OK + code: 200 + duration: 146.748103ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/9ee7be1c-b91d-491b-a769-3a56e330cd7e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1102 + body: "{\"id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"name\":\"private_network_instance_servers\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"subnet\":\"172.17.28.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"vpc_id\":\"8feba4f5-79f9-42cd-b5ce-3ed8c510569e\"}, {\"id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"subnet\":\"fd5f:519c:6d46:fac8::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"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: + - "1102" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b6a24f87-ccdd-4df4-b5ba-44687cf06b76 + status: 200 OK + code: 200 + duration: 91.720529ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1829 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:41:48.621572+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - df49fe79-2858-47be-92fa-872eba8bab62 + status: 200 OK + code: 200 + duration: 144.479127ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 61 + host: api.scaleway.com + body: "{\"private_network_id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/private_nics + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 34dcf595-79d3-4ba0-a80d-5f6c50545ac7 + status: 201 Created + code: 201 + duration: 639.226987ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/private_nics/7cd1176c-781f-48f8-8070-7550cfa21de7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e875e209-db7c-48e6-985c-5d565c7308bb + status: 200 OK + code: 200 + duration: 112.657961ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/private_nics/7cd1176c-781f-48f8-8070-7550cfa21de7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b315f7e7-0ccb-4c24-be1e-7cc40b882983 + status: 200 OK + code: 200 + duration: 103.202735ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2287 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:41:48.621572+00:00\", \"bootscript\": null, \"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\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2287" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 91c716ff-37aa-4e33-8fcf-39441977e5af + status: 200 OK + code: 200 + duration: 195.943969ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9fb29cca-a347-4134-a9dd-6db9bf0b9df6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3a0010cd-5a35-4190-9f6d-c7dc0feabb79 + status: 404 Not Found + code: 404 + duration: 28.177913ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9fb29cca-a347-4134-a9dd-6db9bf0b9df6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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-30T15:41:48.775962Z\", \"updated_at\":\"2025-10-30T15:41:48.775962Z\", \"references\":[{\"id\":\"5f76efb9-4772-473f-a030-0f3561bb574b\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"created_at\":\"2025-10-30T15:41:48.775962Z\", \"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: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 61d950ed-9f0d-435c-9b6d-7ca4be60389e + status: 200 OK + code: 200 + duration: 93.744876ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f925bd5a-7444-4ab3-8c3b-c3863b24f138 + status: 200 OK + code: 200 + duration: 116.298339ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 70ec107c-26f5-4b17-a585-f95f2417a545 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 104.05848ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 7cd1176c-781f-48f8-8070-7550cfa21de7 + 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=7cd1176c-781f-48f8-8070-7550cfa21de7&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1098 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"e24ec03b-c81a-408f-b3d5-88e258ec95aa\", \"address\":\"fd5f:519c:6d46:fac8:8a85:b7ff:2703:f8fd/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:50.698833Z\", \"updated_at\":\"2025-10-30T15:41:50.698833Z\", \"source\":{\"subnet_id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"address\":\"172.17.28.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:50.526920Z\", \"updated_at\":\"2025-10-30T15:41:50.526920Z\", \"source\":{\"subnet_id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1098" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e64701a5-80bd-45ad-b50d-79cde426a91c + status: 200 OK + code: 200 + duration: 104.801284ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/9ee7be1c-b91d-491b-a769-3a56e330cd7e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1102 + body: "{\"id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"name\":\"private_network_instance_servers\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"subnet\":\"172.17.28.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"vpc_id\":\"8feba4f5-79f9-42cd-b5ce-3ed8c510569e\"}, {\"id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"subnet\":\"fd5f:519c:6d46:fac8::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"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: + - "1102" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 27e80948-1b3c-45bd-b168-ea7f97db7fe8 + status: 200 OK + code: 200 + duration: 93.235912ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2287 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:41:48.621572+00:00\", \"bootscript\": null, \"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\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2287" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d3f141db-2b78-4855-b57f-81019cf86996 + status: 200 OK + code: 200 + duration: 153.888145ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9fb29cca-a347-4134-a9dd-6db9bf0b9df6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b600efa7-a60f-4403-8b91-3b585f38d952 + status: 404 Not Found + code: 404 + duration: 31.063044ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9fb29cca-a347-4134-a9dd-6db9bf0b9df6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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-30T15:41:48.775962Z\", \"updated_at\":\"2025-10-30T15:41:48.775962Z\", \"references\":[{\"id\":\"5f76efb9-4772-473f-a030-0f3561bb574b\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"created_at\":\"2025-10-30T15:41:48.775962Z\", \"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: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8f621fc5-a408-4887-9f62-2303cc1f6866 + status: 200 OK + code: 200 + duration: 87.468364ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 68b2ce85-9e5a-483f-9685-541284bca63e + status: 200 OK + code: 200 + duration: 106.509027ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5aafd038-6571-4651-9637-74dbd5beeb00 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 95.477386ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 7cd1176c-781f-48f8-8070-7550cfa21de7 + 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=7cd1176c-781f-48f8-8070-7550cfa21de7&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1098 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"e24ec03b-c81a-408f-b3d5-88e258ec95aa\", \"address\":\"fd5f:519c:6d46:fac8:8a85:b7ff:2703:f8fd/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:50.698833Z\", \"updated_at\":\"2025-10-30T15:41:50.698833Z\", \"source\":{\"subnet_id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"address\":\"172.17.28.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:50.526920Z\", \"updated_at\":\"2025-10-30T15:41:50.526920Z\", \"source\":{\"subnet_id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1098" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 77b7e96f-aca5-45ef-9f7f-c15cc868d825 + status: 200 OK + code: 200 + duration: 80.592877ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/9ee7be1c-b91d-491b-a769-3a56e330cd7e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1102 + body: "{\"id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"name\":\"private_network_instance_servers\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"subnet\":\"172.17.28.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"vpc_id\":\"8feba4f5-79f9-42cd-b5ce-3ed8c510569e\"}, {\"id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"subnet\":\"fd5f:519c:6d46:fac8::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"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: + - "1102" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7f1b94b8-07bf-4a28-8979-631a0ff9e878 + status: 200 OK + code: 200 + duration: 37.29264ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2287 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:41:48.621572+00:00\", \"bootscript\": null, \"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\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2287" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3a55a9d6-df92-4668-a634-d5393680c055 + status: 200 OK + code: 200 + duration: 178.911712ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9fb29cca-a347-4134-a9dd-6db9bf0b9df6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c133dece-a469-497b-a58a-ef8142d8800e + status: 404 Not Found + code: 404 + duration: 33.24087ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9fb29cca-a347-4134-a9dd-6db9bf0b9df6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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-30T15:41:48.775962Z\", \"updated_at\":\"2025-10-30T15:41:48.775962Z\", \"references\":[{\"id\":\"5f76efb9-4772-473f-a030-0f3561bb574b\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"created_at\":\"2025-10-30T15:41:48.775962Z\", \"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: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 82d587b6-2bcb-4ca0-812e-b77f9aaa3895 + status: 200 OK + code: 200 + duration: 90.28136ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8dfede63-1fa2-453f-be68-2165c19c003c + status: 200 OK + code: 200 + duration: 119.874267ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3cc41312-1890-4563-800c-9cd1feab3368 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 114.85387ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 7cd1176c-781f-48f8-8070-7550cfa21de7 + 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=7cd1176c-781f-48f8-8070-7550cfa21de7&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1098 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"e24ec03b-c81a-408f-b3d5-88e258ec95aa\", \"address\":\"fd5f:519c:6d46:fac8:8a85:b7ff:2703:f8fd/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:50.698833Z\", \"updated_at\":\"2025-10-30T15:41:50.698833Z\", \"source\":{\"subnet_id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"address\":\"172.17.28.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:50.526920Z\", \"updated_at\":\"2025-10-30T15:41:50.526920Z\", \"source\":{\"subnet_id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1098" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6ed56dd9-e2d2-4cf9-a0d5-8ac338517459 + status: 200 OK + code: 200 + duration: 30.828825ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6df3254d-85e5-424d-810f-fca32224753a + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 76.848013ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 90cc3eff-5d65-4211-a2a6-0d91172416a9 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 45.456031ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2fd05068-e9d3-4e6e-b41e-deff6f8b5008 + status: 200 OK + code: 200 + duration: 45.265193ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 320 + host: api.scaleway.com + body: "{\"name\":\"tf-server-datasource-private-ips-1\",\"dynamic_ip_required\":false,\"commercial_type\":\"DEV1-S\",\"image\":\"8ac1fe52-01dc-4dc1-8578-73ec5d126648\",\"volumes\":{\"0\":{\"boot\":false}},\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[\"terraform-test\",\"data_scaleway_instance_servers\",\"private-ips\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1829 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:41:54.169813+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4ebfe326-7d8b-41c4-b978-0fbafc65f238 + status: 201 Created + code: 201 + duration: 1.119144229s +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1829 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:41:54.169813+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f5512b91-db84-4a3b-a60e-d454b2859567 + status: 200 OK + code: 200 + duration: 162.922121ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1829 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:41:54.169813+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d1f63264-c4e7-42ff-8836-daf790cb420b + status: 200 OK + code: 200 + duration: 171.061258ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/9ee7be1c-b91d-491b-a769-3a56e330cd7e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1102 + body: "{\"id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"name\":\"private_network_instance_servers\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"subnet\":\"172.17.28.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"vpc_id\":\"8feba4f5-79f9-42cd-b5ce-3ed8c510569e\"}, {\"id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"subnet\":\"fd5f:519c:6d46:fac8::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"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: + - "1102" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cc1696ef-b1a9-4025-a4fd-1411602e0b74 + status: 200 OK + code: 200 + duration: 27.860217ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1829 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:41:54.169813+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8fec6a20-46f7-4241-9300-b7d36c5b596b + status: 200 OK + code: 200 + duration: 139.937891ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 61 + host: api.scaleway.com + body: "{\"private_network_id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/private_nics + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f5a32fbb-5480-49e6-8b98-87ce8965597b + status: 201 Created + code: 201 + duration: 550.699524ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/private_nics/d586d311-8ebc-445b-bd26-7adc619f50f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e575ac74-96a7-4483-8d0d-583a0ba2ed8e + status: 200 OK + code: 200 + duration: 90.789693ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/private_nics/d586d311-8ebc-445b-bd26-7adc619f50f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a0ef871c-e13f-4596-8c86-a8e8096d79b8 + status: 200 OK + code: 200 + duration: 113.184319ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2287 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:41:54.169813+00:00\", \"bootscript\": null, \"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\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2287" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 18163dcf-0b76-404e-8cc7-52188dd57ad2 + status: 200 OK + code: 200 + duration: 138.651038ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/503e151b-a23d-495d-b211-3098ff5a46b7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"503e151b-a23d-495d-b211-3098ff5a46b7\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5efc151a-2cc5-4109-9b8f-5fe9c10ee223 + status: 404 Not Found + code: 404 + duration: 26.588432ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/503e151b-a23d-495d-b211-3098ff5a46b7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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-30T15:41:54.305533Z\", \"updated_at\":\"2025-10-30T15:41:54.305533Z\", \"references\":[{\"id\":\"fab46de9-ac58-489f-bb2f-212604042640\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"created_at\":\"2025-10-30T15:41:54.305533Z\", \"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: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6dd32860-4e0e-4053-80d8-a08e4a93fae3 + status: 200 OK + code: 200 + duration: 89.569455ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f4c74fb1-e814-498e-bac8-2a6dd06f09dd + status: 200 OK + code: 200 + duration: 113.685088ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1bfc0226-e9bd-4fa2-ad30-1582044e60da + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 111.325492ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - d586d311-8ebc-445b-bd26-7adc619f50f9 + 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=d586d311-8ebc-445b-bd26-7adc619f50f9&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1097 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"94bda89b-3ca4-4808-82c2-03a17cc98272\", \"address\":\"fd5f:519c:6d46:fac8:1567:9495:71d2:a01/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.626923Z\", \"updated_at\":\"2025-10-30T15:41:55.626923Z\", \"source\":{\"subnet_id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"mac_address\":\"02:00:00:14:A0:25\", \"name\":\"tf-server-datasource-private-ips-1\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"address\":\"172.17.28.3/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.501576Z\", \"updated_at\":\"2025-10-30T15:41:55.501576Z\", \"source\":{\"subnet_id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"mac_address\":\"02:00:00:14:A0:25\", \"name\":\"tf-server-datasource-private-ips-1\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1097" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - deae8836-c42a-414a-82ac-4474c028d37f + status: 200 OK + code: 200 + duration: 29.385839ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/9ee7be1c-b91d-491b-a769-3a56e330cd7e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1102 + body: "{\"id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"name\":\"private_network_instance_servers\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"subnet\":\"172.17.28.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"vpc_id\":\"8feba4f5-79f9-42cd-b5ce-3ed8c510569e\"}, {\"id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"subnet\":\"fd5f:519c:6d46:fac8::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"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: + - "1102" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dade38b8-f92c-44c0-92fe-c8ff626de743 + status: 200 OK + code: 200 + duration: 80.263771ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2333 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:41:48.621572+00:00\", \"bootscript\": null, \"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\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2333" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4147f221-298e-4dc0-804c-40fcd0ff80f8 + status: 200 OK + code: 200 + duration: 154.287176ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2287 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:41:54.169813+00:00\", \"bootscript\": null, \"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\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2287" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4d3fddaa-eecc-421c-aed8-40516a4d4e9e + status: 200 OK + code: 200 + duration: 162.564832ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9fb29cca-a347-4134-a9dd-6db9bf0b9df6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ab42c135-2570-47ab-b381-a695b55056c8 + status: 404 Not Found + code: 404 + duration: 31.203378ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/503e151b-a23d-495d-b211-3098ff5a46b7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"503e151b-a23d-495d-b211-3098ff5a46b7\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9ae7529f-9bce-470a-92c7-aa9ac5b4ec98 + status: 404 Not Found + code: 404 + duration: 24.558504ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9fb29cca-a347-4134-a9dd-6db9bf0b9df6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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-30T15:41:48.775962Z\", \"updated_at\":\"2025-10-30T15:41:48.775962Z\", \"references\":[{\"id\":\"5f76efb9-4772-473f-a030-0f3561bb574b\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"created_at\":\"2025-10-30T15:41:48.775962Z\", \"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: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 61e2b6d9-d009-4373-afc7-4e0f1a28558a + status: 200 OK + code: 200 + duration: 86.283932ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/503e151b-a23d-495d-b211-3098ff5a46b7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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-30T15:41:54.305533Z\", \"updated_at\":\"2025-10-30T15:41:54.305533Z\", \"references\":[{\"id\":\"fab46de9-ac58-489f-bb2f-212604042640\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"created_at\":\"2025-10-30T15:41:54.305533Z\", \"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: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9533c0b1-e180-4440-8e3b-098ddb330aed + status: 200 OK + code: 200 + duration: 89.781983ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - de2fc095-527a-4b49-97a0-4f7770929892 + status: 200 OK + code: 200 + duration: 91.003796ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:57 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4f794c6a-21fc-40fe-bf3f-0a23e90884f8 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 132.087246ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - d586d311-8ebc-445b-bd26-7adc619f50f9 + 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=d586d311-8ebc-445b-bd26-7adc619f50f9&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1097 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"94bda89b-3ca4-4808-82c2-03a17cc98272\", \"address\":\"fd5f:519c:6d46:fac8:1567:9495:71d2:a01/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.626923Z\", \"updated_at\":\"2025-10-30T15:41:55.626923Z\", \"source\":{\"subnet_id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"mac_address\":\"02:00:00:14:A0:25\", \"name\":\"tf-server-datasource-private-ips-1\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"address\":\"172.17.28.3/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.501576Z\", \"updated_at\":\"2025-10-30T15:41:55.501576Z\", \"source\":{\"subnet_id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"mac_address\":\"02:00:00:14:A0:25\", \"name\":\"tf-server-datasource-private-ips-1\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1097" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e150fd11-0944-4007-acc9-4a5ac75018eb + status: 200 OK + code: 200 + duration: 26.865211ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e8af9476-4cd7-42eb-b47a-b0be0376e885 + status: 200 OK + code: 200 + duration: 1.163898793s +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 177a99df-471a-4d08-8c53-ccd5809e6803 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 110.957343ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 7cd1176c-781f-48f8-8070-7550cfa21de7 + 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=7cd1176c-781f-48f8-8070-7550cfa21de7&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1098 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"e24ec03b-c81a-408f-b3d5-88e258ec95aa\", \"address\":\"fd5f:519c:6d46:fac8:8a85:b7ff:2703:f8fd/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:50.698833Z\", \"updated_at\":\"2025-10-30T15:41:50.698833Z\", \"source\":{\"subnet_id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"address\":\"172.17.28.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:50.526920Z\", \"updated_at\":\"2025-10-30T15:41:50.526920Z\", \"source\":{\"subnet_id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1098" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b2f5abb6-9f63-4fde-8f86-a219d9ca6a3f + status: 200 OK + code: 200 + duration: 37.738045ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/9ee7be1c-b91d-491b-a769-3a56e330cd7e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1102 + body: "{\"id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"name\":\"private_network_instance_servers\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"subnet\":\"172.17.28.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"vpc_id\":\"8feba4f5-79f9-42cd-b5ce-3ed8c510569e\"}, {\"id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"subnet\":\"fd5f:519c:6d46:fac8::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"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: + - "1102" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 314775ff-85f7-4569-b3ec-69bfe71b4e2a + status: 200 OK + code: 200 + duration: 27.884232ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-2/servers?name=tf-server-datasource-private-ips&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 15 + body: "{\"servers\": []}" + headers: + Content-Length: + - "15" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5d7c399d-0751-44cc-9000-f95d4a00c586 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 142.321773ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2333 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:41:54.169813+00:00\", \"bootscript\": null, \"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\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2333" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 928e31f7-d5a9-4e91-a044-86ec1fc09082 + status: 200 OK + code: 200 + duration: 140.083515ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2287 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:41:48.621572+00:00\", \"bootscript\": null, \"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\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2287" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 497fd710-4a09-473a-a32d-394a06f77f16 + status: 200 OK + code: 200 + duration: 145.265004ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/503e151b-a23d-495d-b211-3098ff5a46b7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"503e151b-a23d-495d-b211-3098ff5a46b7\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9df5125d-8ffa-444f-8c94-bc7fcb7f67a8 + status: 404 Not Found + code: 404 + duration: 25.472199ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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?name=tf-server-datasource-private-ips&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 4567 + body: "{\"servers\": [{\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:41:54.169813+00:00\", \"bootscript\": null, \"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\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}, {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:41:48.621572+00:00\", \"bootscript\": null, \"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\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}]}" + headers: + Content-Length: + - "4567" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 44c44147-e825-4155-8f1e-c949a100906d + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 209.466116ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9fb29cca-a347-4134-a9dd-6db9bf0b9df6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 474e2836-477f-4eaf-ba86-040ede509118 + status: 404 Not Found + code: 404 + duration: 33.971501ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test%2Cprivate-ips + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 4567 + body: "{\"servers\": [{\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:41:54.169813+00:00\", \"bootscript\": null, \"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\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}, {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:41:48.621572+00:00\", \"bootscript\": null, \"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\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}]}" + headers: + Content-Length: + - "4567" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 60fed8ee-badb-4199-b489-9d424bd3054b + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 252.719897ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/503e151b-a23d-495d-b211-3098ff5a46b7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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-30T15:41:54.305533Z\", \"updated_at\":\"2025-10-30T15:41:54.305533Z\", \"references\":[{\"id\":\"fab46de9-ac58-489f-bb2f-212604042640\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"created_at\":\"2025-10-30T15:41:54.305533Z\", \"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: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a47f6c00-855e-43d2-941c-06f3836aaf58 + status: 200 OK + code: 200 + duration: 81.215516ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8308a4b4-11d5-4cdc-a0d9-725e9ed40328 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 98.054681ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9fb29cca-a347-4134-a9dd-6db9bf0b9df6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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-30T15:41:48.775962Z\", \"updated_at\":\"2025-10-30T15:41:48.775962Z\", \"references\":[{\"id\":\"5f76efb9-4772-473f-a030-0f3561bb574b\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"created_at\":\"2025-10-30T15:41:48.775962Z\", \"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: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 80bc66a5-cb00-43fb-aa2f-6e45e282ace1 + status: 200 OK + code: 200 + duration: 93.360216ms +- id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - d586d311-8ebc-445b-bd26-7adc619f50f9 + 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=d586d311-8ebc-445b-bd26-7adc619f50f9&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1097 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"94bda89b-3ca4-4808-82c2-03a17cc98272\", \"address\":\"fd5f:519c:6d46:fac8:1567:9495:71d2:a01/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.626923Z\", \"updated_at\":\"2025-10-30T15:41:55.626923Z\", \"source\":{\"subnet_id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"mac_address\":\"02:00:00:14:A0:25\", \"name\":\"tf-server-datasource-private-ips-1\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"address\":\"172.17.28.3/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.501576Z\", \"updated_at\":\"2025-10-30T15:41:55.501576Z\", \"source\":{\"subnet_id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"mac_address\":\"02:00:00:14:A0:25\", \"name\":\"tf-server-datasource-private-ips-1\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1097" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 607709a7-026a-451c-9c93-ffeddd6b2555 + status: 200 OK + code: 200 + duration: 23.920898ms +- id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c0ec5c07-e4d7-4241-8a46-bd06c0a0b4ae + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 101.547243ms +- id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a526b84c-5d0e-4d95-9ddd-58f864ad1b49 + status: 200 OK + code: 200 + duration: 98.863118ms +- id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 690bde82-aabd-47d8-bd9d-bcc6584864f1 + status: 200 OK + code: 200 + duration: 84.886361ms +- id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - d586d311-8ebc-445b-bd26-7adc619f50f9 + 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=d586d311-8ebc-445b-bd26-7adc619f50f9&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1097 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"94bda89b-3ca4-4808-82c2-03a17cc98272\", \"address\":\"fd5f:519c:6d46:fac8:1567:9495:71d2:a01/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.626923Z\", \"updated_at\":\"2025-10-30T15:41:55.626923Z\", \"source\":{\"subnet_id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"mac_address\":\"02:00:00:14:A0:25\", \"name\":\"tf-server-datasource-private-ips-1\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"address\":\"172.17.28.3/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.501576Z\", \"updated_at\":\"2025-10-30T15:41:55.501576Z\", \"source\":{\"subnet_id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"mac_address\":\"02:00:00:14:A0:25\", \"name\":\"tf-server-datasource-private-ips-1\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1097" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - be31c203-e60d-40e3-94ed-57c29e1e2fd8 + status: 200 OK + code: 200 + duration: 91.446696ms +- id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 55366356-7814-4a48-82a3-b984a32e277d + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 134.676102ms +- id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 84b0bd67-9405-4bc5-b90b-f4d471d79ed0 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 91.321883ms +- id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c9817e77-f304-4f35-996d-bbc85a308a96 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 111.186633ms +- id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - d586d311-8ebc-445b-bd26-7adc619f50f9 + 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=d586d311-8ebc-445b-bd26-7adc619f50f9&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1097 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"94bda89b-3ca4-4808-82c2-03a17cc98272\", \"address\":\"fd5f:519c:6d46:fac8:1567:9495:71d2:a01/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.626923Z\", \"updated_at\":\"2025-10-30T15:41:55.626923Z\", \"source\":{\"subnet_id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"mac_address\":\"02:00:00:14:A0:25\", \"name\":\"tf-server-datasource-private-ips-1\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"address\":\"172.17.28.3/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.501576Z\", \"updated_at\":\"2025-10-30T15:41:55.501576Z\", \"source\":{\"subnet_id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"mac_address\":\"02:00:00:14:A0:25\", \"name\":\"tf-server-datasource-private-ips-1\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1097" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6d4c77ad-9198-49b9-b2ab-0f9a0346f84f + status: 200 OK + code: 200 + duration: 34.286592ms +- id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 7cd1176c-781f-48f8-8070-7550cfa21de7 + 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=7cd1176c-781f-48f8-8070-7550cfa21de7&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1098 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"e24ec03b-c81a-408f-b3d5-88e258ec95aa\", \"address\":\"fd5f:519c:6d46:fac8:8a85:b7ff:2703:f8fd/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:50.698833Z\", \"updated_at\":\"2025-10-30T15:41:50.698833Z\", \"source\":{\"subnet_id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"address\":\"172.17.28.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:50.526920Z\", \"updated_at\":\"2025-10-30T15:41:50.526920Z\", \"source\":{\"subnet_id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1098" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f970d6aa-8489-450a-b3cf-f569773809fd + status: 200 OK + code: 200 + duration: 27.699256ms +- id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d1508e09-1f01-4752-a37c-ea2beb9cab35 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 103.873997ms +- id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 7cd1176c-781f-48f8-8070-7550cfa21de7 + 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=7cd1176c-781f-48f8-8070-7550cfa21de7&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1098 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"e24ec03b-c81a-408f-b3d5-88e258ec95aa\", \"address\":\"fd5f:519c:6d46:fac8:8a85:b7ff:2703:f8fd/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:50.698833Z\", \"updated_at\":\"2025-10-30T15:41:50.698833Z\", \"source\":{\"subnet_id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"address\":\"172.17.28.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:50.526920Z\", \"updated_at\":\"2025-10-30T15:41:50.526920Z\", \"source\":{\"subnet_id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1098" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b22d471e-f437-425f-b9a4-29c9dcf5e491 + status: 200 OK + code: 200 + duration: 90.014811ms +- id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 7cd1176c-781f-48f8-8070-7550cfa21de7 + 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=7cd1176c-781f-48f8-8070-7550cfa21de7&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1098 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"e24ec03b-c81a-408f-b3d5-88e258ec95aa\", \"address\":\"fd5f:519c:6d46:fac8:8a85:b7ff:2703:f8fd/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:50.698833Z\", \"updated_at\":\"2025-10-30T15:41:50.698833Z\", \"source\":{\"subnet_id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"address\":\"172.17.28.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:50.526920Z\", \"updated_at\":\"2025-10-30T15:41:50.526920Z\", \"source\":{\"subnet_id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1098" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ce96a7cb-db6c-4502-9fbb-32df4442fc32 + status: 200 OK + code: 200 + duration: 101.243573ms +- id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-2/servers?name=tf-server-datasource-private-ips&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 15 + body: "{\"servers\": []}" + headers: + Content-Length: + - "15" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c2f1f468-16d5-4d65-8d26-34c35c9ae753 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 117.485158ms +- id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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?name=tf-server-datasource-private-ips&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 4659 + body: "{\"servers\": [{\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:41:54.169813+00:00\", \"bootscript\": null, \"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\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}, {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:41:48.621572+00:00\", \"bootscript\": null, \"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\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}]}" + headers: + Content-Length: + - "4659" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f859fd24-121e-4098-9a28-24117897d410 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 244.091153ms +- id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test%2Cprivate-ips + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 4567 + body: "{\"servers\": [{\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:41:54.169813+00:00\", \"bootscript\": null, \"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\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}, {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:41:48.621572+00:00\", \"bootscript\": null, \"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\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}]}" + headers: + Content-Length: + - "4567" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aa433db3-5cfb-4b1c-8d9b-c290fe10eb1d + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 273.989593ms +- id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a1e344be-c2f9-4d55-971b-f95601b6572b + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 90.12067ms +- id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - d586d311-8ebc-445b-bd26-7adc619f50f9 + 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=d586d311-8ebc-445b-bd26-7adc619f50f9&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1097 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"94bda89b-3ca4-4808-82c2-03a17cc98272\", \"address\":\"fd5f:519c:6d46:fac8:1567:9495:71d2:a01/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.626923Z\", \"updated_at\":\"2025-10-30T15:41:55.626923Z\", \"source\":{\"subnet_id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"mac_address\":\"02:00:00:14:A0:25\", \"name\":\"tf-server-datasource-private-ips-1\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"address\":\"172.17.28.3/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.501576Z\", \"updated_at\":\"2025-10-30T15:41:55.501576Z\", \"source\":{\"subnet_id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"mac_address\":\"02:00:00:14:A0:25\", \"name\":\"tf-server-datasource-private-ips-1\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1097" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 611c5ef4-d8d8-4ee4-b30f-b355d53d68b6 + status: 200 OK + code: 200 + duration: 30.505228ms +- id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 88c83ab1-b86b-488a-b20a-cea2079bc1aa + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 107.733726ms +- id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - d586d311-8ebc-445b-bd26-7adc619f50f9 + 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=d586d311-8ebc-445b-bd26-7adc619f50f9&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1097 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"94bda89b-3ca4-4808-82c2-03a17cc98272\", \"address\":\"fd5f:519c:6d46:fac8:1567:9495:71d2:a01/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.626923Z\", \"updated_at\":\"2025-10-30T15:41:55.626923Z\", \"source\":{\"subnet_id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"mac_address\":\"02:00:00:14:A0:25\", \"name\":\"tf-server-datasource-private-ips-1\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"address\":\"172.17.28.3/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.501576Z\", \"updated_at\":\"2025-10-30T15:41:55.501576Z\", \"source\":{\"subnet_id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"mac_address\":\"02:00:00:14:A0:25\", \"name\":\"tf-server-datasource-private-ips-1\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1097" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - babe772c-44ae-4ae4-86cc-2c2e6416be2c + status: 200 OK + code: 200 + duration: 25.106081ms +- id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 111174e5-da76-4e79-a589-27ea512fcf0e + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 125.546228ms +- id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e566f22b-ab04-4591-a5e9-971321433dbe + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 102.264928ms +- id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 7cd1176c-781f-48f8-8070-7550cfa21de7 + 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=7cd1176c-781f-48f8-8070-7550cfa21de7&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1098 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"e24ec03b-c81a-408f-b3d5-88e258ec95aa\", \"address\":\"fd5f:519c:6d46:fac8:8a85:b7ff:2703:f8fd/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:50.698833Z\", \"updated_at\":\"2025-10-30T15:41:50.698833Z\", \"source\":{\"subnet_id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"address\":\"172.17.28.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:50.526920Z\", \"updated_at\":\"2025-10-30T15:41:50.526920Z\", \"source\":{\"subnet_id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1098" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8a35e8d5-192c-4af5-9d9e-78ff3aafc731 + status: 200 OK + code: 200 + duration: 25.564451ms +- id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 7cd1176c-781f-48f8-8070-7550cfa21de7 + 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=7cd1176c-781f-48f8-8070-7550cfa21de7&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1098 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"e24ec03b-c81a-408f-b3d5-88e258ec95aa\", \"address\":\"fd5f:519c:6d46:fac8:8a85:b7ff:2703:f8fd/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:50.698833Z\", \"updated_at\":\"2025-10-30T15:41:50.698833Z\", \"source\":{\"subnet_id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"address\":\"172.17.28.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:50.526920Z\", \"updated_at\":\"2025-10-30T15:41:50.526920Z\", \"source\":{\"subnet_id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1098" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a78d7751-f688-4058-a909-b708f0146cbd + status: 200 OK + code: 200 + duration: 96.85423ms +- id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/9ee7be1c-b91d-491b-a769-3a56e330cd7e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1102 + body: "{\"id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"name\":\"private_network_instance_servers\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"subnet\":\"172.17.28.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"vpc_id\":\"8feba4f5-79f9-42cd-b5ce-3ed8c510569e\"}, {\"id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\", \"created_at\":\"2025-10-30T15:41:46.812530Z\", \"updated_at\":\"2025-10-30T15:41:46.812530Z\", \"subnet\":\"fd5f:519c:6d46:fac8::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"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: + - "1102" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d459f479-e7fe-4c31-a694-9d90929193ca + status: 200 OK + code: 200 + duration: 41.439348ms +- id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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-2/servers?name=tf-server-datasource-private-ips&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 15 + body: "{\"servers\": []}" + headers: + Content-Length: + - "15" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8b4d12f9-0ed2-4d0c-a443-3144e5ef6618 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 157.324855ms +- id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2287 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:41:54.169813+00:00\", \"bootscript\": null, \"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\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2287" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e4eddf28-ecc4-4e52-ac74-4041d6fcbfb9 + status: 200 OK + code: 200 + duration: 132.361151ms +- id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2287 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:41:48.621572+00:00\", \"bootscript\": null, \"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\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2287" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0563d460-1b89-4890-b454-553625ec30bf + status: 200 OK + code: 200 + duration: 148.617002ms +- id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/503e151b-a23d-495d-b211-3098ff5a46b7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"503e151b-a23d-495d-b211-3098ff5a46b7\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a3b9f405-1219-4b29-8ec2-0f75ae4c139f + status: 404 Not Found + code: 404 + duration: 32.757042ms +- id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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?name=tf-server-datasource-private-ips&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 4567 + body: "{\"servers\": [{\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:41:54.169813+00:00\", \"bootscript\": null, \"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\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}, {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:41:48.621572+00:00\", \"bootscript\": null, \"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\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}]}" + headers: + Content-Length: + - "4567" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7f63c17a-097e-49ad-a337-6427bf13d967 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 225.441872ms +- id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9fb29cca-a347-4134-a9dd-6db9bf0b9df6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 70c2374c-1f00-4a20-8c9d-61e40843fa01 + status: 404 Not Found + code: 404 + duration: 27.09398ms +- id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test%2Cprivate-ips + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 4659 + body: "{\"servers\": [{\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:41:54.169813+00:00\", \"bootscript\": null, \"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\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}, {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:41:48.621572+00:00\", \"bootscript\": null, \"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\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}]}" + headers: + Content-Length: + - "4659" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 77cc85d1-ae71-4200-a35b-0a2fc7936e04 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 235.125556ms +- id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/503e151b-a23d-495d-b211-3098ff5a46b7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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-30T15:41:54.305533Z\", \"updated_at\":\"2025-10-30T15:41:54.305533Z\", \"references\":[{\"id\":\"fab46de9-ac58-489f-bb2f-212604042640\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"created_at\":\"2025-10-30T15:41:54.305533Z\", \"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: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 78c69b76-7f45-4c0b-93e0-eb19b3e47c17 + status: 200 OK + code: 200 + duration: 104.739611ms +- id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9fb29cca-a347-4134-a9dd-6db9bf0b9df6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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-30T15:41:48.775962Z\", \"updated_at\":\"2025-10-30T15:41:48.775962Z\", \"references\":[{\"id\":\"5f76efb9-4772-473f-a030-0f3561bb574b\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"created_at\":\"2025-10-30T15:41:48.775962Z\", \"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: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b92fded8-5900-443b-80e3-138b07344edf + status: 200 OK + code: 200 + duration: 94.816959ms +- id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 11a9ba0a-455c-4c9d-b457-8d3206775ae1 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 99.713994ms +- id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 86400c6d-eae4-4922-b329-e408a8428ad7 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 118.214075ms +- id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - d586d311-8ebc-445b-bd26-7adc619f50f9 + 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=d586d311-8ebc-445b-bd26-7adc619f50f9&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1097 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"94bda89b-3ca4-4808-82c2-03a17cc98272\", \"address\":\"fd5f:519c:6d46:fac8:1567:9495:71d2:a01/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.626923Z\", \"updated_at\":\"2025-10-30T15:41:55.626923Z\", \"source\":{\"subnet_id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"mac_address\":\"02:00:00:14:A0:25\", \"name\":\"tf-server-datasource-private-ips-1\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"address\":\"172.17.28.3/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.501576Z\", \"updated_at\":\"2025-10-30T15:41:55.501576Z\", \"source\":{\"subnet_id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"mac_address\":\"02:00:00:14:A0:25\", \"name\":\"tf-server-datasource-private-ips-1\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1097" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 737c7b75-059f-453e-a89f-bff92f0d0dd1 + status: 200 OK + code: 200 + duration: 27.954765ms +- id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - d586d311-8ebc-445b-bd26-7adc619f50f9 + 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=d586d311-8ebc-445b-bd26-7adc619f50f9&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1097 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"94bda89b-3ca4-4808-82c2-03a17cc98272\", \"address\":\"fd5f:519c:6d46:fac8:1567:9495:71d2:a01/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.626923Z\", \"updated_at\":\"2025-10-30T15:41:55.626923Z\", \"source\":{\"subnet_id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"mac_address\":\"02:00:00:14:A0:25\", \"name\":\"tf-server-datasource-private-ips-1\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"address\":\"172.17.28.3/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.501576Z\", \"updated_at\":\"2025-10-30T15:41:55.501576Z\", \"source\":{\"subnet_id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"mac_address\":\"02:00:00:14:A0:25\", \"name\":\"tf-server-datasource-private-ips-1\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1097" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a9e5ce55-8579-4c71-8c7b-283aa309bfaa + status: 200 OK + code: 200 + duration: 19.128109ms +- id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3abb62f1-4784-461b-a88f-2a7f923f4d64 + status: 200 OK + code: 200 + duration: 103.412752ms +- id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eab2de8b-a831-438d-b639-b88f7b31bbda + status: 200 OK + code: 200 + duration: 116.994177ms +- id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f54a93df-166c-4972-bf08-51d25a6c4009 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 109.491935ms +- id: 115 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4d119913-f147-486c-9653-85b30e7163e3 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 108.061942ms +- id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 7cd1176c-781f-48f8-8070-7550cfa21de7 + 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=7cd1176c-781f-48f8-8070-7550cfa21de7&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1098 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"e24ec03b-c81a-408f-b3d5-88e258ec95aa\", \"address\":\"fd5f:519c:6d46:fac8:8a85:b7ff:2703:f8fd/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:50.698833Z\", \"updated_at\":\"2025-10-30T15:41:50.698833Z\", \"source\":{\"subnet_id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"address\":\"172.17.28.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:50.526920Z\", \"updated_at\":\"2025-10-30T15:41:50.526920Z\", \"source\":{\"subnet_id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1098" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 85b46fb9-c283-4bc2-9531-0fc730f63a06 + status: 200 OK + code: 200 + duration: 22.091407ms +- id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 7cd1176c-781f-48f8-8070-7550cfa21de7 + 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=7cd1176c-781f-48f8-8070-7550cfa21de7&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1098 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"e24ec03b-c81a-408f-b3d5-88e258ec95aa\", \"address\":\"fd5f:519c:6d46:fac8:8a85:b7ff:2703:f8fd/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:50.698833Z\", \"updated_at\":\"2025-10-30T15:41:50.698833Z\", \"source\":{\"subnet_id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"address\":\"172.17.28.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:50.526920Z\", \"updated_at\":\"2025-10-30T15:41:50.526920Z\", \"source\":{\"subnet_id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1098" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4a6acf4b-a134-4fd2-ba5e-54f35a864ebc + status: 200 OK + code: 200 + duration: 31.115373ms +- id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8cfc2813-7637-47aa-aa97-b4470cf8acaf + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 107.438493ms +- id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5f4f38e1-3103-4daf-8131-015df18e5291 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 101.934479ms +- id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - d586d311-8ebc-445b-bd26-7adc619f50f9 + 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=d586d311-8ebc-445b-bd26-7adc619f50f9&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1097 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"94bda89b-3ca4-4808-82c2-03a17cc98272\", \"address\":\"fd5f:519c:6d46:fac8:1567:9495:71d2:a01/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:55.626923Z\", \"updated_at\":\"2025-10-30T15:41:55.626923Z\", \"source\":{\"subnet_id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"mac_address\":\"02:00:00:14:A0:25\", \"name\":\"tf-server-datasource-private-ips-1\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"address\":\"172.17.28.3/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:55.501576Z\", \"updated_at\":\"2025-10-30T15:41:55.501576Z\", \"source\":{\"subnet_id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"mac_address\":\"02:00:00:14:A0:25\", \"name\":\"tf-server-datasource-private-ips-1\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1097" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7037b165-bfcb-4ad8-9c07-726e8e5ba86a + status: 200 OK + code: 200 + duration: 19.392945ms +- id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 7cd1176c-781f-48f8-8070-7550cfa21de7 + 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=7cd1176c-781f-48f8-8070-7550cfa21de7&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1098 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"e24ec03b-c81a-408f-b3d5-88e258ec95aa\", \"address\":\"fd5f:519c:6d46:fac8:8a85:b7ff:2703:f8fd/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:50.698833Z\", \"updated_at\":\"2025-10-30T15:41:50.698833Z\", \"source\":{\"subnet_id\":\"1c04d107-0ca6-4a22-b4dd-5fd31c82abc7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"address\":\"172.17.28.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:50.526920Z\", \"updated_at\":\"2025-10-30T15:41:50.526920Z\", \"source\":{\"subnet_id\":\"87da5d0f-0d76-48a0-97a8-1f3f24ae5742\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"mac_address\":\"02:00:00:16:8B:A0\", \"name\":\"tf-server-datasource-private-ips-0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1098" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f29e8c2f-4f09-4bd8-82e2-ef6f9c810add + status: 200 OK + code: 200 + duration: 27.746834ms +- id: 122 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c3f3b08e-36b6-4b95-965b-1af39159c778 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 116.890202ms +- id: 123 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 65ed9567-4648-4ae5-bb90-86134df9cd3e + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 125.460888ms +- id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/private_nics/d586d311-8ebc-445b-bd26-7adc619f50f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"mac_address\": \"02:00:00:14:a0:25\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:55.193187+00:00\", \"modification_date\": \"2025-10-30T15:41:55.430573+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"9a4e4a84-2433-4dca-a900-9e6b0003f031\", \"94bda89b-3ca4-4808-82c2-03a17cc98272\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 725f604d-aea5-431f-a501-5e6e09084e7d + status: 200 OK + code: 200 + duration: 95.99592ms +- id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/private_nics/7cd1176c-781f-48f8-8070-7550cfa21de7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\", \"private_network_id\": \"9ee7be1c-b91d-491b-a769-3a56e330cd7e\", \"server_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"mac_address\": \"02:00:00:16:8b:a0\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:50.156714+00:00\", \"modification_date\": \"2025-10-30T15:41:50.404907+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"db6e7230-4564-4676-b99f-0cb6f38f8319\", \"e24ec03b-c81a-408f-b3d5-88e258ec95aa\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a045060a-9743-4fb9-8235-731a646c9e0a + status: 200 OK + code: 200 + duration: 116.892787ms +- id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/private_nics/7cd1176c-781f-48f8-8070-7550cfa21de7 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 38e32dff-98e3-4cad-bc43-989db3b9aac8 + status: 204 No Content + code: 204 + duration: 328.325292ms +- id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/private_nics/d586d311-8ebc-445b-bd26-7adc619f50f9 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8e7d3e8b-7348-4bf1-ada9-34a0c0bc2f90 + status: 204 No Content + code: 204 + duration: 361.668945ms +- id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/private_nics/7cd1176c-781f-48f8-8070-7550cfa21de7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 148 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_private_nic\", \"resource_id\": \"7cd1176c-781f-48f8-8070-7550cfa21de7\"}" + headers: + Content-Length: + - "148" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 96c9d7d6-9ff5-4c2e-82e5-c45a2699484d + status: 404 Not Found + code: 404 + duration: 88.818137ms +- id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/private_nics/d586d311-8ebc-445b-bd26-7adc619f50f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 148 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_private_nic\", \"resource_id\": \"d586d311-8ebc-445b-bd26-7adc619f50f9\"}" + headers: + Content-Length: + - "148" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ef04f07e-c2a7-4b1a-9b0b-47a4c05d6fb8 + status: 404 Not Found + code: 404 + duration: 110.366195ms +- id: 130 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - df98f546-bde8-49cc-a149-d8c7626d0138 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 85.24747ms +- id: 131 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 584e4fcf-5553-4d7b-9a86-0285c89fe8a0 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 140.478266ms +- id: 132 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1829 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:41:48.621572+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - be6a57a0-4575-45b2-bcd6-5037e5e91af4 + status: 200 OK + code: 200 + duration: 157.189832ms +- id: 133 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1875 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:41:48.621572+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1875" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 689c6ece-3c0e-4e43-9704-25dca2a79333 + status: 200 OK + code: 200 + duration: 138.483064ms +- id: 134 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1829 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:41:54.169813+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 40397b54-4067-4c16-8f00-64cb34cb9b63 + status: 200 OK + code: 200 + duration: 233.115877ms +- id: 135 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9fb29cca-a347-4134-a9dd-6db9bf0b9df6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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-30T15:41:48.775962Z\", \"updated_at\":\"2025-10-30T15:41:48.775962Z\", \"references\":[{\"id\":\"5f76efb9-4772-473f-a030-0f3561bb574b\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"created_at\":\"2025-10-30T15:41:48.775962Z\", \"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: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 64d86194-d97e-4e9b-a044-4850abcc7ff7 + status: 200 OK + code: 200 + duration: 89.647572ms +- id: 136 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1829 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:41:54.169813+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0fe4f0cb-1aa2-46c0-8063-ed30c09d4b52 + status: 200 OK + code: 200 + duration: 150.496968ms +- id: 137 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/503e151b-a23d-495d-b211-3098ff5a46b7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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-30T15:41:54.305533Z\", \"updated_at\":\"2025-10-30T15:41:54.305533Z\", \"references\":[{\"id\":\"fab46de9-ac58-489f-bb2f-212604042640\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"created_at\":\"2025-10-30T15:41:54.305533Z\", \"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: + - Thu, 30 Oct 2025 15:42:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bdc6e1a3-a8dd-4c62-88e8-7ba38e2df676 + status: 200 OK + code: 200 + duration: 87.583291ms +- id: 138 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"9579e9cf-9e20-406f-9b90-3bc8213fd28d\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/action\", \"href_result\": \"/servers/15a2220a-e2dd-4008-98e6-21d126b10e80\", \"started_at\": \"2025-10-30T15:42:02.130930+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9579e9cf-9e20-406f-9b90-3bc8213fd28d + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 65b4d8ef-044e-4b9f-9b25-084026606d33 + status: 202 Accepted + code: 202 + duration: 281.320966ms +- id: 139 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1897 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:01.913182+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: + - "1897" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b32e0b19-9e14-41a7-9a3d-6057265c95c3 + status: 200 OK + code: 200 + duration: 145.074948ms +- id: 140 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"14b5bdb2-189b-45ab-803a-ca69badd07d1\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/action\", \"href_result\": \"/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"started_at\": \"2025-10-30T15:42:02.575189+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/14b5bdb2-189b-45ab-803a-ca69badd07d1 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 358e775a-07fa-4609-b485-3f19cc15d9d1 + status: 202 Accepted + code: 202 + duration: 538.31916ms +- id: 141 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1851 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:02.100758+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: + - "1851" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4bb402a1-0479-438b-bd73-bb6eab8eebd7 + status: 200 OK + code: 200 + duration: 152.003034ms +- id: 142 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2032 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:04.624083+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"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: + - "2032" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9a173001-a2fb-4205-8199-cbf655960d40 + status: 200 OK + code: 200 + duration: 144.926381ms +- id: 143 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"d4def73b-a4e2-4a2c-9390-05267e2beca6\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/15a2220a-e2dd-4008-98e6-21d126b10e80/action\", \"href_result\": \"/servers/15a2220a-e2dd-4008-98e6-21d126b10e80\", \"started_at\": \"2025-10-30T15:42:07.727467+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:07 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d4def73b-a4e2-4a2c-9390-05267e2beca6 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 68b20917-abc8-4f4c-99c8-4abd78ef63b4 + status: 202 Accepted + code: 202 + duration: 305.697383ms +- id: 144 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1986 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:05.384476+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"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: + - "1986" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d414835e-62ce-49cc-ae61-d61ce4e0a6ba + status: 200 OK + code: 200 + duration: 143.400199ms +- id: 145 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1995 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:07.483875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"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: + - "1995" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 23dd9b46-d072-415a-ac74-815f3a006b09 + status: 200 OK + code: 200 + duration: 145.073848ms +- id: 146 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"31cab2ee-b18f-4186-a5df-17f875a35837\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b/action\", \"href_result\": \"/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"started_at\": \"2025-10-30T15:42:08.236273+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:08 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/31cab2ee-b18f-4186-a5df-17f875a35837 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ab46ff9c-a2e7-49aa-bc23-795755e4d3ef + status: 202 Accepted + code: 202 + duration: 370.258873ms +- id: 147 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1949 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:07.944353+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1949" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e041df23-dcf2-4ffc-9348-aef805f68000 + status: 200 OK + code: 200 + duration: 154.272592ms +- id: 148 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1995 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:07.483875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"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: + - "1995" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 46c0da8f-27a9-486c-8123-86b65a9598ad + status: 200 OK + code: 200 + duration: 142.365951ms +- id: 149 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1995 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:07.944353+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"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: + - "1995" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5b5729d9-a6e0-499f-b5ff-96a0ee6fdb39 + status: 200 OK + code: 200 + duration: 163.832486ms +- id: 150 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1995 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:07.483875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"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: + - "1995" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5fab7aa5-d59c-44d0-b6a5-de81f1f53d20 + status: 200 OK + code: 200 + duration: 152.864094ms +- id: 151 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1995 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:07.944353+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"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: + - "1995" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6167411f-c175-4160-8468-b5fce1aebdb0 + status: 200 OK + code: 200 + duration: 135.3864ms +- id: 152 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1949 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:07.483875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1949" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0899624a-4609-4cf4-b4cc-b57ef4b1b3f3 + status: 200 OK + code: 200 + duration: 131.745693ms +- id: 153 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1995 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:07.944353+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"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: + - "1995" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6392fe1c-2594-4ef9-adbf-08a6b814d899 + status: 200 OK + code: 200 + duration: 170.841888ms +- id: 154 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1995 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:07.483875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"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: + - "1995" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 67846634-796f-4de0-a8f7-a9c0fd690b30 + status: 200 OK + code: 200 + duration: 143.84007ms +- id: 155 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1949 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:07.944353+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1949" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f82102aa-be51-4c14-80bc-61ae1351ea7f + status: 200 OK + code: 200 + duration: 139.319ms +- id: 156 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1995 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:07.483875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"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: + - "1995" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5046f4c0-1447-4251-9fd8-154dfcf88d65 + status: 200 OK + code: 200 + duration: 147.076012ms +- id: 157 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1995 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:07.944353+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"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: + - "1995" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9dbc80ce-0bd2-4c23-bf1c-ed9656fc1e9f + status: 200 OK + code: 200 + duration: 148.287785ms +- id: 158 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1949 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:07.483875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1949" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 15ab6df1-1ce4-463b-9d24-990f8570ce63 + status: 200 OK + code: 200 + duration: 175.714503ms +- id: 159 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1949 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:07.944353+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1949" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eeca027c-aa13-4495-bcce-5dc98168b4c3 + status: 200 OK + code: 200 + duration: 141.946331ms +- id: 160 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1949 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:07.483875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1949" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dbcbbacb-80aa-4405-a44d-ead5df6155ae + status: 200 OK + code: 200 + duration: 155.273802ms +- id: 161 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1949 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:07.944353+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1949" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a6b3c6c4-7afb-43ad-a705-d484e2934d5d + status: 200 OK + code: 200 + duration: 136.052436ms +- id: 162 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1949 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:07.483875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1949" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fdce4f85-aef2-46c3-a230-31443f1b54a7 + status: 200 OK + code: 200 + duration: 176.770076ms +- id: 163 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1995 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:07.944353+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"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: + - "1995" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5fc72f5b-6e11-497a-9331-ef95ce61a44e + status: 200 OK + code: 200 + duration: 167.143129ms +- id: 164 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1949 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:07.483875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1949" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3e00804b-5bcc-4c46-88ec-a26ba51acf72 + status: 200 OK + code: 200 + duration: 138.447302ms +- id: 165 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1995 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:07.944353+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"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: + - "1995" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2848737c-6bb4-4365-a5e5-4ffc510b6598 + status: 200 OK + code: 200 + duration: 208.79387ms +- id: 166 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1995 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:07.483875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"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: + - "1995" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a6a5335f-c958-4023-b969-f7984074c4c0 + status: 200 OK + code: 200 + duration: 185.736299ms +- id: 167 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1949 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:07.944353+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1949" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fdcaa0b3-c5f9-4986-8b27-f12bc0d9102f + status: 200 OK + code: 200 + duration: 143.639223ms +- id: 168 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1949 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:07.483875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1949" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b3439f1b-31f9-4cbe-ace1-6623a372c971 + status: 200 OK + code: 200 + duration: 139.286488ms +- id: 169 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1995 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:07.944353+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"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: + - "1995" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 45fa173d-1dcf-4640-bd4d-d969e24c6d89 + status: 200 OK + code: 200 + duration: 135.926196ms +- id: 170 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1995 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:07.483875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"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: + - "1995" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 962bd3d3-8b6c-4767-913c-e55623413567 + status: 200 OK + code: 200 + duration: 155.964005ms +- id: 171 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1995 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:07.944353+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"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: + - "1995" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4dcf3cdf-04e8-4af2-9ac4-b3b3cb7fe85b + status: 200 OK + code: 200 + duration: 145.883454ms +- id: 172 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1995 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:07.483875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"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: + - "1995" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e5efed63-f7b1-49b1-bf1f-65f8da6b645e + status: 200 OK + code: 200 + duration: 142.684345ms +- id: 173 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1995 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:07.944353+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"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: + - "1995" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 60e76c36-4321-4a85-974d-b029ce7e3021 + status: 200 OK + code: 200 + duration: 148.64149ms +- id: 174 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1949 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:07.483875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1949" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c66d9a79-3796-46b9-af60-a021573c6a85 + status: 200 OK + code: 200 + duration: 142.597844ms +- id: 175 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1949 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:07.944353+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1949" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2354bf8a-c4fd-4143-a2da-27f10fc1f278 + status: 200 OK + code: 200 + duration: 104.929353ms +- id: 176 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1995 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:07.483875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"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: + - "1995" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d7fbb5b4-2bb3-477f-9cf4-0e1d30f6a20c + status: 200 OK + code: 200 + duration: 148.041087ms +- id: 177 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1995 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:07.944353+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"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: + - "1995" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 798bbb0a-dfc9-4514-a400-a291edc9cd6a + status: 200 OK + code: 200 + duration: 144.965878ms +- id: 178 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1995 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:07.483875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"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: + - "1995" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ef3603df-fbe4-4eac-bdbf-7aefa1024431 + status: 200 OK + code: 200 + duration: 130.495244ms +- id: 179 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1995 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:07.944353+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"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: + - "1995" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1a657f0b-7085-4307-a716-806a8da500ed + status: 200 OK + code: 200 + duration: 154.879606ms +- id: 180 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1949 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:07.483875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1949" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2a904e53-6903-4da9-be7e-59006dfee57f + status: 200 OK + code: 200 + duration: 158.540766ms +- id: 181 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1949 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:07.944353+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1949" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4c6b1732-0a0f-4881-9444-9bfd879ec1b4 + status: 200 OK + code: 200 + duration: 155.565324ms +- id: 182 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1995 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:07.483875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"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: + - "1995" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b5063ba1-eaec-4e6b-aaa9-2ff8266abd49 + status: 200 OK + code: 200 + duration: 133.739753ms +- id: 183 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1949 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:07.944353+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1949" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 86fb0b0a-99fd-4044-8c99-ddd5268cd2cc + status: 200 OK + code: 200 + duration: 125.313296ms +- id: 184 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1949 + body: "{\"server\": {\"id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\", \"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\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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:6c:a5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.621572+00:00\", \"modification_date\": \"2025-10-30T15:42:07.483875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1602\", \"node_id\": \"35\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1949" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8af17047-6121-4ab7-877c-c88afce138dc + status: 200 OK + code: 200 + duration: 142.206106ms +- id: 185 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1949 + body: "{\"server\": {\"id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\", \"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\": \"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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:6c:bd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.169813+00:00\", \"modification_date\": \"2025-10-30T15:42:07.944353+00:00\", \"bootscript\": 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\": \"1402\", \"node_id\": \"59\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1949" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ccc2ecb0-6d9d-4be0-828a-d86abc709900 + status: 200 OK + code: 200 + duration: 159.506381ms +- id: 186 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a4a78ed8-a38d-4ba0-a30b-0c6286884869 + status: 404 Not Found + code: 404 + duration: 48.059425ms +- id: 187 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9fb29cca-a347-4134-a9dd-6db9bf0b9df6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7c5e1c0b-1ebf-472b-bc5d-3fc44410070d + status: 404 Not Found + code: 404 + duration: 67.384388ms +- id: 188 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9fb29cca-a347-4134-a9dd-6db9bf0b9df6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"9fb29cca-a347-4134-a9dd-6db9bf0b9df6\", \"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-30T15:41:48.775962Z\", \"updated_at\":\"2025-10-30T15:43:49.513213Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:43:49.513213Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a88566aa-6e07-462a-900b-d28b8ad4f246 + status: 200 OK + code: 200 + duration: 101.140763ms +- id: 189 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9fb29cca-a347-4134-a9dd-6db9bf0b9df6 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2ba3ac0e-64ac-4a16-8247-2432c65df1d4 + status: 204 No Content + code: 204 + duration: 183.031854ms +- id: 190 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 42947d98-b638-478d-8422-2a8992770def + status: 404 Not Found + code: 404 + duration: 51.912453ms +- id: 191 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/503e151b-a23d-495d-b211-3098ff5a46b7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"503e151b-a23d-495d-b211-3098ff5a46b7\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4f3852e5-3309-44c0-8988-69d91617d967 + status: 404 Not Found + code: 404 + duration: 28.934559ms +- id: 192 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/503e151b-a23d-495d-b211-3098ff5a46b7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"503e151b-a23d-495d-b211-3098ff5a46b7\", \"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-30T15:41:54.305533Z\", \"updated_at\":\"2025-10-30T15:43:49.520469Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:43:49.520469Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 57667648-4a86-466f-9d2b-87fa1767c479 + status: 200 OK + code: 200 + duration: 107.811806ms +- id: 193 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/503e151b-a23d-495d-b211-3098ff5a46b7 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dd67665a-4ff9-4cfe-b71c-f22e2972bd28 + status: 204 No Content + code: 204 + duration: 148.54521ms +- id: 194 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/9ee7be1c-b91d-491b-a769-3a56e330cd7e + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - da468957-a06a-4bae-9fba-ba66cd91e44e + status: 204 No Content + code: 204 + duration: 1.261824017s +- id: 195 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/15a2220a-e2dd-4008-98e6-21d126b10e80 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"15a2220a-e2dd-4008-98e6-21d126b10e80\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f665a211-04ff-4c8f-b36a-d5ac9bfa8e45 + status: 404 Not Found + code: 404 + duration: 95.170854ms +- id: 196 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54acfa0d-a27a-4e76-8533-29e7b6651f4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"54acfa0d-a27a-4e76-8533-29e7b6651f4b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eb2f5573-4dfc-49e0-9cb5-5c1e5f48f19d + status: 404 Not Found + code: 404 + duration: 72.660787ms 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 39c8018ca..b813dcfea 100644 --- a/internal/services/instance/testdata/data-source-volume-basic.cassette.yaml +++ b/internal/services/instance/testdata/data-source-volume-basic.cassette.yaml @@ -1,884 +1,699 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 109 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-volume","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"l_ssd","size":2000000000}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 430 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 691d1395-c793-4ea9-940b-6de9c677fa4d - status: 201 Created - code: 201 - duration: 200.797163ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 430 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 54be5a82-69ea-4be3-8b3d-640fd30d5bd3 - status: 200 OK - code: 200 - duration: 92.625883ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 430 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9f40beb7-d1f2-49eb-8aac-617a51a50b99 - status: 200 OK - code: 200 - duration: 92.279796ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 430 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 279e4201-f2f4-4047-8c4c-517942db2179 - status: 200 OK - code: 200 - duration: 105.898ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 430 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1901cbfb-ad18-45d0-a866-46769cb0ff92 - status: 200 OK - code: 200 - duration: 105.068258ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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?name=tf-volume - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 433 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b0ad9ae2-5bd9-45b3-bd55-f15d5135ecd8 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 118.244946ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 430 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 43dde898-df81-4c80-ae2a-1ec9605deaab - status: 200 OK - code: 200 - duration: 128.212173ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 430 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7738fb66-a136-4b1b-adc2-512f0cb4a934 - status: 200 OK - code: 200 - duration: 85.104299ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 430 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 921db053-a8fa-46e9-bf4d-d96905e383d3 - status: 200 OK - code: 200 - duration: 85.421983ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 430 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 28284514-e306-4eac-9568-3e6d9d6d68ec - status: 200 OK - code: 200 - duration: 109.505656ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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?name=tf-volume - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 433 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 94a51f08-341e-435c-a64a-4c6b2045de69 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 114.528317ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 430 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 101bd793-e325-44d9-99bb-7b9197be8e0e - status: 200 OK - code: 200 - duration: 91.684894ms - - 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/52824592-726e-4e0f-9cc3-e83760aa2ab0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 430 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6dd1f744-437a-473a-989a-a2534856479b - status: 200 OK - code: 200 - duration: 114.320578ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 430 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8e12cf0c-98bf-4840-a512-90337ddc992a - status: 200 OK - code: 200 - duration: 90.437953ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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?name=tf-volume - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 433 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f6cf534c-0156-4cb6-8918-23d5d6330310 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 124.56837ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 430 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7295d4c4-8a00-4cd7-8ea6-e2cf02962501 - status: 200 OK - code: 200 - duration: 81.492116ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 430 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bbce6d1d-66a9-4a1c-a73b-6c075be8ee85 - status: 200 OK - code: 200 - duration: 91.610806ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 - 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:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3438ad97-6861-4df8-b6c0-13937d286588 - status: 204 No Content - code: 204 - duration: 153.663894ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 - 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": "52824592-726e-4e0f-9cc3-e83760aa2ab0"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a590a282-242b-4b1a-a5f3-4c4ddc34a5d1 - status: 404 Not Found - code: 404 - duration: 31.165173ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 - 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": "52824592-726e-4e0f-9cc3-e83760aa2ab0"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e5efe834-b61e-4acb-9640-b04aa68ac621 - status: 404 Not Found - code: 404 - duration: 30.261904ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52824592-726e-4e0f-9cc3-e83760aa2ab0 - 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": "52824592-726e-4e0f-9cc3-e83760aa2ab0"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 481b6f43-524c-4698-b4ee-e6e628f39f90 - status: 404 Not Found - code: 404 - duration: 29.622218ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 109 + host: api.scaleway.com + body: "{\"name\":\"tf-volume\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"volume_type\":\"l_ssd\",\"size\":2000000000}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 430 + body: "{\"volume\": {\"id\": \"c7e378db-29c1-4f91-b402-db75fc98c5d5\", \"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-30T15:43:00.513711+00:00\", \"modification_date\": \"2025-10-30T15:43:00.513711+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "430" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c7e378db-29c1-4f91-b402-db75fc98c5d5 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 64a530cf-0448-42d9-a096-ee867fab2ebd + status: 201 Created + code: 201 + duration: 227.787761ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c7e378db-29c1-4f91-b402-db75fc98c5d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 430 + body: "{\"volume\": {\"id\": \"c7e378db-29c1-4f91-b402-db75fc98c5d5\", \"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-30T15:43:00.513711+00:00\", \"modification_date\": \"2025-10-30T15:43:00.513711+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "430" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2604a4e2-75b1-44fd-b440-d372b1c3cc19 + status: 200 OK + code: 200 + duration: 92.195213ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c7e378db-29c1-4f91-b402-db75fc98c5d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 430 + body: "{\"volume\": {\"id\": \"c7e378db-29c1-4f91-b402-db75fc98c5d5\", \"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-30T15:43:00.513711+00:00\", \"modification_date\": \"2025-10-30T15:43:00.513711+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "430" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ca7576b0-cf0f-4257-89ac-1d82d816de01 + status: 200 OK + code: 200 + duration: 98.246082ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c7e378db-29c1-4f91-b402-db75fc98c5d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 430 + body: "{\"volume\": {\"id\": \"c7e378db-29c1-4f91-b402-db75fc98c5d5\", \"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-30T15:43:00.513711+00:00\", \"modification_date\": \"2025-10-30T15:43:00.513711+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "430" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6c1c5032-2113-4c6b-8979-9bb375bcb43e + status: 200 OK + code: 200 + duration: 111.504143ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c7e378db-29c1-4f91-b402-db75fc98c5d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 430 + body: "{\"volume\": {\"id\": \"c7e378db-29c1-4f91-b402-db75fc98c5d5\", \"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-30T15:43:00.513711+00:00\", \"modification_date\": \"2025-10-30T15:43:00.513711+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "430" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e3e38c57-aa3e-44ce-aff8-6beda74f0c20 + status: 200 OK + code: 200 + duration: 87.120514ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c7e378db-29c1-4f91-b402-db75fc98c5d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 430 + body: "{\"volume\": {\"id\": \"c7e378db-29c1-4f91-b402-db75fc98c5d5\", \"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-30T15:43:00.513711+00:00\", \"modification_date\": \"2025-10-30T15:43:00.513711+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "430" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4dd9dff3-758b-480e-ab2a-7c27b68de438 + status: 200 OK + code: 200 + duration: 108.563877ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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?name=tf-volume + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 433 + body: "{\"volumes\": [{\"id\": \"c7e378db-29c1-4f91-b402-db75fc98c5d5\", \"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-30T15:43:00.513711+00:00\", \"modification_date\": \"2025-10-30T15:43:00.513711+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}]}" + headers: + Content-Length: + - "433" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 20e1ef56-21e8-42a7-b08c-868611fe98e3 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 145.942253ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c7e378db-29c1-4f91-b402-db75fc98c5d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 430 + body: "{\"volume\": {\"id\": \"c7e378db-29c1-4f91-b402-db75fc98c5d5\", \"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-30T15:43:00.513711+00:00\", \"modification_date\": \"2025-10-30T15:43:00.513711+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "430" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0a49160c-f458-4485-a24a-c692332c4957 + status: 200 OK + code: 200 + duration: 97.629246ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c7e378db-29c1-4f91-b402-db75fc98c5d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 430 + body: "{\"volume\": {\"id\": \"c7e378db-29c1-4f91-b402-db75fc98c5d5\", \"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-30T15:43:00.513711+00:00\", \"modification_date\": \"2025-10-30T15:43:00.513711+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "430" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 60ad4c52-400d-4c5e-9522-5bd73b5d1ff5 + status: 200 OK + code: 200 + duration: 100.889802ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c7e378db-29c1-4f91-b402-db75fc98c5d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 430 + body: "{\"volume\": {\"id\": \"c7e378db-29c1-4f91-b402-db75fc98c5d5\", \"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-30T15:43:00.513711+00:00\", \"modification_date\": \"2025-10-30T15:43:00.513711+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "430" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 157631b1-2ba7-4e24-a27e-af1166a887b3 + status: 200 OK + code: 200 + duration: 94.293399ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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?name=tf-volume + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 433 + body: "{\"volumes\": [{\"id\": \"c7e378db-29c1-4f91-b402-db75fc98c5d5\", \"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-30T15:43:00.513711+00:00\", \"modification_date\": \"2025-10-30T15:43:00.513711+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}]}" + headers: + Content-Length: + - "433" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 42660439-301b-4fc3-afe1-ff56ab9e6229 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 114.022818ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c7e378db-29c1-4f91-b402-db75fc98c5d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 430 + body: "{\"volume\": {\"id\": \"c7e378db-29c1-4f91-b402-db75fc98c5d5\", \"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-30T15:43:00.513711+00:00\", \"modification_date\": \"2025-10-30T15:43:00.513711+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "430" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5ed7d442-8676-4a18-8ad0-6417b2c322d5 + status: 200 OK + code: 200 + duration: 108.210375ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c7e378db-29c1-4f91-b402-db75fc98c5d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 430 + body: "{\"volume\": {\"id\": \"c7e378db-29c1-4f91-b402-db75fc98c5d5\", \"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-30T15:43:00.513711+00:00\", \"modification_date\": \"2025-10-30T15:43:00.513711+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "430" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5413643e-cb6a-480f-bdb3-53deb8d18d9f + status: 200 OK + code: 200 + duration: 93.366009ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c7e378db-29c1-4f91-b402-db75fc98c5d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 430 + body: "{\"volume\": {\"id\": \"c7e378db-29c1-4f91-b402-db75fc98c5d5\", \"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-30T15:43:00.513711+00:00\", \"modification_date\": \"2025-10-30T15:43:00.513711+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "430" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a23c1b6d-154d-4e45-9211-3f20f03e4ac2 + status: 200 OK + code: 200 + duration: 103.486954ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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?name=tf-volume + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 433 + body: "{\"volumes\": [{\"id\": \"c7e378db-29c1-4f91-b402-db75fc98c5d5\", \"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-30T15:43:00.513711+00:00\", \"modification_date\": \"2025-10-30T15:43:00.513711+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}]}" + headers: + Content-Length: + - "433" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 723c2e75-13ff-4dd2-95b2-6dfbd982380f + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 110.0953ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c7e378db-29c1-4f91-b402-db75fc98c5d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 430 + body: "{\"volume\": {\"id\": \"c7e378db-29c1-4f91-b402-db75fc98c5d5\", \"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-30T15:43:00.513711+00:00\", \"modification_date\": \"2025-10-30T15:43:00.513711+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "430" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9d8a9a54-c5de-42de-a80f-ce498ac92bd5 + status: 200 OK + code: 200 + duration: 119.497427ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c7e378db-29c1-4f91-b402-db75fc98c5d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 430 + body: "{\"volume\": {\"id\": \"c7e378db-29c1-4f91-b402-db75fc98c5d5\", \"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-30T15:43:00.513711+00:00\", \"modification_date\": \"2025-10-30T15:43:00.513711+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "430" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 19e00a2b-38ee-4112-b649-85e4bdb9378d + status: 200 OK + code: 200 + duration: 137.625381ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c7e378db-29c1-4f91-b402-db75fc98c5d5 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 71c1e0af-3fa7-406d-9b14-b82370d10589 + status: 204 No Content + code: 204 + duration: 137.103794ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c7e378db-29c1-4f91-b402-db75fc98c5d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"c7e378db-29c1-4f91-b402-db75fc98c5d5\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 96ab5333-453c-49a8-b001-cd79ba1605c7 + status: 404 Not Found + code: 404 + duration: 28.225797ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c7e378db-29c1-4f91-b402-db75fc98c5d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"c7e378db-29c1-4f91-b402-db75fc98c5d5\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 93c307d2-ea57-4729-ab53-3e9c9b3999bc + status: 404 Not Found + code: 404 + duration: 42.069275ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c7e378db-29c1-4f91-b402-db75fc98c5d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"c7e378db-29c1-4f91-b402-db75fc98c5d5\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 398e51d8-6a3b-4065-9e09-9a312b907ca6 + status: 404 Not Found + code: 404 + duration: 26.765397ms 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 25a8eef69..085cab084 100644 --- a/internal/services/instance/testdata/image-external-block-volume.cassette.yaml +++ b/internal/services/instance/testdata/image-external-block-volume.cassette.yaml @@ -1,3205 +1,2479 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 149 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+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: 423 - uncompressed: false - 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: - - "423" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ab55562b-b451-420b-8e0a-01472d22d049 - status: 200 OK - code: 200 - duration: 251.503119ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 147 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-volume-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 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 420 - uncompressed: false - 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: - - "420" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9421ff74-fb43-48ef-8a06-75388f711ad9 - status: 200 OK - code: 200 - duration: 343.041508ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 424 - uncompressed: false - 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: - - "424" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5983ba1d-fad6-48a9-abeb-1e75b44daa94 - status: 200 OK - code: 200 - duration: 91.323367ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 155 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+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: 428 - uncompressed: false - 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: - - "428" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5b3adead-aa0b-4c2a-a6d1-c1c6ef4f8dd7 - status: 200 OK - code: 200 - duration: 410.891431ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/86ec5311-049c-4d62-9764-7c55f92a48ef - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 420 - uncompressed: false - 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: - - "420" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a8542b20-e1b3-46b2-b4e2-167a7d50250e - status: 200 OK - code: 200 - duration: 81.528972ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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: 424 - uncompressed: false - 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: - - "424" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 711c9299-5e1d-4349-8907-38d0904aa2f1 - status: 200 OK - code: 200 - duration: 96.236484ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 428 - uncompressed: false - 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: - - "428" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8e422013-de88-4573-99b2-936f7dd3f3b1 - status: 200 OK - code: 200 - duration: 72.03552ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 153 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/snapshots - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 467 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7042a692-8949-4604-a032-db19fad79bd2 - status: 200 OK - code: 200 - duration: 369.040895ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 467 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5863e820-f039-48b9-b874-9c8bc5f80f98 - status: 200 OK - code: 200 - duration: 228.610662ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 429 - uncompressed: false - 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: - - "429" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 33a054d2-f7ca-4a84-bf7c-6e3ed6412b51 - status: 200 OK - code: 200 - duration: 116.030579ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/86ec5311-049c-4d62-9764-7c55f92a48ef - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 421 - uncompressed: false - 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: - - "421" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f0e96e78-c0fc-4748-b0c0-07b46cbcf154 - status: 200 OK - code: 200 - duration: 176.726497ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 429 - uncompressed: false - 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: - - "429" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 24c407d3-25c7-451c-aead-3199add19c8a - status: 200 OK - code: 200 - duration: 197.018209ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/86ec5311-049c-4d62-9764-7c55f92a48ef - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 421 - uncompressed: false - 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: - - "421" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d896a108-e6af-4c39-8fdd-6d60253c4dc3 - status: 200 OK - code: 200 - duration: 194.149755ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 147 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"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/snapshots - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 459 - uncompressed: false - 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: - - "459" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 32d96b62-d124-48d3-8293-2dc3c9bfef5e - status: 200 OK - code: 200 - duration: 536.544108ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 468 - uncompressed: false - 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: - - "468" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cf447fb4-b4d4-4908-a4ac-b7e102a33a24 - status: 200 OK - code: 200 - duration: 305.628905ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 145 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 465 - uncompressed: false - 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: - - "465" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3050546e-8ce3-452b-9493-f95f811d9db0 - status: 200 OK - code: 200 - duration: 536.389059ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 468 - uncompressed: false - 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: - - "468" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7f3a0c7d-ab35-4acf-bea8-d195d5167d42 - status: 200 OK - code: 200 - duration: 303.004458ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7bf72fef-df61-4543-b67d-f8675609f590 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 465 - uncompressed: false - 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: - - "465" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f44d305c-2798-40b8-9ff0-35f6cdf1cd43 - status: 200 OK - code: 200 - duration: 315.002593ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7bf72fef-df61-4543-b67d-f8675609f590 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 466 - uncompressed: false - 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: - - "466" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a36d293a-c1c1-421a-a7eb-b71660a34961 - status: 200 OK - code: 200 - duration: 320.563375ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e11b0632-3875-485c-8721-fb1ba7fe7a8f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 460 - uncompressed: false - 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: - - "460" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 36470b5b-1f60-4070-a826-a11c7c4afdd8 - status: 200 OK - code: 200 - duration: 316.981968ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7bf72fef-df61-4543-b67d-f8675609f590 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 466 - uncompressed: false - 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: - - "466" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2733f7f4-3e5c-4eb0-bf07-d29352773bab - status: 200 OK - code: 200 - duration: 304.732093ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e11b0632-3875-485c-8721-fb1ba7fe7a8f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 460 - uncompressed: false - 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: - - "460" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 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: 297 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 807 - uncompressed: false - 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-Type: - - application/json - Date: - - 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;edge03) - X-Request-Id: - - c4138804-bb5e-466f-a94f-bdaac07f141d - status: 201 Created - code: 201 - duration: 1.026583375s - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 807 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f2446d06-3370-4aa1-a44a-70ec17e59ed4 - status: 200 OK - code: 200 - duration: 186.659644ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 807 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3b201c6b-0e52-4f64-a85c-42274d38ea85 - status: 200 OK - code: 200 - duration: 124.785823ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 807 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 63bf1d0c-5ffc-43cf-a898-61fbecf49e8c - status: 200 OK - code: 200 - duration: 127.406504ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 429 - uncompressed: false - 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: - - "429" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 708e8c3c-1c68-44c0-b7b3-6438e72b26fd - status: 200 OK - code: 200 - duration: 116.434897ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/86ec5311-049c-4d62-9764-7c55f92a48ef - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 421 - uncompressed: false - 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: - - "421" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7b6fb9aa-706b-4564-b127-a89bdbb80287 - status: 200 OK - code: 200 - duration: 116.292011ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 424 - uncompressed: false - 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: - - "424" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e58479e4-1a6a-4aca-8669-88e2e85c12f5 - status: 200 OK - code: 200 - duration: 116.352394ms - - 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/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: 686 - uncompressed: false - 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: - - "686" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 383936a5-62e6-4827-b54e-839ff3579391 - status: 200 OK - code: 200 - duration: 489.244883ms - - 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/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: 694 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 531718a9-7fb2-462f-8e51-ffd5309c66fc - status: 200 OK - code: 200 - duration: 489.180402ms - - 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/block/v1alpha1/zones/fr-par-1/snapshots/7bf72fef-df61-4543-b67d-f8675609f590 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 692 - uncompressed: false - 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: - - "692" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7c56c44a-6659-43a6-a755-e8de357ee78f - status: 200 OK - code: 200 - duration: 489.155486ms - - 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/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 807 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b686a9bf-3ac5-4753-b8cc-e1b6c1d4bfd3 - status: 200 OK - code: 200 - duration: 113.324942ms - - 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/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: 424 - uncompressed: false - 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: - - "424" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e8063586-0ba8-42f4-bd34-7b6f487f2079 - status: 200 OK - code: 200 - duration: 110.760326ms - - 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/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: 429 - uncompressed: false - 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: - - "429" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 28bf5cc1-a9cd-4476-82d3-11aa8489f9f7 - status: 200 OK - code: 200 - duration: 110.94978ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/86ec5311-049c-4d62-9764-7c55f92a48ef - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 421 - uncompressed: false - 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: - - "421" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0ac40c10-d920-4f50-af9e-59e48528ddf0 - status: 200 OK - code: 200 - duration: 110.776096ms - - 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/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: 686 - uncompressed: false - 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: - - "686" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0c0f01bd-f0dd-48be-885d-898490572e0b - status: 200 OK - code: 200 - duration: 491.00088ms - - 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/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: 694 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4d5145f1-fccc-4593-92ad-02827f5d37fb - status: 200 OK - code: 200 - duration: 491.070149ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7bf72fef-df61-4543-b67d-f8675609f590 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 692 - uncompressed: false - 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: - - "692" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 87852281-22d2-42ab-9ea2-cae61a03d7c1 - status: 200 OK - code: 200 - duration: 491.05442ms - - 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/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 807 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3bb8c1d5-881c-4e08-aed0-26e90d704f67 - status: 200 OK - code: 200 - duration: 133.854322ms - - 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/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 807 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d27602d9-7e76-4019-bc30-08b0e01a75df - status: 200 OK - code: 200 - duration: 184.967331ms - - 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/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 807 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 21c643bb-9077-467d-a059-eef050f435c3 - status: 200 OK - code: 200 - duration: 130.721944ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 72 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/4b0b3b8b-354a-436f-b306-5bb24ae35d34 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 807 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f5f36f66-2446-4a90-9eb5-2c91bc32cf1d - status: 200 OK - code: 200 - duration: 146.37245ms - - 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/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 807 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b39c5ee7-657d-4824-a788-388aed83c381 - status: 200 OK - code: 200 - duration: 115.701878ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 807 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b467ded8-577a-4404-befa-f53d95dedcab - status: 200 OK - code: 200 - duration: 147.797195ms - - 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/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 807 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ca6e5914-e8b7-42a6-bde6-c8501d4d801b - status: 200 OK - code: 200 - duration: 122.704091ms - - 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/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: 424 - uncompressed: false - 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: - - "424" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2947ec26-7860-4eb3-9b80-5cae60b43037 - status: 200 OK - code: 200 - duration: 79.425803ms - - id: 47 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c04b1432-7023-48b1-9480-a9dcdf56b57a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 429 - uncompressed: false - 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: - - "429" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 99c6b76c-085a-42cb-b128-5d399d587471 - status: 200 OK - code: 200 - duration: 79.470446ms - - id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/86ec5311-049c-4d62-9764-7c55f92a48ef - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 421 - uncompressed: false - 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: - - "421" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 12f3431d-3a0e-4e82-a293-004e1e2f19b1 - status: 200 OK - code: 200 - duration: 81.385017ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7bf72fef-df61-4543-b67d-f8675609f590 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 692 - uncompressed: false - 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: - - "692" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2c343736-4f72-46a1-8a7a-111c3438fc6c - status: 200 OK - code: 200 - duration: 256.279733ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 694 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 298329b0-09b4-41fc-8f99-32035a11498a - status: 200 OK - code: 200 - duration: 256.111178ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 686 - uncompressed: false - 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: - - "686" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3622cdf1-9f29-47dd-acb9-950ee8c7a685 - status: 200 OK - code: 200 - duration: 261.614669ms - - 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/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 807 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e79f4b17-826f-4104-adcc-57b3d1007c78 - status: 200 OK - code: 200 - duration: 138.324521ms - - 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/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 807 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8afe971f-bac8-4774-878f-0accc3b05c90 - status: 200 OK - code: 200 - duration: 162.004202ms - - 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/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: 694 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c9378b90-699c-4a1f-9e26-ec90cc11b086 - status: 200 OK - code: 200 - duration: 299.858444ms - - id: 55 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7bf72fef-df61-4543-b67d-f8675609f590 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 692 - uncompressed: false - 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: - - "692" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 466542f4-fd8a-4991-a7df-eee79a315abc - status: 200 OK - code: 200 - duration: 311.764157ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 - 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:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6527f471-27aa-4635-b1b8-d30a67921bcd - status: 204 No Content - code: 204 - duration: 776.847316ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 142 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_image", "resource_id": "4b0b3b8b-354a-436f-b306-5bb24ae35d34"}' - headers: - Content-Length: - - "142" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e3e11a5a-a9ff-46c7-9813-02218d6285bc - status: 404 Not Found - code: 404 - duration: 42.263872ms - - id: 58 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e11b0632-3875-485c-8721-fb1ba7fe7a8f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 457 - uncompressed: false - 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: - - "457" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ba1e04b3-381f-482b-a33d-e38b18c475ed - status: 200 OK - code: 200 - duration: 185.857357ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 468 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fde4552e-25ca-4b9e-94b5-a55e3be5dc16 - status: 200 OK - code: 200 - duration: 274.535785ms - - id: 60 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7bf72fef-df61-4543-b67d-f8675609f590 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 466 - uncompressed: false - 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: - - "466" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 45ca81d0-127a-4ef1-962e-9542a9e9eca5 - status: 200 OK - code: 200 - duration: 261.364475ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7bf72fef-df61-4543-b67d-f8675609f590 - 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:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 42656251-a253-4b84-80d5-eef6ade1b75c - status: 204 No Content - code: 204 - duration: 294.197833ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d - 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:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 294cd2c8-b335-44a4-8424-6601f7795364 - status: 204 No Content - code: 204 - duration: 294.300996ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7bf72fef-df61-4543-b67d-f8675609f590 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"7bf72fef-df61-4543-b67d-f8675609f590","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fb9f9e5b-5f30-4df8-9596-6ca40cc29786 - status: 404 Not Found - code: 404 - duration: 68.377374ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"98ef090d-7c9d-4ec6-b9c6-4cfb84d87d6d","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5932c5ed-4f13-4348-8e8a-03d269c0aa13 - status: 404 Not Found - code: 404 - duration: 72.921262ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c04b1432-7023-48b1-9480-a9dcdf56b57a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 429 - uncompressed: false - 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: - - "429" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 86076057-a65c-464f-9f76-3f703fbf5ff2 - status: 200 OK - code: 200 - duration: 107.383785ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/187b3b16-c727-409b-a42e-154628b6e9b2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 424 - uncompressed: false - 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: - - "424" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b35ed3c0-dee3-49de-ad7f-05538e348b5d - status: 200 OK - code: 200 - duration: 104.683546ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c04b1432-7023-48b1-9480-a9dcdf56b57a - 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:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c32c6cbc-875d-45d1-86a3-1fc7a4afc593 - status: 204 No Content - code: 204 - duration: 154.07619ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 0 - uncompressed: false - body: "" - headers: - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f48e6f53-890c-48d3-9d18-713e9bf641bc - status: 204 No Content - code: 204 - duration: 189.945524ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c04b1432-7023-48b1-9480-a9dcdf56b57a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"c04b1432-7023-48b1-9480-a9dcdf56b57a","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 473c7520-bd67-4b17-98ae-06ca65db4927 - status: 404 Not Found - code: 404 - duration: 91.865747ms - - id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/187b3b16-c727-409b-a42e-154628b6e9b2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"187b3b16-c727-409b-a42e-154628b6e9b2","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - af4ee66e-51ea-4d6a-abdd-ab99aa52e31b - status: 404 Not Found - code: 404 - duration: 80.063748ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e11b0632-3875-485c-8721-fb1ba7fe7a8f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 460 - uncompressed: false - 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: - - "460" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8055f088-747a-45e8-b17b-a198e314604f - status: 200 OK - code: 200 - duration: 228.637818ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e11b0632-3875-485c-8721-fb1ba7fe7a8f - 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:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d09e8c5e-ebdc-447c-a4e7-04d266bb8491 - status: 204 No Content - code: 204 - duration: 258.245884ms - - id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e11b0632-3875-485c-8721-fb1ba7fe7a8f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"e11b0632-3875-485c-8721-fb1ba7fe7a8f","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 39e0b017-0ac9-47cc-bc8a-0113fae6ea53 - status: 404 Not Found - code: 404 - duration: 82.422008ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/86ec5311-049c-4d62-9764-7c55f92a48ef - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 421 - uncompressed: false - 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: - - "421" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - deeecc5c-5b37-4d1f-968e-ed1b84675ae0 - status: 200 OK - code: 200 - duration: 93.412559ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"86ec5311-049c-4d62-9764-7c55f92a48ef","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2f6a9271-da32-4e75-8ef5-82428cb0b1b5 - status: 404 Not Found - code: 404 - duration: 61.545378ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/4b0b3b8b-354a-436f-b306-5bb24ae35d34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 142 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_image", "resource_id": "4b0b3b8b-354a-436f-b306-5bb24ae35d34"}' - headers: - Content-Length: - - "142" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - eaa717f5-a412-4dba-9ba6-226b8a8a957a - status: 404 Not Found - code: 404 - duration: 36.726618ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 150 + host: api.scaleway.com + body: "{\"name\":\"tf-volume-confident-rhodes\",\"perf_iops\":5000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"from_empty\":{\"size\":40000000000},\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+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 + content_length: 423 + body: "{\"id\":\"7ac1ff77-5066-4260-a3f0-db149e045f29\", \"name\":\"tf-volume-confident-rhodes\", \"type\":\"sbs_5k\", \"size\":40000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:02.415231Z\", \"updated_at\":\"2025-10-30T15:43:02.415231Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b812bbe0-ce2b-40e2-b4c2-efc8ef834459 + status: 200 OK + code: 200 + duration: 266.411514ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7ac1ff77-5066-4260-a3f0-db149e045f29 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + body: "{\"id\":\"7ac1ff77-5066-4260-a3f0-db149e045f29\", \"name\":\"tf-volume-confident-rhodes\", \"type\":\"sbs_5k\", \"size\":40000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:02.415231Z\", \"updated_at\":\"2025-10-30T15:43:02.415231Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9c5e29dd-e6de-43b8-b550-cff0a218a017 + status: 200 OK + code: 200 + duration: 79.263375ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 150 + host: api.scaleway.com + body: "{\"name\":\"tf-volume-sharp-chebyshev\",\"perf_iops\":15000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"from_empty\":{\"size\":20000000000},\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+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 + content_length: 424 + body: "{\"id\":\"ad270caa-579a-4a9f-8673-3c9e3fd05fa2\", \"name\":\"tf-volume-sharp-chebyshev\", \"type\":\"sbs_15k\", \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:02.438698Z\", \"updated_at\":\"2025-10-30T15:43:02.438698Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6fa522eb-e493-434f-8136-1d1092fdbed7 + status: 200 OK + code: 200 + duration: 386.631727ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 150 + host: api.scaleway.com + body: "{\"name\":\"tf-volume-agitated-lalande\",\"perf_iops\":5000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"from_empty\":{\"size\":20000000000},\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+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 + content_length: 423 + body: "{\"id\":\"1b0f3e27-439f-4396-9592-e56f38493d74\", \"name\":\"tf-volume-agitated-lalande\", \"type\":\"sbs_5k\", \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:02.443929Z\", \"updated_at\":\"2025-10-30T15:43:02.443929Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 67d8304e-110f-4a88-9fab-15bb7b1e22ce + status: 200 OK + code: 200 + duration: 475.917461ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad270caa-579a-4a9f-8673-3c9e3fd05fa2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 425 + body: "{\"id\":\"ad270caa-579a-4a9f-8673-3c9e3fd05fa2\", \"name\":\"tf-volume-sharp-chebyshev\", \"type\":\"sbs_15k\", \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:02.438698Z\", \"updated_at\":\"2025-10-30T15:43:02.438698Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3f58caa6-07d7-41a5-81c8-893b3faf3a24 + status: 200 OK + code: 200 + duration: 93.751001ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad270caa-579a-4a9f-8673-3c9e3fd05fa2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 425 + body: "{\"id\":\"ad270caa-579a-4a9f-8673-3c9e3fd05fa2\", \"name\":\"tf-volume-sharp-chebyshev\", \"type\":\"sbs_15k\", \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:02.438698Z\", \"updated_at\":\"2025-10-30T15:43:02.438698Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dedb3881-9850-48ae-a003-61e22925b73a + status: 200 OK + code: 200 + duration: 100.181414ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1b0f3e27-439f-4396-9592-e56f38493d74 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 424 + body: "{\"id\":\"1b0f3e27-439f-4396-9592-e56f38493d74\", \"name\":\"tf-volume-agitated-lalande\", \"type\":\"sbs_5k\", \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:02.443929Z\", \"updated_at\":\"2025-10-30T15:43:02.443929Z\", \"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: + - "424" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f98204f0-10fd-4ce3-b402-7e2c913fd45e + status: 200 OK + code: 200 + duration: 118.127748ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1b0f3e27-439f-4396-9592-e56f38493d74 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 424 + body: "{\"id\":\"1b0f3e27-439f-4396-9592-e56f38493d74\", \"name\":\"tf-volume-agitated-lalande\", \"type\":\"sbs_5k\", \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:02.443929Z\", \"updated_at\":\"2025-10-30T15:43:02.443929Z\", \"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: + - "424" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bb1c9d3f-4da7-4fef-8cde-8d93affb5f84 + status: 200 OK + code: 200 + duration: 103.802246ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 154 + host: api.scaleway.com + body: "{\"volume_id\":\"ad270caa-579a-4a9f-8673-3c9e3fd05fa2\",\"name\":\"tf-snapshot-magical-archimedes\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 469 + body: "{\"id\":\"ec679b25-8233-4282-ae07-f002f9a66d3f\", \"name\":\"tf-snapshot-magical-archimedes\", \"parent_volume\":{\"id\":\"ad270caa-579a-4a9f-8673-3c9e3fd05fa2\", \"name\":\"tf-volume-sharp-chebyshev\", \"type\":\"sbs_15k\", \"status\":\"available\"}, \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:03.111400Z\", \"updated_at\":\"2025-10-30T15:43:03.111400Z\", \"references\":[], \"status\":\"creating\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "469" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1d1df23d-a3ed-4168-bba5-d812e5212602 + status: 200 OK + code: 200 + duration: 473.168746ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 147 + host: api.scaleway.com + body: "{\"volume_id\":\"1b0f3e27-439f-4396-9592-e56f38493d74\",\"name\":\"tf-snapshot-eager-hertz\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 462 + body: "{\"id\":\"76d9d4d3-abd9-4ff5-9321-72a89efb8037\", \"name\":\"tf-snapshot-eager-hertz\", \"parent_volume\":{\"id\":\"1b0f3e27-439f-4396-9592-e56f38493d74\", \"name\":\"tf-volume-agitated-lalande\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:03.180058Z\", \"updated_at\":\"2025-10-30T15:43:03.180058Z\", \"references\":[], \"status\":\"creating\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "462" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 62852838-87af-435b-8f5b-917235e0128a + status: 200 OK + code: 200 + duration: 354.175194ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/76d9d4d3-abd9-4ff5-9321-72a89efb8037 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 462 + body: "{\"id\":\"76d9d4d3-abd9-4ff5-9321-72a89efb8037\", \"name\":\"tf-snapshot-eager-hertz\", \"parent_volume\":{\"id\":\"1b0f3e27-439f-4396-9592-e56f38493d74\", \"name\":\"tf-volume-agitated-lalande\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:03.180058Z\", \"updated_at\":\"2025-10-30T15:43:03.180058Z\", \"references\":[], \"status\":\"creating\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "462" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4145150b-3c1f-4707-a75f-f5606c98424c + status: 200 OK + code: 200 + duration: 171.108812ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7ac1ff77-5066-4260-a3f0-db149e045f29 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 424 + body: "{\"id\":\"7ac1ff77-5066-4260-a3f0-db149e045f29\", \"name\":\"tf-volume-confident-rhodes\", \"type\":\"sbs_5k\", \"size\":40000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:02.415231Z\", \"updated_at\":\"2025-10-30T15:43:02.415231Z\", \"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: + - "424" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fb749fb7-6632-466b-9014-3b9157ee79a3 + status: 200 OK + code: 200 + duration: 86.040418ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7ac1ff77-5066-4260-a3f0-db149e045f29 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 424 + body: "{\"id\":\"7ac1ff77-5066-4260-a3f0-db149e045f29\", \"name\":\"tf-volume-confident-rhodes\", \"type\":\"sbs_5k\", \"size\":40000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:02.415231Z\", \"updated_at\":\"2025-10-30T15:43:02.415231Z\", \"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: + - "424" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 72e800dc-a485-4f06-b74a-19d78aba470e + status: 200 OK + code: 200 + duration: 79.832543ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 153 + host: api.scaleway.com + body: "{\"volume_id\":\"7ac1ff77-5066-4260-a3f0-db149e045f29\",\"name\":\"tf-snapshot-mystifying-clarke\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 468 + body: "{\"id\":\"9e1b874d-3f72-4d75-817b-8adcd58fbffc\", \"name\":\"tf-snapshot-mystifying-clarke\", \"parent_volume\":{\"id\":\"7ac1ff77-5066-4260-a3f0-db149e045f29\", \"name\":\"tf-volume-confident-rhodes\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":40000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:08.021976Z\", \"updated_at\":\"2025-10-30T15:43:08.021976Z\", \"references\":[], \"status\":\"creating\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "468" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9aae71c4-2186-4610-b84e-856c2c403588 + status: 200 OK + code: 200 + duration: 380.914255ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/9e1b874d-3f72-4d75-817b-8adcd58fbffc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 468 + body: "{\"id\":\"9e1b874d-3f72-4d75-817b-8adcd58fbffc\", \"name\":\"tf-snapshot-mystifying-clarke\", \"parent_volume\":{\"id\":\"7ac1ff77-5066-4260-a3f0-db149e045f29\", \"name\":\"tf-volume-confident-rhodes\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":40000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:08.021976Z\", \"updated_at\":\"2025-10-30T15:43:08.021976Z\", \"references\":[], \"status\":\"creating\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "468" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c3b330bd-64cb-4e56-86b1-ac17ac211201 + status: 200 OK + code: 200 + duration: 237.00252ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/76d9d4d3-abd9-4ff5-9321-72a89efb8037 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"id\":\"76d9d4d3-abd9-4ff5-9321-72a89efb8037\", \"name\":\"tf-snapshot-eager-hertz\", \"parent_volume\":{\"id\":\"1b0f3e27-439f-4396-9592-e56f38493d74\", \"name\":\"tf-volume-agitated-lalande\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:03.180058Z\", \"updated_at\":\"2025-10-30T15:43:03.180058Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "463" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - af74cf0b-6d4b-4bdc-8d6e-b1845e698625 + status: 200 OK + code: 200 + duration: 256.212836ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ec679b25-8233-4282-ae07-f002f9a66d3f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 470 + body: "{\"id\":\"ec679b25-8233-4282-ae07-f002f9a66d3f\", \"name\":\"tf-snapshot-magical-archimedes\", \"parent_volume\":{\"id\":\"ad270caa-579a-4a9f-8673-3c9e3fd05fa2\", \"name\":\"tf-volume-sharp-chebyshev\", \"type\":\"sbs_15k\", \"status\":\"available\"}, \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:03.111400Z\", \"updated_at\":\"2025-10-30T15:43:03.111400Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "470" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c98dfdb7-0692-4746-b1fb-21a1a9ef8a78 + status: 200 OK + code: 200 + duration: 256.104894ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/76d9d4d3-abd9-4ff5-9321-72a89efb8037 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"id\":\"76d9d4d3-abd9-4ff5-9321-72a89efb8037\", \"name\":\"tf-snapshot-eager-hertz\", \"parent_volume\":{\"id\":\"1b0f3e27-439f-4396-9592-e56f38493d74\", \"name\":\"tf-volume-agitated-lalande\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:03.180058Z\", \"updated_at\":\"2025-10-30T15:43:03.180058Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "463" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8df2bd7e-e4bd-46a8-9185-9cb70f5ef9ca + status: 200 OK + code: 200 + duration: 145.147864ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ec679b25-8233-4282-ae07-f002f9a66d3f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 470 + body: "{\"id\":\"ec679b25-8233-4282-ae07-f002f9a66d3f\", \"name\":\"tf-snapshot-magical-archimedes\", \"parent_volume\":{\"id\":\"ad270caa-579a-4a9f-8673-3c9e3fd05fa2\", \"name\":\"tf-volume-sharp-chebyshev\", \"type\":\"sbs_15k\", \"status\":\"available\"}, \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:03.111400Z\", \"updated_at\":\"2025-10-30T15:43:03.111400Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "470" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cef56a19-f3cf-4620-aaaa-1c7bc2e4d6ab + status: 200 OK + code: 200 + duration: 162.458497ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/9e1b874d-3f72-4d75-817b-8adcd58fbffc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 469 + body: "{\"id\":\"9e1b874d-3f72-4d75-817b-8adcd58fbffc\", \"name\":\"tf-snapshot-mystifying-clarke\", \"parent_volume\":{\"id\":\"7ac1ff77-5066-4260-a3f0-db149e045f29\", \"name\":\"tf-volume-confident-rhodes\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":40000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:08.021976Z\", \"updated_at\":\"2025-10-30T15:43:08.021976Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "469" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 50e7daad-7eca-45ac-8daf-8305f7556c61 + status: 200 OK + code: 200 + duration: 269.702042ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/9e1b874d-3f72-4d75-817b-8adcd58fbffc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 469 + body: "{\"id\":\"9e1b874d-3f72-4d75-817b-8adcd58fbffc\", \"name\":\"tf-snapshot-mystifying-clarke\", \"parent_volume\":{\"id\":\"7ac1ff77-5066-4260-a3f0-db149e045f29\", \"name\":\"tf-volume-confident-rhodes\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":40000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:08.021976Z\", \"updated_at\":\"2025-10-30T15:43:08.021976Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "469" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 14b991e7-bed2-4b54-8990-c352c764e5b5 + status: 200 OK + code: 200 + duration: 222.084708ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 297 + host: api.scaleway.com + body: "{\"name\":\"tf-test-image-external-block-volume\",\"root_volume\":\"76d9d4d3-abd9-4ff5-9321-72a89efb8037\",\"arch\":\"x86_64\",\"extra_volumes\":{\"1\":{\"id\":\"ec679b25-8233-4282-ae07-f002f9a66d3f\"},\"2\":{\"id\":\"9e1b874d-3f72-4d75-817b-8adcd58fbffc\"}},\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"public\":false}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 807 + body: "{\"image\": {\"id\": \"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"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\": \"76d9d4d3-abd9-4ff5-9321-72a89efb8037\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"ec679b25-8233-4282-ae07-f002f9a66d3f\", \"size\": 0, \"name\": \"\"}, \"2\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"9e1b874d-3f72-4d75-817b-8adcd58fbffc\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:43:14.109363+00:00\", \"modification_date\": \"2025-10-30T15:43:14.109363+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "807" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:15 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f325b06b-9871-43c5-90d0-018a832c9bf6 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a06ff65d-a9fb-46e0-8084-2ec7c376980f + status: 201 Created + code: 201 + duration: 1.110179858s +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/f325b06b-9871-43c5-90d0-018a832c9bf6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 807 + body: "{\"image\": {\"id\": \"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"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\": \"76d9d4d3-abd9-4ff5-9321-72a89efb8037\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"ec679b25-8233-4282-ae07-f002f9a66d3f\", \"size\": 0, \"name\": \"\"}, \"2\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"9e1b874d-3f72-4d75-817b-8adcd58fbffc\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:43:14.109363+00:00\", \"modification_date\": \"2025-10-30T15:43:14.109363+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "807" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d62ce09a-cda5-4c45-bdd5-8b01b085f873 + status: 200 OK + code: 200 + duration: 130.338627ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/f325b06b-9871-43c5-90d0-018a832c9bf6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 807 + body: "{\"image\": {\"id\": \"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"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\": \"76d9d4d3-abd9-4ff5-9321-72a89efb8037\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"ec679b25-8233-4282-ae07-f002f9a66d3f\", \"size\": 0, \"name\": \"\"}, \"2\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"9e1b874d-3f72-4d75-817b-8adcd58fbffc\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:43:14.109363+00:00\", \"modification_date\": \"2025-10-30T15:43:14.109363+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "807" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 56988429-3430-406c-8ca1-df733349f141 + status: 200 OK + code: 200 + duration: 138.501139ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/f325b06b-9871-43c5-90d0-018a832c9bf6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 807 + body: "{\"image\": {\"id\": \"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"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\": \"76d9d4d3-abd9-4ff5-9321-72a89efb8037\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"ec679b25-8233-4282-ae07-f002f9a66d3f\", \"size\": 0, \"name\": \"\"}, \"2\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"9e1b874d-3f72-4d75-817b-8adcd58fbffc\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:43:14.109363+00:00\", \"modification_date\": \"2025-10-30T15:43:14.109363+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "807" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a3b0e8e7-bfc7-4d2d-99c5-c938907563bd + status: 200 OK + code: 200 + duration: 143.111978ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad270caa-579a-4a9f-8673-3c9e3fd05fa2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 425 + body: "{\"id\":\"ad270caa-579a-4a9f-8673-3c9e3fd05fa2\", \"name\":\"tf-volume-sharp-chebyshev\", \"type\":\"sbs_15k\", \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:02.438698Z\", \"updated_at\":\"2025-10-30T15:43:02.438698Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c0ee2b0d-2a45-46ed-8cbf-b32f480600ce + status: 200 OK + code: 200 + duration: 105.425784ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7ac1ff77-5066-4260-a3f0-db149e045f29 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 424 + body: "{\"id\":\"7ac1ff77-5066-4260-a3f0-db149e045f29\", \"name\":\"tf-volume-confident-rhodes\", \"type\":\"sbs_5k\", \"size\":40000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:02.415231Z\", \"updated_at\":\"2025-10-30T15:43:02.415231Z\", \"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: + - "424" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 951e1efc-75d4-459d-b35e-7a3afa25d092 + status: 200 OK + code: 200 + duration: 107.561972ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1b0f3e27-439f-4396-9592-e56f38493d74 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 424 + body: "{\"id\":\"1b0f3e27-439f-4396-9592-e56f38493d74\", \"name\":\"tf-volume-agitated-lalande\", \"type\":\"sbs_5k\", \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:02.443929Z\", \"updated_at\":\"2025-10-30T15:43:02.443929Z\", \"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: + - "424" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 93086c5d-5c1f-4785-841b-163ce53e0e74 + status: 200 OK + code: 200 + duration: 116.189996ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/76d9d4d3-abd9-4ff5-9321-72a89efb8037 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 689 + body: "{\"id\":\"76d9d4d3-abd9-4ff5-9321-72a89efb8037\", \"name\":\"tf-snapshot-eager-hertz\", \"parent_volume\":{\"id\":\"1b0f3e27-439f-4396-9592-e56f38493d74\", \"name\":\"tf-volume-agitated-lalande\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:03.180058Z\", \"updated_at\":\"2025-10-30T15:43:14.172551Z\", \"references\":[{\"id\":\"0422e3ee-d0b1-4a60-8175-f8acc3cc0b8c\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"created_at\":\"2025-10-30T15:43:14.172551Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "689" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 841043bd-4f1e-4a91-9bc6-c9ca21dd573e + status: 200 OK + code: 200 + duration: 248.804944ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/9e1b874d-3f72-4d75-817b-8adcd58fbffc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 695 + body: "{\"id\":\"9e1b874d-3f72-4d75-817b-8adcd58fbffc\", \"name\":\"tf-snapshot-mystifying-clarke\", \"parent_volume\":{\"id\":\"7ac1ff77-5066-4260-a3f0-db149e045f29\", \"name\":\"tf-volume-confident-rhodes\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":40000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:08.021976Z\", \"updated_at\":\"2025-10-30T15:43:14.687694Z\", \"references\":[{\"id\":\"340240b0-2e94-4b9f-946b-bae7c199536d\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"created_at\":\"2025-10-30T15:43:14.687694Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "695" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6489e463-dfba-40da-b355-2af321a30c96 + status: 200 OK + code: 200 + duration: 266.531886ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ec679b25-8233-4282-ae07-f002f9a66d3f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 696 + body: "{\"id\":\"ec679b25-8233-4282-ae07-f002f9a66d3f\", \"name\":\"tf-snapshot-magical-archimedes\", \"parent_volume\":{\"id\":\"ad270caa-579a-4a9f-8673-3c9e3fd05fa2\", \"name\":\"tf-volume-sharp-chebyshev\", \"type\":\"sbs_15k\", \"status\":\"available\"}, \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:03.111400Z\", \"updated_at\":\"2025-10-30T15:43:14.452818Z\", \"references\":[{\"id\":\"6b6f34ce-7c0f-4af4-8873-902dc3da598b\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"created_at\":\"2025-10-30T15:43:14.452818Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "696" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d57efa20-7c2a-40bf-9bad-dcfa1522755d + status: 200 OK + code: 200 + duration: 267.851762ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/f325b06b-9871-43c5-90d0-018a832c9bf6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 807 + body: "{\"image\": {\"id\": \"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"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\": \"76d9d4d3-abd9-4ff5-9321-72a89efb8037\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"ec679b25-8233-4282-ae07-f002f9a66d3f\", \"size\": 0, \"name\": \"\"}, \"2\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"9e1b874d-3f72-4d75-817b-8adcd58fbffc\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:43:14.109363+00:00\", \"modification_date\": \"2025-10-30T15:43:14.109363+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "807" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f7a1a416-a2ad-4245-8fe4-08ff5998bd60 + status: 200 OK + code: 200 + duration: 119.952253ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1b0f3e27-439f-4396-9592-e56f38493d74 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 424 + body: "{\"id\":\"1b0f3e27-439f-4396-9592-e56f38493d74\", \"name\":\"tf-volume-agitated-lalande\", \"type\":\"sbs_5k\", \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:02.443929Z\", \"updated_at\":\"2025-10-30T15:43:02.443929Z\", \"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: + - "424" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 943391e7-6a50-40b1-955f-3334173aae0f + status: 200 OK + code: 200 + duration: 97.280043ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7ac1ff77-5066-4260-a3f0-db149e045f29 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 424 + body: "{\"id\":\"7ac1ff77-5066-4260-a3f0-db149e045f29\", \"name\":\"tf-volume-confident-rhodes\", \"type\":\"sbs_5k\", \"size\":40000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:02.415231Z\", \"updated_at\":\"2025-10-30T15:43:02.415231Z\", \"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: + - "424" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2be3e609-961a-4034-856c-411340357f3e + status: 200 OK + code: 200 + duration: 99.57578ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad270caa-579a-4a9f-8673-3c9e3fd05fa2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 425 + body: "{\"id\":\"ad270caa-579a-4a9f-8673-3c9e3fd05fa2\", \"name\":\"tf-volume-sharp-chebyshev\", \"type\":\"sbs_15k\", \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:02.438698Z\", \"updated_at\":\"2025-10-30T15:43:02.438698Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0f1647bd-0118-4560-995c-16c4e16fd20d + status: 200 OK + code: 200 + duration: 122.724905ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/9e1b874d-3f72-4d75-817b-8adcd58fbffc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 695 + body: "{\"id\":\"9e1b874d-3f72-4d75-817b-8adcd58fbffc\", \"name\":\"tf-snapshot-mystifying-clarke\", \"parent_volume\":{\"id\":\"7ac1ff77-5066-4260-a3f0-db149e045f29\", \"name\":\"tf-volume-confident-rhodes\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":40000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:08.021976Z\", \"updated_at\":\"2025-10-30T15:43:14.687694Z\", \"references\":[{\"id\":\"340240b0-2e94-4b9f-946b-bae7c199536d\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"created_at\":\"2025-10-30T15:43:14.687694Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "695" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 22342cec-7cad-45b4-a2f3-048fc1caa6ef + status: 200 OK + code: 200 + duration: 155.222275ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/76d9d4d3-abd9-4ff5-9321-72a89efb8037 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 689 + body: "{\"id\":\"76d9d4d3-abd9-4ff5-9321-72a89efb8037\", \"name\":\"tf-snapshot-eager-hertz\", \"parent_volume\":{\"id\":\"1b0f3e27-439f-4396-9592-e56f38493d74\", \"name\":\"tf-volume-agitated-lalande\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:03.180058Z\", \"updated_at\":\"2025-10-30T15:43:14.172551Z\", \"references\":[{\"id\":\"0422e3ee-d0b1-4a60-8175-f8acc3cc0b8c\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"created_at\":\"2025-10-30T15:43:14.172551Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "689" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4491fe76-551b-4cc8-8bd6-a6dbf30d50b4 + status: 200 OK + code: 200 + duration: 173.732028ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ec679b25-8233-4282-ae07-f002f9a66d3f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 696 + body: "{\"id\":\"ec679b25-8233-4282-ae07-f002f9a66d3f\", \"name\":\"tf-snapshot-magical-archimedes\", \"parent_volume\":{\"id\":\"ad270caa-579a-4a9f-8673-3c9e3fd05fa2\", \"name\":\"tf-volume-sharp-chebyshev\", \"type\":\"sbs_15k\", \"status\":\"available\"}, \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:03.111400Z\", \"updated_at\":\"2025-10-30T15:43:14.452818Z\", \"references\":[{\"id\":\"6b6f34ce-7c0f-4af4-8873-902dc3da598b\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"created_at\":\"2025-10-30T15:43:14.452818Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "696" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fe62eb99-4374-4928-be23-58807a73252d + status: 200 OK + code: 200 + duration: 171.496393ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/f325b06b-9871-43c5-90d0-018a832c9bf6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 807 + body: "{\"image\": {\"id\": \"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"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\": \"76d9d4d3-abd9-4ff5-9321-72a89efb8037\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"ec679b25-8233-4282-ae07-f002f9a66d3f\", \"size\": 0, \"name\": \"\"}, \"2\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"9e1b874d-3f72-4d75-817b-8adcd58fbffc\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:43:14.109363+00:00\", \"modification_date\": \"2025-10-30T15:43:14.109363+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "807" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f0c60100-2fff-4dad-9845-3b64fa34813c + status: 200 OK + code: 200 + duration: 144.007969ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/f325b06b-9871-43c5-90d0-018a832c9bf6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 807 + body: "{\"image\": {\"id\": \"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"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\": \"76d9d4d3-abd9-4ff5-9321-72a89efb8037\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"ec679b25-8233-4282-ae07-f002f9a66d3f\", \"size\": 0, \"name\": \"\"}, \"2\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"9e1b874d-3f72-4d75-817b-8adcd58fbffc\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:43:14.109363+00:00\", \"modification_date\": \"2025-10-30T15:43:14.109363+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "807" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - af202c02-fdc1-4d77-aa0c-3eab8727f3b1 + status: 200 OK + code: 200 + duration: 141.92425ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/f325b06b-9871-43c5-90d0-018a832c9bf6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 807 + body: "{\"image\": {\"id\": \"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"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\": \"76d9d4d3-abd9-4ff5-9321-72a89efb8037\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"ec679b25-8233-4282-ae07-f002f9a66d3f\", \"size\": 0, \"name\": \"\"}, \"2\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"9e1b874d-3f72-4d75-817b-8adcd58fbffc\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:43:14.109363+00:00\", \"modification_date\": \"2025-10-30T15:43:14.109363+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "807" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b049b4d1-88aa-4326-bab3-21fcac943614 + status: 200 OK + code: 200 + duration: 152.812094ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 72 + host: api.scaleway.com + body: "{\"name\":\"tf-test-image-external-block-volume\",\"arch\":\"x86_64\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/f325b06b-9871-43c5-90d0-018a832c9bf6 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 807 + body: "{\"image\": {\"id\": \"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"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\": \"76d9d4d3-abd9-4ff5-9321-72a89efb8037\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"ec679b25-8233-4282-ae07-f002f9a66d3f\", \"size\": 0, \"name\": \"\"}, \"2\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"9e1b874d-3f72-4d75-817b-8adcd58fbffc\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:43:14.109363+00:00\", \"modification_date\": \"2025-10-30T15:43:14.109363+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "807" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8dd4b1aa-6ea0-4f9c-a637-314adb4b6854 + status: 200 OK + code: 200 + duration: 166.953572ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/f325b06b-9871-43c5-90d0-018a832c9bf6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 807 + body: "{\"image\": {\"id\": \"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"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\": \"76d9d4d3-abd9-4ff5-9321-72a89efb8037\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"ec679b25-8233-4282-ae07-f002f9a66d3f\", \"size\": 0, \"name\": \"\"}, \"2\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"9e1b874d-3f72-4d75-817b-8adcd58fbffc\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:43:14.109363+00:00\", \"modification_date\": \"2025-10-30T15:43:14.109363+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "807" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8d7e26ac-56e2-473f-9912-23171e528773 + status: 200 OK + code: 200 + duration: 143.33692ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/f325b06b-9871-43c5-90d0-018a832c9bf6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 807 + body: "{\"image\": {\"id\": \"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"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\": \"76d9d4d3-abd9-4ff5-9321-72a89efb8037\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"ec679b25-8233-4282-ae07-f002f9a66d3f\", \"size\": 0, \"name\": \"\"}, \"2\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"9e1b874d-3f72-4d75-817b-8adcd58fbffc\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:43:14.109363+00:00\", \"modification_date\": \"2025-10-30T15:43:14.109363+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "807" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7c2bd8d3-6c1f-401b-a404-3f1168e97d5e + status: 200 OK + code: 200 + duration: 130.213903ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/f325b06b-9871-43c5-90d0-018a832c9bf6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 807 + body: "{\"image\": {\"id\": \"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"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\": \"76d9d4d3-abd9-4ff5-9321-72a89efb8037\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"ec679b25-8233-4282-ae07-f002f9a66d3f\", \"size\": 0, \"name\": \"\"}, \"2\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"9e1b874d-3f72-4d75-817b-8adcd58fbffc\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:43:14.109363+00:00\", \"modification_date\": \"2025-10-30T15:43:14.109363+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "807" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c0015e78-2fed-4acf-9e89-c52ad6e1807d + status: 200 OK + code: 200 + duration: 107.824254ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1b0f3e27-439f-4396-9592-e56f38493d74 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 424 + body: "{\"id\":\"1b0f3e27-439f-4396-9592-e56f38493d74\", \"name\":\"tf-volume-agitated-lalande\", \"type\":\"sbs_5k\", \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:02.443929Z\", \"updated_at\":\"2025-10-30T15:43:02.443929Z\", \"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: + - "424" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 08216c3d-959d-44e6-99a6-ead3e840074f + status: 200 OK + code: 200 + duration: 75.748333ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad270caa-579a-4a9f-8673-3c9e3fd05fa2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 425 + body: "{\"id\":\"ad270caa-579a-4a9f-8673-3c9e3fd05fa2\", \"name\":\"tf-volume-sharp-chebyshev\", \"type\":\"sbs_15k\", \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:02.438698Z\", \"updated_at\":\"2025-10-30T15:43:02.438698Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 62d13e3e-3782-4a49-8ce7-d19f0444b60f + status: 200 OK + code: 200 + duration: 90.417661ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7ac1ff77-5066-4260-a3f0-db149e045f29 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 424 + body: "{\"id\":\"7ac1ff77-5066-4260-a3f0-db149e045f29\", \"name\":\"tf-volume-confident-rhodes\", \"type\":\"sbs_5k\", \"size\":40000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:02.415231Z\", \"updated_at\":\"2025-10-30T15:43:02.415231Z\", \"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: + - "424" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cd970d36-1a3a-45aa-8a54-0f4f504e6067 + status: 200 OK + code: 200 + duration: 94.850246ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ec679b25-8233-4282-ae07-f002f9a66d3f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 696 + body: "{\"id\":\"ec679b25-8233-4282-ae07-f002f9a66d3f\", \"name\":\"tf-snapshot-magical-archimedes\", \"parent_volume\":{\"id\":\"ad270caa-579a-4a9f-8673-3c9e3fd05fa2\", \"name\":\"tf-volume-sharp-chebyshev\", \"type\":\"sbs_15k\", \"status\":\"available\"}, \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:03.111400Z\", \"updated_at\":\"2025-10-30T15:43:14.452818Z\", \"references\":[{\"id\":\"6b6f34ce-7c0f-4af4-8873-902dc3da598b\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"created_at\":\"2025-10-30T15:43:14.452818Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "696" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b9984056-cbd3-4155-b43b-70a8e6267ae8 + status: 200 OK + code: 200 + duration: 363.778249ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/9e1b874d-3f72-4d75-817b-8adcd58fbffc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 695 + body: "{\"id\":\"9e1b874d-3f72-4d75-817b-8adcd58fbffc\", \"name\":\"tf-snapshot-mystifying-clarke\", \"parent_volume\":{\"id\":\"7ac1ff77-5066-4260-a3f0-db149e045f29\", \"name\":\"tf-volume-confident-rhodes\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":40000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:08.021976Z\", \"updated_at\":\"2025-10-30T15:43:14.687694Z\", \"references\":[{\"id\":\"340240b0-2e94-4b9f-946b-bae7c199536d\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"created_at\":\"2025-10-30T15:43:14.687694Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "695" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6950c54c-88b1-4712-9eac-a680036b7247 + status: 200 OK + code: 200 + duration: 360.660841ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/76d9d4d3-abd9-4ff5-9321-72a89efb8037 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 689 + body: "{\"id\":\"76d9d4d3-abd9-4ff5-9321-72a89efb8037\", \"name\":\"tf-snapshot-eager-hertz\", \"parent_volume\":{\"id\":\"1b0f3e27-439f-4396-9592-e56f38493d74\", \"name\":\"tf-volume-agitated-lalande\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:03.180058Z\", \"updated_at\":\"2025-10-30T15:43:14.172551Z\", \"references\":[{\"id\":\"0422e3ee-d0b1-4a60-8175-f8acc3cc0b8c\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"created_at\":\"2025-10-30T15:43:14.172551Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "689" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3de22536-1de4-41e2-b6fd-16a1d9bd8bc7 + status: 200 OK + code: 200 + duration: 379.927583ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/f325b06b-9871-43c5-90d0-018a832c9bf6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 807 + body: "{\"image\": {\"id\": \"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"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\": \"76d9d4d3-abd9-4ff5-9321-72a89efb8037\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"ec679b25-8233-4282-ae07-f002f9a66d3f\", \"size\": 0, \"name\": \"\"}, \"2\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"9e1b874d-3f72-4d75-817b-8adcd58fbffc\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:43:14.109363+00:00\", \"modification_date\": \"2025-10-30T15:43:14.109363+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "807" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6102b994-047d-46a6-b84f-781dfa036b22 + status: 200 OK + code: 200 + duration: 140.472808ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/f325b06b-9871-43c5-90d0-018a832c9bf6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 807 + body: "{\"image\": {\"id\": \"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"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\": \"76d9d4d3-abd9-4ff5-9321-72a89efb8037\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"ec679b25-8233-4282-ae07-f002f9a66d3f\", \"size\": 0, \"name\": \"\"}, \"2\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"9e1b874d-3f72-4d75-817b-8adcd58fbffc\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:43:14.109363+00:00\", \"modification_date\": \"2025-10-30T15:43:14.109363+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "807" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9e29b059-e1af-4c93-bfc7-38c20c43c019 + status: 200 OK + code: 200 + duration: 119.778919ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/9e1b874d-3f72-4d75-817b-8adcd58fbffc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 695 + body: "{\"id\":\"9e1b874d-3f72-4d75-817b-8adcd58fbffc\", \"name\":\"tf-snapshot-mystifying-clarke\", \"parent_volume\":{\"id\":\"7ac1ff77-5066-4260-a3f0-db149e045f29\", \"name\":\"tf-volume-confident-rhodes\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":40000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:08.021976Z\", \"updated_at\":\"2025-10-30T15:43:14.687694Z\", \"references\":[{\"id\":\"340240b0-2e94-4b9f-946b-bae7c199536d\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"created_at\":\"2025-10-30T15:43:14.687694Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "695" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6495626d-c21b-4dc1-919b-906dd4c05463 + status: 200 OK + code: 200 + duration: 307.819958ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ec679b25-8233-4282-ae07-f002f9a66d3f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 696 + body: "{\"id\":\"ec679b25-8233-4282-ae07-f002f9a66d3f\", \"name\":\"tf-snapshot-magical-archimedes\", \"parent_volume\":{\"id\":\"ad270caa-579a-4a9f-8673-3c9e3fd05fa2\", \"name\":\"tf-volume-sharp-chebyshev\", \"type\":\"sbs_15k\", \"status\":\"available\"}, \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:03.111400Z\", \"updated_at\":\"2025-10-30T15:43:14.452818Z\", \"references\":[{\"id\":\"6b6f34ce-7c0f-4af4-8873-902dc3da598b\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"created_at\":\"2025-10-30T15:43:14.452818Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "696" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 88ae4962-ec4a-40cf-8379-677f329223b0 + status: 200 OK + code: 200 + duration: 310.824805ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/f325b06b-9871-43c5-90d0-018a832c9bf6 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d3558198-03e9-4b6f-8fce-873de14d4128 + status: 204 No Content + code: 204 + duration: 666.677748ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/f325b06b-9871-43c5-90d0-018a832c9bf6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 142 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_image\", \"resource_id\": \"f325b06b-9871-43c5-90d0-018a832c9bf6\"}" + headers: + Content-Length: + - "142" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7118e3f6-f904-43a7-9668-e673f99698ac + status: 404 Not Found + code: 404 + duration: 37.515865ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/76d9d4d3-abd9-4ff5-9321-72a89efb8037 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 689 + body: "{\"id\":\"76d9d4d3-abd9-4ff5-9321-72a89efb8037\", \"name\":\"tf-snapshot-eager-hertz\", \"parent_volume\":{\"id\":\"1b0f3e27-439f-4396-9592-e56f38493d74\", \"name\":\"tf-volume-agitated-lalande\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:03.180058Z\", \"updated_at\":\"2025-10-30T15:43:14.172551Z\", \"references\":[{\"id\":\"0422e3ee-d0b1-4a60-8175-f8acc3cc0b8c\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"f325b06b-9871-43c5-90d0-018a832c9bf6\", \"created_at\":\"2025-10-30T15:43:14.172551Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "689" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3189051c-ef79-41bd-b9f2-70da06e54f13 + status: 200 OK + code: 200 + duration: 310.371625ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/9e1b874d-3f72-4d75-817b-8adcd58fbffc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 469 + body: "{\"id\":\"9e1b874d-3f72-4d75-817b-8adcd58fbffc\", \"name\":\"tf-snapshot-mystifying-clarke\", \"parent_volume\":{\"id\":\"7ac1ff77-5066-4260-a3f0-db149e045f29\", \"name\":\"tf-volume-confident-rhodes\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":40000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:08.021976Z\", \"updated_at\":\"2025-10-30T15:43:19.609764Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "469" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0d8fd35a-7e10-452f-9529-99f2420dbe19 + status: 200 OK + code: 200 + duration: 257.393468ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ec679b25-8233-4282-ae07-f002f9a66d3f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 470 + body: "{\"id\":\"ec679b25-8233-4282-ae07-f002f9a66d3f\", \"name\":\"tf-snapshot-magical-archimedes\", \"parent_volume\":{\"id\":\"ad270caa-579a-4a9f-8673-3c9e3fd05fa2\", \"name\":\"tf-volume-sharp-chebyshev\", \"type\":\"sbs_15k\", \"status\":\"available\"}, \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:03.111400Z\", \"updated_at\":\"2025-10-30T15:43:19.505062Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "470" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5d6b194f-4628-4c12-bcdc-10d96167763f + status: 200 OK + code: 200 + duration: 258.225929ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/9e1b874d-3f72-4d75-817b-8adcd58fbffc + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - adb1b112-1ece-42d7-9427-2bd83958f58b + status: 204 No Content + code: 204 + duration: 443.417226ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ec679b25-8233-4282-ae07-f002f9a66d3f + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2461a139-4784-4af4-b313-42ca5ebcff3a + status: 204 No Content + code: 204 + duration: 440.727751ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ec679b25-8233-4282-ae07-f002f9a66d3f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 129 + body: "{\"message\":\"resource is not found\",\"resource\":\"snapshot\",\"resource_id\":\"ec679b25-8233-4282-ae07-f002f9a66d3f\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "129" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d5bdbc12-7525-4b5a-a479-c1c81cff24f2 + status: 404 Not Found + code: 404 + duration: 75.89545ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/9e1b874d-3f72-4d75-817b-8adcd58fbffc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 129 + body: "{\"message\":\"resource is not found\",\"resource\":\"snapshot\",\"resource_id\":\"9e1b874d-3f72-4d75-817b-8adcd58fbffc\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "129" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 642b4fed-3d00-44a7-a782-abf1efddb959 + status: 404 Not Found + code: 404 + duration: 105.86518ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad270caa-579a-4a9f-8673-3c9e3fd05fa2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 425 + body: "{\"id\":\"ad270caa-579a-4a9f-8673-3c9e3fd05fa2\", \"name\":\"tf-volume-sharp-chebyshev\", \"type\":\"sbs_15k\", \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:02.438698Z\", \"updated_at\":\"2025-10-30T15:43:02.438698Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a15fb39d-a19d-46ec-9b35-2f01c36c167e + status: 200 OK + code: 200 + duration: 98.84423ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7ac1ff77-5066-4260-a3f0-db149e045f29 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 424 + body: "{\"id\":\"7ac1ff77-5066-4260-a3f0-db149e045f29\", \"name\":\"tf-volume-confident-rhodes\", \"type\":\"sbs_5k\", \"size\":40000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:02.415231Z\", \"updated_at\":\"2025-10-30T15:43:02.415231Z\", \"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: + - "424" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dd957a4e-d543-4030-89ed-ab5737521b4e + status: 200 OK + code: 200 + duration: 118.063292ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/76d9d4d3-abd9-4ff5-9321-72a89efb8037 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"id\":\"76d9d4d3-abd9-4ff5-9321-72a89efb8037\", \"name\":\"tf-snapshot-eager-hertz\", \"parent_volume\":{\"id\":\"1b0f3e27-439f-4396-9592-e56f38493d74\", \"name\":\"tf-volume-agitated-lalande\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:03.180058Z\", \"updated_at\":\"2025-10-30T15:43:19.700857Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "463" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cdc60076-fa65-4ce6-83e6-db3499534649 + status: 200 OK + code: 200 + duration: 171.060258ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad270caa-579a-4a9f-8673-3c9e3fd05fa2 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f9068273-405f-4de3-a1eb-03f5ba0a2627 + status: 204 No Content + code: 204 + duration: 147.079873ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7ac1ff77-5066-4260-a3f0-db149e045f29 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - be6a674e-864f-4bd9-b3f0-ca3cd0ef73dc + status: 204 No Content + code: 204 + duration: 177.454643ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad270caa-579a-4a9f-8673-3c9e3fd05fa2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"ad270caa-579a-4a9f-8673-3c9e3fd05fa2\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6e9751d4-3f1f-4574-b271-5a0f1bfe35b3 + status: 404 Not Found + code: 404 + duration: 73.552085ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7ac1ff77-5066-4260-a3f0-db149e045f29 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"7ac1ff77-5066-4260-a3f0-db149e045f29\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c81cab39-e10f-43e3-8d48-013d2c441120 + status: 404 Not Found + code: 404 + duration: 100.927687ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/76d9d4d3-abd9-4ff5-9321-72a89efb8037 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6d2255fc-7fbb-44da-88a8-f42010f40ddb + status: 204 No Content + code: 204 + duration: 283.516472ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/76d9d4d3-abd9-4ff5-9321-72a89efb8037 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 129 + body: "{\"message\":\"resource is not found\",\"resource\":\"snapshot\",\"resource_id\":\"76d9d4d3-abd9-4ff5-9321-72a89efb8037\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "129" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6f1c20f7-cbbe-4649-a768-c85a9668ecf0 + status: 404 Not Found + code: 404 + duration: 78.230661ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1b0f3e27-439f-4396-9592-e56f38493d74 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 424 + body: "{\"id\":\"1b0f3e27-439f-4396-9592-e56f38493d74\", \"name\":\"tf-volume-agitated-lalande\", \"type\":\"sbs_5k\", \"size\":20000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:02.443929Z\", \"updated_at\":\"2025-10-30T15:43:02.443929Z\", \"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: + - "424" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fb91eeba-0001-4ee6-8b51-e6ed9ded284a + status: 200 OK + code: 200 + duration: 102.534542ms +- id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1b0f3e27-439f-4396-9592-e56f38493d74 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ca09cfed-28dc-4402-9990-9c68bfa02edf + status: 204 No Content + code: 204 + duration: 180.968895ms +- id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1b0f3e27-439f-4396-9592-e56f38493d74 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"1b0f3e27-439f-4396-9592-e56f38493d74\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 676b6061-53f3-46aa-83df-f66ede0d2192 + status: 404 Not Found + code: 404 + duration: 75.279726ms +- id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/f325b06b-9871-43c5-90d0-018a832c9bf6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 142 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_image\", \"resource_id\": \"f325b06b-9871-43c5-90d0-018a832c9bf6\"}" + headers: + Content-Length: + - "142" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b1a0751f-ee57-4811-ace3-b7a1b217d597 + status: 404 Not Found + code: 404 + duration: 27.557805ms 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 b0a0cb5ec..99c1f6dd0 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 @@ -1,7986 +1,6388 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:16 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6580a257-099a-4867-bd57-3096a8f55173 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 35.676751ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:16 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 97d99a97-d8ea-4950-9150-869896d2ec91 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 46.294485ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:16 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a2d299cd-5c6b-4e71-a1f9-c7de08034c88 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 41.561715ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:16 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 608dfff1-94e2-460a-ab44-c98323ae776c - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 79.321521ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:16 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2cf720aa-cac8-474e-9900-b6eb7b9f463d - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 43.595909ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 92ab05e8-b7cb-4e9b-8293-ca7920446adc - status: 200 OK - code: 200 - duration: 53.240994ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:16 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d9f355b3-f59b-4ac0-9028-7b3161c78b0b - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 66.489927ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ba526c6a-3018-45a8-b15d-e2613be214c1 - status: 200 OK - code: 200 - duration: 58.315432ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ceb6fcb2-6809-4165-97d0-a22271b7d7e2 - status: 200 OK - code: 200 - duration: 50.596389ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 272 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2148 - uncompressed: false - 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: - - "2148" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d9be3f0e-f3e5-4236-a5f2-ba6a26111852 - status: 201 Created - code: 201 - duration: 696.022314ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 277 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-srv-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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2163 - uncompressed: false - body: '{"server": {"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: - - "2163" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a2af5510-fe2a-4f1c-9b1b-6c493c0aaa9c - status: 201 Created - code: 201 - duration: 773.458961ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2148 - uncompressed: false - 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: - - "2148" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ddbb2c9b-c6db-49d0-90c3-66c65d178605 - status: 200 OK - code: 200 - duration: 136.393138ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 276 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2206 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 78b5efed-2832-4f31-9475-736691fe3380 - status: 201 Created - code: 201 - duration: 812.726106ms - - 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/78d779c0-0943-4794-9cfb-55cc019d8c65 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2163 - uncompressed: false - 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: - - "2163" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - de50867e-bd35-40b8-8aa2-d200c7bf3f9b - status: 200 OK - code: 200 - duration: 113.016116ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2148 - uncompressed: false - 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: - - "2148" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c130335e-7dc7-4257-8ad6-8e5ef9f4ff68 - status: 200 OK - code: 200 - duration: 127.570931ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2209 - uncompressed: false - 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: - - "2209" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 160f391e-b448-48f0-8d66-26a997559868 - status: 200 OK - code: 200 - duration: 115.893136ms - - id: 16 - 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/42a9d058-3b14-4d28-a2b0-335b250ac818/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": "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: - - "357" - Content-Type: - - application/json - Date: - - 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;edge03) - X-Request-Id: - - 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: 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/78d779c0-0943-4794-9cfb-55cc019d8c65/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": "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: - - "357" - Content-Type: - - application/json - Date: - - 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;edge03) - X-Request-Id: - - 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: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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: 2170 - uncompressed: false - 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: - - "2170" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2fc62bdd-1942-4fc2-a8ca-2707ba9ab3b6 - status: 200 OK - code: 200 - duration: 126.251245ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2206 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 03850284-931c-4ce2-ae16-c7c32a4287ea - status: 200 OK - code: 200 - duration: 477.039314ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2231 - uncompressed: false - 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: - - "2231" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d1ea785f-b6a8-460d-82de-9b6188ec8ba7 - status: 200 OK - code: 200 - duration: 128.517642ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2160 - uncompressed: false - 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: - - "2160" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8c2bf885-cbc1-4127-81bb-32d99b390d8b - status: 200 OK - code: 200 - duration: 174.158605ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweron"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:18 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/aad62d9f-f308-46ae-bd1c-274d1a9f2410 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 941043c5-334a-4862-8b56-5a035600cb99 - status: 202 Accepted - code: 202 - duration: 272.192317ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2228 - uncompressed: false - 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: - - "2228" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 46060f37-491e-4ace-aa01-2e57284bfdc3 - status: 200 OK - code: 200 - duration: 132.787016ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2319 - uncompressed: false - 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: - - "2319" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c623f806-8096-4613-bb0c-c72b36a9e248 - status: 200 OK - code: 200 - duration: 148.098818ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2334 - uncompressed: false - 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: - - "2334" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - db58d790-1de9-4d89-b7ee-18663f803416 - status: 200 OK - code: 200 - duration: 142.715903ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2331 - uncompressed: false - 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: - - "2331" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 72522a71-dad6-4711-b5ae-41b3efa2c7cb - status: 200 OK - code: 200 - duration: 134.174352ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2350 - uncompressed: false - 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: - - "2350" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 914f3b37-2fc5-44f4-af75-c0e7410c1f09 - status: 200 OK - code: 200 - duration: 142.361282ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2319 - uncompressed: false - 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: - - "2319" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6bfa7001-0481-427e-abfb-2b6ac3454449 - status: 200 OK - code: 200 - duration: 134.462342ms - - 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/42a9d058-3b14-4d28-a2b0-335b250ac818 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2350 - uncompressed: false - 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: - - "2350" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5c354a8c-cdaa-428e-8ae3-b55f2757140a - status: 200 OK - code: 200 - duration: 135.679849ms - - 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/78d779c0-0943-4794-9cfb-55cc019d8c65 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2319 - uncompressed: false - 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: - - "2319" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6387e4df-c5e0-4907-ab28-9c7ce74298e6 - status: 200 OK - code: 200 - duration: 123.443689ms - - 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/17e3abb0-7064-48d4-902c-ebe15af2816f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 518 - uncompressed: false - 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: - - "518" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7d6eabed-31dd-4199-a4be-01469a3ed7d6 - status: 200 OK - code: 200 - duration: 97.840844ms - - 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/volumes/b17c55bd-bb5c-481c-8d20-a8da601b6e46 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 523 - uncompressed: false - 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: - - "523" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cab455da-819b-4b30-917b-90520373e2c2 - status: 200 OK - code: 200 - duration: 94.985504ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4ef32a86-8b2f-4d17-8517-47b6b45f19e8 - status: 200 OK - code: 200 - duration: 97.676206ms - - 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/78d779c0-0943-4794-9cfb-55cc019d8c65/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:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 45be9084-7f8f-4103-9c55-f3ec8b953e2b - status: 200 OK - code: 200 - duration: 107.771283ms - - 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/42a9d058-3b14-4d28-a2b0-335b250ac818/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:54:28 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 52eab125-13b6-49b9-8f1b-11411b987f5d - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 104.328745ms - - 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/78d779c0-0943-4794-9cfb-55cc019d8c65/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:54:28 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fce15503-f8d1-4e4b-8389-98cf390735df - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 97.17106ms - - 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/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2316 - uncompressed: false - 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: - - "2316" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d6f7e702-46bd-484f-83ec-232992afcdf6 - status: 200 OK - code: 200 - duration: 138.444909ms - - 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/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2362 - uncompressed: false - 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: - - "2362" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d85aded4-4f74-4983-9dc5-c8f2eeca110c - status: 200 OK - code: 200 - duration: 119.731316ms - - 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/volumes/4ccceaa5-00cc-42d9-b71b-f994c3ce16c0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 522 - uncompressed: false - 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: - - "522" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d6417a90-c492-4b1f-b33d-0548de10c928 - status: 200 OK - code: 200 - duration: 85.903261ms - - 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/a029e8ee-fc19-44f3-a33c-25d9f6410ed0/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:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 984727e7-91a5-42a5-9557-eb2e40ee38b4 - status: 200 OK - code: 200 - duration: 92.331151ms - - 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/a029e8ee-fc19-44f3-a33c-25d9f6410ed0/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:54:29 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 431be663-b9ac-48e3-acf8-bdfe393a092b - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 84.574456ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 132 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-snap-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/snapshots - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 845 - uncompressed: false - 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: - - "845" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 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: 134 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/snapshots - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 847 - uncompressed: false - 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: - - "847" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b677a161-c585-4747-a37d-f3d058235f04 - status: 201 Created - code: 201 - duration: 579.462612ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 536 - uncompressed: false - 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: - - "536" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ea8f556c-148e-4c20-a873-8eb43ac4f5a8 - status: 200 OK - code: 200 - duration: 94.323747ms - - 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/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - 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: - - "534" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 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: 137 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-snap-quizzical-einstein","volume_id":"4ccceaa5-00cc-42d9-b71b-f994c3ce16c0","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/snapshots - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 850 - uncompressed: false - 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: - - "850" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 96f9fe19-c66d-4ea7-9672-9d4849baa465 - status: 201 Created - code: 201 - duration: 634.622096ms - - 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/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 539 - uncompressed: false - 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: - - "539" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e5cb87f1-ca3a-4848-83b8-922f289e5f2a - status: 200 OK - code: 200 - duration: 105.783816ms - - 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/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 536 - uncompressed: false - 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: - - "536" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4617f57b-089d-4f70-9d52-91917fb8831e - status: 200 OK - code: 200 - duration: 96.443562ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - 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: - - "534" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 66a95e15-f3d1-44ae-8ef1-19f91a611455 - status: 200 OK - code: 200 - duration: 271.301413ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 539 - uncompressed: false - 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: - - "539" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b266db5c-2e73-4eb3-b7cd-09dd68862b20 - status: 200 OK - code: 200 - duration: 270.047189ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 536 - uncompressed: false - 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: - - "536" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c5a8da10-2387-4c2c-a223-2e6ad677eefc - status: 200 OK - code: 200 - duration: 195.443577ms - - id: 52 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - 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: - - "534" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b6776a24-0824-4e5d-b914-cd6a0b65e8a2 - status: 200 OK - code: 200 - duration: 118.682529ms - - id: 53 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 539 - uncompressed: false - 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: - - "539" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a90b1a2d-51de-4329-b8dc-dc4ecf2e5068 - status: 200 OK - code: 200 - duration: 179.039984ms - - id: 54 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 536 - uncompressed: false - 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: - - "536" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fec8ce0c-edbd-4076-b8cc-1b361da9afea - status: 200 OK - code: 200 - duration: 124.624631ms - - id: 55 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - 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: - - "534" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b852dd6d-3e8d-4a4e-9cd9-a4e1d51018f0 - status: 200 OK - code: 200 - duration: 110.920215ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 539 - uncompressed: false - 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: - - "539" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1eb60d1a-cc32-446e-9feb-a57f8f857dcc - status: 200 OK - code: 200 - duration: 218.961849ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 536 - uncompressed: false - 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: - - "536" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f7437640-51a4-403d-a1dd-1578072e35cc - status: 200 OK - code: 200 - duration: 101.55816ms - - id: 58 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - 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: - - "534" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8de5cb63-d183-4ef5-b73d-3795cbd9573b - status: 200 OK - code: 200 - duration: 98.939473ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 539 - uncompressed: false - 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: - - "539" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 29de9112-4d81-4ace-baa2-9a36e1e41a4b - status: 200 OK - code: 200 - duration: 111.374877ms - - id: 60 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 536 - uncompressed: false - 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: - - "536" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3b5e3a44-e262-48ae-b461-8645a92f118b - status: 200 OK - code: 200 - duration: 118.227483ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - 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: - - "534" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 415a28c6-08c3-44f3-b513-69a003d9e2c3 - status: 200 OK - code: 200 - duration: 109.483993ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 539 - uncompressed: false - 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: - - "539" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7ad2fb46-f1d6-478c-af97-da614d2f6e1c - status: 200 OK - code: 200 - duration: 104.788062ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 536 - uncompressed: false - 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: - - "536" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8cbea509-e14e-4480-9abe-c010b4ab80a5 - status: 200 OK - code: 200 - duration: 116.894171ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - 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: - - "534" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bc4d029e-c202-402f-926c-6f5a9df798f3 - status: 200 OK - code: 200 - duration: 106.905382ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 539 - uncompressed: false - 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: - - "539" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0b54c2f2-0779-4cbc-ba39-5fb55a84a6d2 - status: 200 OK - code: 200 - duration: 126.099053ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 536 - uncompressed: false - 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: - - "536" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2929379f-6579-4777-ac9b-4fd069cd926d - status: 200 OK - code: 200 - duration: 136.937073ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - 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: - - "534" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6e6eb21c-5806-44c6-b80f-f1f36d25a616 - status: 200 OK - code: 200 - duration: 112.106119ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 539 - uncompressed: false - 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: - - "539" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ab9cd2e2-f290-460f-8bea-bc2c46892b9e - status: 200 OK - code: 200 - duration: 92.862835ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 536 - uncompressed: false - 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: - - "536" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5420c240-0020-4804-91b4-c0214223eaf8 - status: 200 OK - code: 200 - duration: 100.833671ms - - id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - 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: - - "534" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 22239138-b14e-476f-a50b-d870d6653b8a - status: 200 OK - code: 200 - duration: 111.729156ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 539 - uncompressed: false - 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: - - "539" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 89b54e7d-0106-4ce5-8428-8bb1c5a4d5ba - status: 200 OK - code: 200 - duration: 90.625872ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 536 - uncompressed: false - 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: - - "536" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - da9b8cf5-b32d-449a-8b22-4d7d313855d7 - status: 200 OK - code: 200 - duration: 99.843461ms - - id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - 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: - - "534" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a401c367-01be-449a-8d59-4d60359d9ba3 - status: 200 OK - code: 200 - duration: 100.955561ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 539 - uncompressed: false - 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: - - "539" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 539c125a-f621-44ed-ba08-d22d63a557c5 - status: 200 OK - code: 200 - duration: 102.838391ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 536 - uncompressed: false - 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: - - "536" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9dc441ed-f285-4a07-8710-6e9e25c1dc72 - status: 200 OK - code: 200 - duration: 119.999124ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - 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: - - "534" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e0557432-cc80-42c0-ae03-338304a7301f - status: 200 OK - code: 200 - duration: 92.320233ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 536 - uncompressed: false - 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: - - "536" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 93a36cfc-23f2-445b-8dee-76f6f032d465 - status: 200 OK - code: 200 - duration: 114.798639ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 536 - uncompressed: false - 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: - - "536" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f7369a98-9841-45b9-b4a4-8eb0785bdc35 - status: 200 OK - code: 200 - duration: 101.204698ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f3245571-3586-402f-902d-00080173361a - status: 200 OK - code: 200 - duration: 101.123437ms - - id: 80 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - 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: - - "534" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f7e02ac8-ac45-4e67-ac2c-62044207c363 - status: 200 OK - code: 200 - duration: 95.757152ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 86e1071b-1fb1-43e9-b0a9-7266c8ec1e4e - status: 200 OK - code: 200 - duration: 128.978638ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - 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: - - "531" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aeb8d2ff-09a6-4d80-b236-50181d311226 - status: 200 OK - code: 200 - duration: 96.054769ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - 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: - - "531" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c2ecd6a8-3926-443c-ad92-00a1496287fa - status: 200 OK - code: 200 - duration: 93.053327ms - - 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/42a9d058-3b14-4d28-a2b0-335b250ac818 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2350 - uncompressed: false - 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: - - "2350" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1d9e1519-8e12-4e31-9542-59b54d476bd6 - status: 200 OK - code: 200 - duration: 138.063859ms - - 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/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2362 - uncompressed: false - 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: - - "2362" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c776c0b7-c10d-41f0-b665-563d17adeb19 - status: 200 OK - code: 200 - duration: 128.5402ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2365 - uncompressed: false - 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: - - "2365" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5e3d376c-27db-4cea-9679-c21743fb3b7c - status: 200 OK - code: 200 - duration: 129.397732ms - - 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/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - 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: - - "531" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d7a228c7-a71e-4f8b-89a2-aec7c0e9f700 - status: 200 OK - code: 200 - duration: 94.347627ms - - 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/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 536 - uncompressed: false - 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: - - "536" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b7197396-5087-4489-b60a-8f8a20586dcd - status: 200 OK - code: 200 - duration: 96.090116ms - - 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/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b3c90ab7-9137-4c7b-9582-42ea3f91f825 - status: 200 OK - code: 200 - duration: 86.962606ms - - 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/78d779c0-0943-4794-9cfb-55cc019d8c65 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2319 - uncompressed: false - 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: - - "2319" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e70e67bb-fdfd-4e6e-b0df-bb54ef821cc0 - status: 200 OK - code: 200 - duration: 123.521614ms - - 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/42a9d058-3b14-4d28-a2b0-335b250ac818 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2350 - uncompressed: false - 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: - - "2350" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 54a9f716-147a-4dc0-a43b-d88d20e25e6e - status: 200 OK - code: 200 - duration: 144.004269ms - - 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/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2316 - uncompressed: false - 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: - - "2316" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 09db1dea-7cb0-4e6c-be44-560fc2b51e44 - status: 200 OK - code: 200 - duration: 145.034807ms - - id: 93 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b17c55bd-bb5c-481c-8d20-a8da601b6e46 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 523 - uncompressed: false - 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: - - "523" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 742c1b51-b103-498b-8aab-1c9758e533a9 - status: 200 OK - code: 200 - duration: 92.00199ms - - 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/4ccceaa5-00cc-42d9-b71b-f994c3ce16c0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 522 - uncompressed: false - 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: - - "522" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fd2744de-9041-4757-9433-4a8d811d57eb - status: 200 OK - code: 200 - duration: 96.699906ms - - 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/volumes/17e3abb0-7064-48d4-902c-ebe15af2816f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 518 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ebe5267f-5959-4b48-ae51-2aa69d21b667 - status: 200 OK - code: 200 - duration: 99.518738ms - - 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/78d779c0-0943-4794-9cfb-55cc019d8c65/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:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5d44072f-a896-40e7-b153-a8d934e1ccce - status: 200 OK - code: 200 - duration: 86.782981ms - - 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/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:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b659c1a9-a964-452f-84b0-2d079358895a - status: 200 OK - code: 200 - duration: 98.655003ms - - 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/a029e8ee-fc19-44f3-a33c-25d9f6410ed0/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:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3e207b75-f205-4088-a78a-df48322a6fb6 - status: 200 OK - code: 200 - duration: 116.048559ms - - 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/78d779c0-0943-4794-9cfb-55cc019d8c65/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:55:32 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bc82e869-00d9-4656-8f27-79a1a6297bac - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 126.907116ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818/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:55:32 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aa7be782-3543-4c9a-bb54-e4f9992874fd - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 87.323111ms - - 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/a029e8ee-fc19-44f3-a33c-25d9f6410ed0/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:55:32 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e9315deb-098b-4b1f-b169-d83ded95f938 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 108.227584ms - - 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/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ff0c10bc-ca15-47a8-bddc-b0e7aba2dd98 - status: 200 OK - code: 200 - duration: 88.998303ms - - 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/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - 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: - - "531" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8fab7c9f-96f4-48d6-a00a-bf537197eb96 - status: 200 OK - code: 200 - duration: 114.631088ms - - 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/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 536 - uncompressed: false - 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: - - "536" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 35f5966c-333b-4dce-bc06-d72fdbc42709 - status: 200 OK - code: 200 - duration: 90.1248ms - - 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/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2362 - uncompressed: false - 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: - - "2362" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b6a2d99a-d475-495b-b419-b0d8326abf7c - status: 200 OK - code: 200 - duration: 119.302695ms - - 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/78d779c0-0943-4794-9cfb-55cc019d8c65 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2365 - uncompressed: false - 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: - - "2365" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f2620a43-c9ed-4bfa-9585-28fa96307e49 - status: 200 OK - code: 200 - duration: 119.675722ms - - 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/42a9d058-3b14-4d28-a2b0-335b250ac818 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2350 - uncompressed: false - 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: - - "2350" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f5336dfd-46a9-4052-8e98-08fd4a8e48d8 - status: 200 OK - code: 200 - duration: 122.357538ms - - 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/volumes/b17c55bd-bb5c-481c-8d20-a8da601b6e46 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 523 - uncompressed: false - 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: - - "523" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 028f1c60-d997-49e6-ba36-27675fc19bb2 - status: 200 OK - code: 200 - duration: 111.944264ms - - 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/volumes/4ccceaa5-00cc-42d9-b71b-f994c3ce16c0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 522 - uncompressed: false - 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: - - "522" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bdd28aa7-9c7b-4b52-88ef-6338331430b2 - status: 200 OK - code: 200 - duration: 119.530841ms - - id: 110 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17e3abb0-7064-48d4-902c-ebe15af2816f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 518 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 627ea072-d7d3-4f39-a9ad-9278742a23b3 - status: 200 OK - code: 200 - duration: 124.240319ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65/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:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 08558a8b-47ed-44e2-a051-3ff6b737bd95 - status: 200 OK - code: 200 - duration: 91.913195ms - - id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0/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: - - d9e2aea8-3f2f-4dd4-99ad-ee9af8832031 - status: 200 OK - code: 200 - duration: 106.009717ms - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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 - 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:55:33 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4bd59ca0-23ca-49e8-acbe-9f12e549c34f - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 105.049641ms - - id: 115 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0/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:55:33 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8fb28dd3-f0e7-4f1c-80d0-a59e384f8dc0 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 112.720767ms - - id: 116 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818/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:55:33 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 53ac1562-313f-4e4c-ae3f-07069b9a64a9 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 107.416106ms - - id: 117 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0b77abd8-bb80-470c-b32a-7ab6358db7ad - status: 200 OK - code: 200 - duration: 115.882259ms - - id: 118 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - 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: - - "531" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6100ee5a-1680-4548-bb90-0e83dc63567f - status: 200 OK - code: 200 - duration: 94.857631ms - - id: 119 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 536 - uncompressed: false - 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: - - "536" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 93500b1f-da62-4131-93c9-2c3928354a9c - status: 200 OK - code: 200 - duration: 99.258922ms - - id: 120 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 27 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"snap01","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 516 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 645e7f67-59c6-4cf4-a9dc-8df4941d03d6 - status: 200 OK - code: 200 - duration: 123.426177ms - - id: 121 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 27 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"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/6f71a23e-7425-44e8-a038-232c22f44608 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 516 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c90a6369-dad6-442f-bdd2-7e280d0bfe85 - status: 200 OK - code: 200 - duration: 123.856642ms - - id: 122 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 27 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"snap02","tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 516 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0e41d192-4605-4b6b-babe-3e7176a6df85 - status: 200 OK - code: 200 - duration: 123.619559ms - - id: 123 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 516 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d2c635f1-814c-44de-907b-4ebb7c0df788 - status: 200 OK - code: 200 - duration: 86.370369ms - - id: 124 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 516 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 27447e60-dc61-4dd3-aa9a-3f30700a56f2 - status: 200 OK - code: 200 - duration: 94.911682ms - - id: 125 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 516 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7c7c4a47-2312-4898-bcdc-a3f7597ef3c2 - status: 200 OK - code: 200 - duration: 102.233935ms - - id: 126 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 288 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 825 - uncompressed: false - 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: - - "825" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cd79c443-b326-40ec-8302-54a4a213ae5c - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7bb928da-695d-44ea-b0b4-f8410d1b11aa - status: 201 Created - code: 201 - duration: 289.398699ms - - id: 127 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cd79c443-b326-40ec-8302-54a4a213ae5c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 825 - uncompressed: false - 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: - - "825" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f2544953-321d-4503-a14f-b15943ea3a70 - status: 200 OK - code: 200 - duration: 108.991693ms - - id: 128 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cd79c443-b326-40ec-8302-54a4a213ae5c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 825 - uncompressed: false - 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: - - "825" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f297ef17-51da-4a94-a121-3d6f7d8a6e78 - status: 200 OK - code: 200 - duration: 106.756734ms - - id: 129 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 516 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1de6e940-5fd0-4c49-9b30-a74c7a2c1d17 - status: 200 OK - code: 200 - duration: 90.08715ms - - id: 130 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 516 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - abebef28-7f9b-4ad2-96cc-5358fb9f6730 - status: 200 OK - code: 200 - duration: 123.357278ms - - id: 131 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 516 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ea55bba9-e6ce-481d-88cc-7236ce4a679b - status: 200 OK - code: 200 - duration: 96.292214ms - - id: 132 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cd79c443-b326-40ec-8302-54a4a213ae5c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 825 - uncompressed: false - 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: - - "825" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4b92c6f2-f0ce-43b2-8e9d-097ab9045f11 - status: 200 OK - code: 200 - duration: 115.422599ms - - id: 133 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2319 - uncompressed: false - 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: - - "2319" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4d373480-14a3-4197-a69f-d229b5659ee2 - status: 200 OK - code: 200 - duration: 130.167003ms - - id: 134 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2316 - uncompressed: false - 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: - - "2316" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8f7b5027-dfb4-4868-b22e-68bc83c792a7 - status: 200 OK - code: 200 - duration: 140.430316ms - - id: 135 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2304 - uncompressed: false - 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: - - "2304" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 142f4aaa-8d59-4974-a956-b6888a3b31da - status: 200 OK - code: 200 - duration: 153.628729ms - - id: 136 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b17c55bd-bb5c-481c-8d20-a8da601b6e46 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 523 - uncompressed: false - 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: - - "523" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6221eb0d-d06f-428f-ae0b-ee1e5afd98ad - status: 200 OK - code: 200 - duration: 95.526222ms - - id: 137 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ccceaa5-00cc-42d9-b71b-f994c3ce16c0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 522 - uncompressed: false - 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: - - "522" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8c72a6cc-bf70-4ea6-a25d-4f06308095c7 - status: 200 OK - code: 200 - duration: 93.11866ms - - id: 138 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17e3abb0-7064-48d4-902c-ebe15af2816f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 518 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c428095e-7233-4730-917f-d9445404456b - status: 200 OK - code: 200 - duration: 94.060371ms - - id: 139 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65/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:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6dfc3a75-af63-4aec-a224-993ec1d48b9b - status: 200 OK - code: 200 - duration: 102.660854ms - - id: 140 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0/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:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ad437d49-e0cd-492e-814c-317605f5e584 - status: 200 OK - code: 200 - duration: 95.974ms - - id: 141 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7d2faa25-be6d-4f2f-98df-511f47b011c1 - status: 200 OK - code: 200 - duration: 87.912133ms - - id: 142 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0/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:55:35 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b9e49709-73db-4403-b5a3-fc9707ce7ba0 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 89.384096ms - - id: 143 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818/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:55:35 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f49322f0-e94e-4766-8a43-3ca180e7238d - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 96.852503ms - - id: 144 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65/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:55:35 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 45f0abeb-774a-4662-af76-16ba99f2ae01 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 111.237754ms - - id: 145 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 516 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 70b84796-7d4e-4771-99a2-c4dd1bc00cd9 - status: 200 OK - code: 200 - duration: 102.208759ms - - id: 146 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 516 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6faae6ca-edbe-49cf-8bb6-947557853d03 - status: 200 OK - code: 200 - duration: 122.415227ms - - 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/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 516 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4c5867b6-f3de-4c08-9df6-532d48107368 - status: 200 OK - code: 200 - duration: 132.12745ms - - id: 148 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cd79c443-b326-40ec-8302-54a4a213ae5c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 825 - uncompressed: false - 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: - - "825" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 989f5eb5-c4d2-44bf-819b-1fe83a758212 - status: 200 OK - code: 200 - duration: 117.94617ms - - id: 149 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cd79c443-b326-40ec-8302-54a4a213ae5c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 825 - uncompressed: false - 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: - - "825" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4fca5fc5-c497-4072-a779-0bc73aa6bd37 - status: 200 OK - code: 200 - duration: 110.153967ms - - id: 150 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cd79c443-b326-40ec-8302-54a4a213ae5c - 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:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9119d65c-2cad-4323-8860-cd7beaecf32a - status: 204 No Content - code: 204 - duration: 363.628077ms - - id: 151 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cd79c443-b326-40ec-8302-54a4a213ae5c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 142 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_image", "resource_id": "cd79c443-b326-40ec-8302-54a4a213ae5c"}' - headers: - Content-Length: - - "142" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e0aca907-aa4d-4906-ad56-cb341566f274 - status: 404 Not Found - code: 404 - duration: 30.59739ms - - id: 152 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 516 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4ecf7b0b-32be-4f72-a877-79b61249c3f1 - status: 200 OK - code: 200 - duration: 94.233345ms - - id: 153 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 516 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 26a4c2c2-8d32-4ab4-928b-b63020a9da59 - status: 200 OK - code: 200 - duration: 109.850681ms - - id: 154 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 516 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3eed1f03-22d7-4564-8cbf-74c68d051bc1 - status: 200 OK - code: 200 - duration: 109.87195ms - - id: 155 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - 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:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f5125cf0-da2b-4435-9824-ab09af033e02 - status: 204 No Content - code: 204 - duration: 157.942516ms - - id: 156 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da - 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:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ea529b8b-601f-48e6-b63d-9aec5d5731da - status: 204 No Content - code: 204 - duration: 148.507792ms - - id: 157 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 - 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:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 077ae5f3-d66e-4da8-b0ba-f45540f01234 - status: 204 No Content - code: 204 - duration: 166.467608ms - - id: 158 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 145 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_snapshot", "resource_id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42"}' - headers: - Content-Length: - - "145" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 68d9bfd1-c60c-46db-9771-6b5cf6cf0ee0 - status: 404 Not Found - code: 404 - duration: 27.716863ms - - id: 159 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 145 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_snapshot", "resource_id": "f3a590b2-1472-48a8-8440-9b61afb933da"}' - headers: - Content-Length: - - "145" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 47b7962d-bde3-4693-801b-df8c1c787f4e - status: 404 Not Found - code: 404 - duration: 25.049715ms - - 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/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 145 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_snapshot", "resource_id": "6f71a23e-7425-44e8-a038-232c22f44608"}' - headers: - Content-Length: - - "145" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e0c0705e-8993-4866-a711-a748d1e046e4 - status: 404 Not Found - code: 404 - duration: 55.176194ms - - 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/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2316 - uncompressed: false - 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: - - "2316" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 34481520-5ba3-45ce-8307-d4c88c207d7b - status: 200 OK - code: 200 - duration: 144.486572ms - - 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/42a9d058-3b14-4d28-a2b0-335b250ac818 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2350 - uncompressed: false - 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: - - "2350" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 80e9184b-ba95-49b0-b59e-1e8d392300ec - status: 200 OK - code: 200 - duration: 150.005083ms - - 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/78d779c0-0943-4794-9cfb-55cc019d8c65 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2365 - uncompressed: false - 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: - - "2365" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dd3e449c-ae13-4cdf-9326-923e18245265 - status: 200 OK - code: 200 - duration: 111.234488ms - - 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/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2362 - uncompressed: false - 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: - - "2362" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 596c68d3-d50c-4b54-8d4a-08822685abe5 - status: 200 OK - code: 200 - duration: 140.44259ms - - 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/42a9d058-3b14-4d28-a2b0-335b250ac818 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2304 - uncompressed: false - 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: - - "2304" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1bae9bcb-71b5-4cd6-8b78-804fc1e706ff - status: 200 OK - code: 200 - duration: 142.601247ms - - 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/78d779c0-0943-4794-9cfb-55cc019d8c65 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2365 - uncompressed: false - 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: - - "2365" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 723cc349-516c-4058-890a-ce11de7c2d05 - status: 200 OK - code: 200 - duration: 158.107856ms - - id: 167 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 22 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"terminate"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:37 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bcb275c3-c2c2-4441-aa3a-6407e18afb9c - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f095047d-7d31-4b73-88c4-5bbc09425776 - status: 202 Accepted - code: 202 - duration: 297.088893ms - - id: 168 - 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/42a9d058-3b14-4d28-a2b0-335b250ac818/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:37 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/83b08c99-1bad-458a-b1e7-4a20b0eaedda - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 04a595f3-ba63-4056-bd55-44a725ff5f92 - status: 202 Accepted - code: 202 - duration: 291.54761ms - - id: 169 - 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/78d779c0-0943-4794-9cfb-55cc019d8c65/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:37 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c667681c-49a8-453f-bd4f-3f2c3829019f - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a7dc5f27-6bc0-48a2-99f4-33655c2010c5 - status: 202 Accepted - code: 202 - duration: 269.970739ms - - 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/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: 2313 - uncompressed: false - 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: - - "2313" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 63639e00-9f0a-481d-979d-72cf63b236cd - status: 200 OK - code: 200 - duration: 130.936413ms - - 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/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: 2328 - uncompressed: false - 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: - - "2328" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f3be04a6-1d7f-42b0-a43b-27df66651de8 - status: 200 OK - code: 200 - duration: 128.051739ms - - 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/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2279 - uncompressed: false - 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: - - "2279" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 29394394-59d6-4b71-bd42-667a4026ce74 - status: 200 OK - code: 200 - duration: 143.777206ms - - id: 173 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 - 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": "42a9d058-3b14-4d28-a2b0-335b250ac818"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e80ed4a8-012b-47bc-8e90-5d81d6d8ab28 - status: 404 Not Found - code: 404 - duration: 48.074985ms - - id: 174 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 - 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": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dba567b0-2ff6-41d3-a82c-284d4211573f - status: 404 Not Found - code: 404 - duration: 44.148252ms - - id: 175 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17e3abb0-7064-48d4-902c-ebe15af2816f - 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": "17e3abb0-7064-48d4-902c-ebe15af2816f"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6e5a434a-e46b-4e3c-b3dd-ad5e7fcbd29a - status: 404 Not Found - code: 404 - duration: 31.432362ms - - id: 176 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17e3abb0-7064-48d4-902c-ebe15af2816f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"17e3abb0-7064-48d4-902c-ebe15af2816f","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b7c9702c-dc8b-4b77-9747-9599267e4537 - status: 404 Not Found - code: 404 - duration: 19.53375ms - - id: 177 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ccceaa5-00cc-42d9-b71b-f994c3ce16c0 - 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": "4ccceaa5-00cc-42d9-b71b-f994c3ce16c0"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 78d60cf3-d3c5-484e-b3e4-0e5928416d97 - status: 404 Not Found - code: 404 - duration: 43.571904ms - - id: 178 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ccceaa5-00cc-42d9-b71b-f994c3ce16c0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"4ccceaa5-00cc-42d9-b71b-f994c3ce16c0","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 208f58ce-7355-4ad8-8e35-f020ee6d1e48 - status: 404 Not Found - code: 404 - duration: 17.658633ms - - id: 179 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 2328 - uncompressed: false - 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: - - "2328" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ebf8a1d1-c358-45c1-a493-047abb7504c0 - status: 200 OK - code: 200 - duration: 132.795541ms - - id: 180 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 2328 - uncompressed: false - 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: - - "2328" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 410440fc-e415-4216-864c-34581bb5dbd2 - status: 200 OK - code: 200 - duration: 147.287706ms - - id: 181 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 143 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "78d779c0-0943-4794-9cfb-55cc019d8c65"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e03b4ccc-897d-4a91-8280-5452360bd0d1 - status: 404 Not Found - code: 404 - duration: 46.269179ms - - id: 182 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b17c55bd-bb5c-481c-8d20-a8da601b6e46 - 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": "b17c55bd-bb5c-481c-8d20-a8da601b6e46"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5ad69c45-a77c-4ac5-a87e-94cb0e6d7eb7 - status: 404 Not Found - code: 404 - duration: 34.324311ms - - id: 183 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b17c55bd-bb5c-481c-8d20-a8da601b6e46 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"b17c55bd-bb5c-481c-8d20-a8da601b6e46","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fc32186f-7605-4991-9412-a6419dc0ceba - status: 404 Not Found - code: 404 - duration: 27.176153ms - - id: 184 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cd79c443-b326-40ec-8302-54a4a213ae5c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 142 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_image", "resource_id": "cd79c443-b326-40ec-8302-54a4a213ae5c"}' - headers: - Content-Length: - - "142" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f42897e7-a3f7-4fc7-9c20-24991b6763d7 - status: 404 Not Found - code: 404 - duration: 36.844263ms - - id: 185 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/9c741077-bbe6-4374-aeb5-2bcfb9eaae42 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 145 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_snapshot", "resource_id": "9c741077-bbe6-4374-aeb5-2bcfb9eaae42"}' - headers: - Content-Length: - - "145" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fb47ca77-87bc-4462-93eb-71ff885682d8 - status: 404 Not Found - code: 404 - duration: 29.072158ms - - id: 186 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/f3a590b2-1472-48a8-8440-9b61afb933da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 145 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_snapshot", "resource_id": "f3a590b2-1472-48a8-8440-9b61afb933da"}' - headers: - Content-Length: - - "145" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - eaa3c3fa-1ebf-4201-8805-e2677f112334 - status: 404 Not Found - code: 404 - duration: 30.09445ms - - id: 187 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/6f71a23e-7425-44e8-a038-232c22f44608 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 145 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_snapshot", "resource_id": "6f71a23e-7425-44e8-a038-232c22f44608"}' - headers: - Content-Length: - - "145" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 40980755-3e7f-4573-89a3-0b4e7d8e467b - status: 404 Not Found - code: 404 - duration: 33.047684ms - - id: 188 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a9d058-3b14-4d28-a2b0-335b250ac818 - 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": "42a9d058-3b14-4d28-a2b0-335b250ac818"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3c3f06a4-d231-4c3d-801e-a0332801c947 - status: 404 Not Found - code: 404 - duration: 48.732316ms - - id: 189 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a029e8ee-fc19-44f3-a33c-25d9f6410ed0 - 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": "a029e8ee-fc19-44f3-a33c-25d9f6410ed0"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 95ab38cd-703d-4f36-bff9-ea719709d89c - status: 404 Not Found - code: 404 - duration: 47.709804ms - - id: 190 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78d779c0-0943-4794-9cfb-55cc019d8c65 - 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": "78d779c0-0943-4794-9cfb-55cc019d8c65"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0c70ba07-88ac-4567-ba9f-7fc39320d787 - status: 404 Not Found - code: 404 - duration: 49.240827ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eb22c9fc-9497-4c5a-a6f1-3420289d1f7f + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 45.684447ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 69692346-0c4c-4608-a8a7-35ee06a36069 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 45.70739ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b35532d3-80e5-4f8a-bcaa-977db66a3662 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 51.359853ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b453464e-1c18-4f1b-9192-7a71ea11d6d4 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 38.488257ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0da3c3f4-baa6-43e2-a15b-a41e5aa7f86c + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 49.238162ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 99064beb-bf45-425d-848f-8a30cf20de07 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 90.044648ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d3704faf-8c20-46ed-bbe6-36ac75253b06 + status: 200 OK + code: 200 + duration: 59.344019ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6759099e-cf0d-4b1e-8f0d-3cf008dfc88b + status: 200 OK + code: 200 + duration: 43.574448ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7748ab88-23cd-4cc7-a521-8247e4369157 + status: 200 OK + code: 200 + duration: 43.108314ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 274 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-tender-lamarr\",\"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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2154 + body: "{\"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-tender-lamarr\", \"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\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:43:02.917296+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:6c:f7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:43:02.917296+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e759fdc4-206d-4b3b-bfbb-20edc0c0a074 + status: 201 Created + code: 201 + duration: 793.595112ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 274 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-nervous-rubin\",\"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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2200 + body: "{\"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-rubin\", \"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\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:43:02.964250+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:6c:f9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:43:02.964250+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2200" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 18d8ec7b-29a0-4b4d-8a13-10ad29ba1768 + status: 201 Created + code: 201 + duration: 890.142158ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2154 + body: "{\"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-tender-lamarr\", \"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\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:43:02.917296+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:6c:f7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:43:02.917296+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a82112f8-4d3c-4bfa-9ad8-ec8a0a3fae56 + status: 200 OK + code: 200 + duration: 133.265083ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2200 + body: "{\"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-rubin\", \"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\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:43:02.964250+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:6c:f9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:43:02.964250+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2200" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5eb6d715-5a6b-4100-b1d1-b6d8e85b98a6 + status: 200 OK + code: 200 + duration: 159.239337ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2154 + body: "{\"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-tender-lamarr\", \"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\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:43:02.917296+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:6c:f7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:43:02.917296+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 620ee414-9b51-4c5c-8f20-b041b8ff5a93 + status: 200 OK + code: 200 + duration: 134.886956ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2154 + body: "{\"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-rubin\", \"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\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:43:02.964250+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:6c:f9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:43:02.964250+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f0fce047-9ff1-4bca-862d-0282b90c9f0e + status: 200 OK + code: 200 + duration: 139.909848ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 278 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-xenodochial-kalam\",\"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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2212 + body: "{\"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-xenodochial-kalam\", \"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\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\"}, \"size\": 15000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:43:03.326544+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:6c:fb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:43:03.326544+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2212" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aa446ff6-53e0-4992-b8c3-f2fedf4bb29f + status: 201 Created + code: 201 + duration: 1.242704357s +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2166 + body: "{\"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-xenodochial-kalam\", \"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\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\"}, \"size\": 15000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:43:03.326544+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:6c:fb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:43:03.326544+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2166" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - da6a5060-13c1-48af-984a-c5b752a7362b + status: 200 OK + code: 200 + duration: 136.794674ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"68976ee4-eb4e-4832-9863-0990acd8603c\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3/action\", \"href_result\": \"/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"started_at\": \"2025-10-30T15:43:03.731536+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/68976ee4-eb4e-4832-9863-0990acd8603c + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8c38027f-e0a2-43e6-b87f-22dd6ca1b9c4 + status: 202 Accepted + code: 202 + duration: 412.493539ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"531a26f5-3986-4970-8dbb-42c7ca19cbc9\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223/action\", \"href_result\": \"/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"started_at\": \"2025-10-30T15:43:03.850851+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/531a26f5-3986-4970-8dbb-42c7ca19cbc9 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 450979a8-f9f1-4596-b45c-07b68cc54129 + status: 202 Accepted + code: 202 + duration: 360.94835ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2166 + body: "{\"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-xenodochial-kalam\", \"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\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\"}, \"size\": 15000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:43:03.326544+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:6c:fb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:43:03.326544+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2166" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bcaab99d-f756-47b9-82a9-fce50479ff4f + status: 200 OK + code: 200 + duration: 160.583458ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2176 + body: "{\"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-rubin\", \"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\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:43:02.964250+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:6c:f9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:43:03.556663+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3f7ec75b-3187-4ff9-89d0-7a6ae1931794 + status: 200 OK + code: 200 + duration: 193.476921ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2176 + body: "{\"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-tender-lamarr\", \"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\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:43:02.917296+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:6c:f7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:43:03.495165+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 407ff983-4c3c-4af7-894b-d0c57d555c28 + status: 200 OK + code: 200 + duration: 316.097177ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"cf6ea086-d209-4f3e-ba45-42fe8e70da4f\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/a4e0f736-493d-4692-bbed-8bd54044d90c/action\", \"href_result\": \"/servers/a4e0f736-493d-4692-bbed-8bd54044d90c\", \"started_at\": \"2025-10-30T15:43:04.438339+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/cf6ea086-d209-4f3e-ba45-42fe8e70da4f + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 33cf5076-b4f9-48a3-bbf9-afcd95da0952 + status: 202 Accepted + code: 202 + duration: 560.530403ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2188 + body: "{\"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-xenodochial-kalam\", \"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\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\"}, \"size\": 15000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:43:03.326544+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:6c:fb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:43:04.040589+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: + - "2188" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 46291d38-7d7c-4aaa-8669-ab856810c55f + status: 200 OK + code: 200 + duration: 107.882861ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2279 + body: "{\"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-tender-lamarr\", \"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\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:43:02.917296+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:6c:f7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:43:03.495165+00:00\", \"bootscript\": 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\": \"902\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5a20eb69-72f4-402f-ac28-11f68e72cabd + status: 200 OK + code: 200 + duration: 129.547601ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2325 + body: "{\"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-rubin\", \"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\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:43:02.964250+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:6c:f9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:43:03.556663+00:00\", \"bootscript\": 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\": \"104\", \"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: + - "2325" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 02fdb48e-5216-4ad0-9939-1aadead09db8 + status: 200 OK + code: 200 + duration: 188.602189ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2337 + body: "{\"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-xenodochial-kalam\", \"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\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\"}, \"size\": 15000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:43:03.326544+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:6c:fb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:43:04.040589+00:00\", \"bootscript\": 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\": \"702\", \"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: + - "2337" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7a768437-c733-44b0-91ce-14538237f88c + status: 200 OK + code: 200 + duration: 121.506468ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2356 + body: "{\"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-rubin\", \"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\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:43:02.964250+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:6c:f9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:43:11.131413+00:00\", \"bootscript\": 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\": \"104\", \"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: + - "2356" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 12e40873-c4ab-40c7-8f8a-8bc5000a61b7 + status: 200 OK + code: 200 + duration: 133.665577ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2279 + body: "{\"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-tender-lamarr\", \"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\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:43:02.917296+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:6c:f7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:43:03.495165+00:00\", \"bootscript\": 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\": \"902\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4e8aa4c5-ce32-4095-8448-1ecaf7ea89e8 + status: 200 OK + code: 200 + duration: 146.113067ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2356 + body: "{\"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-rubin\", \"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\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:43:02.964250+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:6c:f9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:43:11.131413+00:00\", \"bootscript\": 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\": \"104\", \"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: + - "2356" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b82b1494-9944-4173-baa2-30db46327c75 + status: 200 OK + code: 200 + duration: 131.107369ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6453a087-a5ae-4c5a-95d0-d2a90d0ab05a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 520 + body: "{\"volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:43:02.964250+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "520" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 373adc0a-25fe-4622-ab9d-8a33b92b7c4e + status: 200 OK + code: 200 + duration: 79.904118ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ff646e1c-1428-4fbb-b122-17590690eaa7 + status: 200 OK + code: 200 + duration: 91.267064ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2357f374-177d-49a9-86c8-8ccb7f2f312d + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 117.833268ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2322 + body: "{\"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-xenodochial-kalam\", \"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\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\"}, \"size\": 15000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:43:03.326544+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:6c:fb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:43:11.676120+00:00\", \"bootscript\": 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\": \"702\", \"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: + - "2322" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cfc82489-5803-4122-9971-dfddb9914644 + status: 200 OK + code: 200 + duration: 140.176772ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2322 + body: "{\"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-xenodochial-kalam\", \"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\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\"}, \"size\": 15000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:43:03.326544+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:6c:fb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:43:11.676120+00:00\", \"bootscript\": 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\": \"702\", \"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: + - "2322" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9795ca1f-9945-4a19-aa4f-d5751bfc782b + status: 200 OK + code: 200 + duration: 129.816817ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/78eed75d-f48e-4e2d-9ba5-5e99703b8018 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 524 + body: "{\"volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\"}, \"size\": 15000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:43:03.326544+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "524" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 92f5c72d-d50c-4239-a03e-fbb662ab0197 + status: 200 OK + code: 200 + duration: 93.250595ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ffc32075-b64d-43d1-a945-b3d0d0474c2f + status: 200 OK + code: 200 + duration: 100.670062ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:15 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8c5bc926-5346-4cca-88df-2fdfe715d05f + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 97.94996ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 137 + host: api.scaleway.com + body: "{\"name\":\"tf-snap-ecstatic-ramanujan\",\"volume_id\":\"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 850 + body: "{\"snapshot\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"tf-snap-ecstatic-ramanujan\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.192734+00:00\", \"modification_date\": \"2025-10-30T15:43:15.192734+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 10000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}, \"task\": {\"id\": \"45f9d070-db8a-47ed-9061-0bdca9438cb7\", \"description\": \"volume_snapshot\", \"status\": \"pending\", \"href_from\": \"/snapshots\", \"href_result\": \"snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"started_at\": \"2025-10-30T15:43:15.417465+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "850" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dd1972d5-86a7-4452-a4da-8f4db80d6921 + status: 201 Created + code: 201 + duration: 740.891277ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 539 + body: "{\"snapshot\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"tf-snap-ecstatic-ramanujan\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.192734+00:00\", \"modification_date\": \"2025-10-30T15:43:15.192734+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 10000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "539" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0b0997b1-b15c-4c7c-9c31-8e85bbe2f9cb + status: 200 OK + code: 200 + duration: 118.34055ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 135 + host: api.scaleway.com + body: "{\"name\":\"tf-snap-friendly-swirles\",\"volume_id\":\"78eed75d-f48e-4e2d-9ba5-5e99703b8018\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 848 + body: "{\"snapshot\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"tf-snap-friendly-swirles\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.685426+00:00\", \"modification_date\": \"2025-10-30T15:43:15.685426+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 15000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}, \"task\": {\"id\": \"cfcf23fa-d8e4-47bf-9fb4-00421a18a6fb\", \"description\": \"volume_snapshot\", \"status\": \"pending\", \"href_from\": \"/snapshots\", \"href_result\": \"snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"started_at\": \"2025-10-30T15:43:15.993776+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "848" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - def0e0c3-8812-4454-8d34-29dbfccd1fb0 + status: 201 Created + code: 201 + duration: 885.783244ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 537 + body: "{\"snapshot\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"tf-snap-friendly-swirles\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.685426+00:00\", \"modification_date\": \"2025-10-30T15:43:15.685426+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 15000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "537" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1b362276-c336-4435-8ada-79aaeea2703d + status: 200 OK + code: 200 + duration: 132.890013ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2356 + body: "{\"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-tender-lamarr\", \"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\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:43:02.917296+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:6c:f7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:43:17.124660+00:00\", \"bootscript\": 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\": \"902\", \"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: + - "2356" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 40116c06-3aeb-4994-90b0-743dc4224a34 + status: 200 OK + code: 200 + duration: 140.916229ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2310 + body: "{\"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-tender-lamarr\", \"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\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:43:02.917296+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:6c:f7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:43:17.124660+00:00\", \"bootscript\": 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\": \"902\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fd9b58c8-8913-40e0-9df2-f75b99e9c5e2 + status: 200 OK + code: 200 + duration: 177.712665ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/69705f6b-f052-49fb-8594-2bc979eeb994 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 520 + body: "{\"volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:43:02.917296+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "520" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f09be397-681e-4ac6-83d2-67afde056ed3 + status: 200 OK + code: 200 + duration: 120.821114ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f442e0a0-5148-417c-b26e-0ed8ee26d2a2 + status: 200 OK + code: 200 + duration: 100.263351ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 28a9d246-caf3-494f-8736-b81d85e432e9 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 115.457182ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 138 + host: api.scaleway.com + body: "{\"name\":\"tf-snap-hardcore-hofstadter\",\"volume_id\":\"69705f6b-f052-49fb-8594-2bc979eeb994\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 851 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"tf-snap-hardcore-hofstadter\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:43:20.389204+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}, \"task\": {\"id\": \"67038ff9-fba6-4eec-a380-08da84f3673a\", \"description\": \"volume_snapshot\", \"status\": \"pending\", \"href_from\": \"/snapshots\", \"href_result\": \"snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"started_at\": \"2025-10-30T15:43:20.553368+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "851" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e3d921b5-2619-4b2b-b405-557b216212a6 + status: 201 Created + code: 201 + duration: 583.804019ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 540 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"tf-snap-hardcore-hofstadter\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:43:20.389204+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "540" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 770c33a4-8c0b-4d03-9005-a70c5254a70b + status: 200 OK + code: 200 + duration: 97.095198ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 539 + body: "{\"snapshot\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"tf-snap-ecstatic-ramanujan\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.192734+00:00\", \"modification_date\": \"2025-10-30T15:43:15.192734+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 10000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "539" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bd5b34b3-22af-4e8e-832f-310e8886511d + status: 200 OK + code: 200 + duration: 96.702381ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 537 + body: "{\"snapshot\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"tf-snap-friendly-swirles\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.685426+00:00\", \"modification_date\": \"2025-10-30T15:43:15.685426+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 15000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "537" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c85cafcf-7003-4ad2-a4b0-b3dd20405e89 + status: 200 OK + code: 200 + duration: 103.026625ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 540 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"tf-snap-hardcore-hofstadter\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:43:20.389204+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "540" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aed9b59f-4dc6-4926-bf81-f2578583c132 + status: 200 OK + code: 200 + duration: 128.673395ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 539 + body: "{\"snapshot\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"tf-snap-ecstatic-ramanujan\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.192734+00:00\", \"modification_date\": \"2025-10-30T15:43:15.192734+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 10000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "539" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4284487f-54d7-4290-be7e-f4ec2dbffb1c + status: 200 OK + code: 200 + duration: 116.382409ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 537 + body: "{\"snapshot\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"tf-snap-friendly-swirles\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.685426+00:00\", \"modification_date\": \"2025-10-30T15:43:15.685426+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 15000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "537" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4b4ed3c7-a8e4-470a-bf65-939d51aa7fad + status: 200 OK + code: 200 + duration: 95.436478ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 540 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"tf-snap-hardcore-hofstadter\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:43:20.389204+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "540" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8dbbcacd-f6c1-47fb-9a19-8033ee99f048 + status: 200 OK + code: 200 + duration: 110.772006ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 539 + body: "{\"snapshot\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"tf-snap-ecstatic-ramanujan\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.192734+00:00\", \"modification_date\": \"2025-10-30T15:43:15.192734+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 10000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "539" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e2edf0c3-4e72-4242-bda9-091d265b3603 + status: 200 OK + code: 200 + duration: 99.944685ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 537 + body: "{\"snapshot\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"tf-snap-friendly-swirles\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.685426+00:00\", \"modification_date\": \"2025-10-30T15:43:15.685426+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 15000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "537" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7f7bc426-9e02-46c6-bb95-d6c15231e612 + status: 200 OK + code: 200 + duration: 122.593441ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 540 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"tf-snap-hardcore-hofstadter\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:43:20.389204+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "540" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3e2af612-0458-4b77-938f-62c95d6cbe6d + status: 200 OK + code: 200 + duration: 106.363237ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 539 + body: "{\"snapshot\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"tf-snap-ecstatic-ramanujan\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.192734+00:00\", \"modification_date\": \"2025-10-30T15:43:15.192734+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 10000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "539" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c19a3e0e-9d5f-443b-992e-ae0b74f66948 + status: 200 OK + code: 200 + duration: 111.937694ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 537 + body: "{\"snapshot\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"tf-snap-friendly-swirles\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.685426+00:00\", \"modification_date\": \"2025-10-30T15:43:15.685426+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 15000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "537" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 63ee9615-a736-47c0-bf2a-69ee8931d009 + status: 200 OK + code: 200 + duration: 191.778767ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 540 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"tf-snap-hardcore-hofstadter\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:43:20.389204+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "540" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d0a007de-2992-4c1b-a6fe-73d2452ef6cf + status: 200 OK + code: 200 + duration: 103.437319ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 539 + body: "{\"snapshot\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"tf-snap-ecstatic-ramanujan\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.192734+00:00\", \"modification_date\": \"2025-10-30T15:43:15.192734+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 10000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "539" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 52b268d3-01e8-4577-bae1-fa57808946a4 + status: 200 OK + code: 200 + duration: 113.271708ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 537 + body: "{\"snapshot\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"tf-snap-friendly-swirles\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.685426+00:00\", \"modification_date\": \"2025-10-30T15:43:15.685426+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 15000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "537" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 91c32b30-680b-4396-b254-3a6ef37d393a + status: 200 OK + code: 200 + duration: 100.205496ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 540 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"tf-snap-hardcore-hofstadter\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:43:20.389204+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "540" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - da2c8884-2efb-48b8-a7dc-1083f71f8bce + status: 200 OK + code: 200 + duration: 127.976623ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 539 + body: "{\"snapshot\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"tf-snap-ecstatic-ramanujan\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.192734+00:00\", \"modification_date\": \"2025-10-30T15:43:15.192734+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 10000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "539" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b3115de6-f732-4c11-ab0f-5b3c74172fbf + status: 200 OK + code: 200 + duration: 102.213684ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 537 + body: "{\"snapshot\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"tf-snap-friendly-swirles\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.685426+00:00\", \"modification_date\": \"2025-10-30T15:43:15.685426+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 15000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "537" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5df14b9c-e9d3-4c4b-b79f-906acb94b8da + status: 200 OK + code: 200 + duration: 121.547783ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 540 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"tf-snap-hardcore-hofstadter\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:43:20.389204+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "540" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f5b15b3b-73d1-4809-b9b3-413e4fa6160d + status: 200 OK + code: 200 + duration: 88.435017ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 539 + body: "{\"snapshot\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"tf-snap-ecstatic-ramanujan\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.192734+00:00\", \"modification_date\": \"2025-10-30T15:43:15.192734+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 10000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "539" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 33162aa2-63cf-4344-862f-c74c826af269 + status: 200 OK + code: 200 + duration: 86.019326ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 537 + body: "{\"snapshot\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"tf-snap-friendly-swirles\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.685426+00:00\", \"modification_date\": \"2025-10-30T15:43:15.685426+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 15000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "537" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 569ff868-30b6-42f0-aa65-c7342fe56197 + status: 200 OK + code: 200 + duration: 115.866958ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 540 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"tf-snap-hardcore-hofstadter\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:43:20.389204+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "540" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 19abb738-116b-4368-baab-c524bed98147 + status: 200 OK + code: 200 + duration: 112.798963ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 539 + body: "{\"snapshot\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"tf-snap-ecstatic-ramanujan\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.192734+00:00\", \"modification_date\": \"2025-10-30T15:43:15.192734+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 10000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "539" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 02cb0f0d-2e7a-4d01-9fbd-490e5e48f6e2 + status: 200 OK + code: 200 + duration: 114.266036ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 537 + body: "{\"snapshot\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"tf-snap-friendly-swirles\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.685426+00:00\", \"modification_date\": \"2025-10-30T15:43:15.685426+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 15000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "537" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8859a0d1-00e9-4888-9b04-ff78f359a0c5 + status: 200 OK + code: 200 + duration: 100.100121ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 539 + body: "{\"snapshot\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"tf-snap-ecstatic-ramanujan\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.192734+00:00\", \"modification_date\": \"2025-10-30T15:43:15.192734+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 10000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "539" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e6c8b048-1c8b-4092-8c20-064350f56aa7 + status: 200 OK + code: 200 + duration: 101.408236ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 540 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"tf-snap-hardcore-hofstadter\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:43:20.389204+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "540" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7eec7060-9454-4cef-b9f5-e4e36513f1b5 + status: 200 OK + code: 200 + duration: 117.420674ms +- id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 537 + body: "{\"snapshot\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"tf-snap-friendly-swirles\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.685426+00:00\", \"modification_date\": \"2025-10-30T15:43:15.685426+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 15000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "537" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 96d83842-5c18-45e7-add3-2bd64a718cb7 + status: 200 OK + code: 200 + duration: 121.308798ms +- id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 540 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"tf-snap-hardcore-hofstadter\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:43:20.389204+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "540" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0dd33e77-4f86-4822-9aed-40eec1f207a5 + status: 200 OK + code: 200 + duration: 94.12837ms +- id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 539 + body: "{\"snapshot\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"tf-snap-ecstatic-ramanujan\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.192734+00:00\", \"modification_date\": \"2025-10-30T15:43:15.192734+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 10000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "539" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b9a15efe-5e81-4785-bcf8-e2bf9958e21b + status: 200 OK + code: 200 + duration: 118.094239ms +- id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 537 + body: "{\"snapshot\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"tf-snap-friendly-swirles\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.685426+00:00\", \"modification_date\": \"2025-10-30T15:43:15.685426+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 15000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "537" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1f29fe7e-e9c8-409b-aa4a-365636063916 + status: 200 OK + code: 200 + duration: 98.793171ms +- id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 540 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"tf-snap-hardcore-hofstadter\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:43:20.389204+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "540" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 647fafeb-d669-4039-a1d9-9a4b76f93adb + status: 200 OK + code: 200 + duration: 90.452125ms +- id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 539 + body: "{\"snapshot\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"tf-snap-ecstatic-ramanujan\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.192734+00:00\", \"modification_date\": \"2025-10-30T15:43:15.192734+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 10000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "539" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 85d2e656-46ea-48b7-a798-e853ac280f5f + status: 200 OK + code: 200 + duration: 96.893227ms +- id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 537 + body: "{\"snapshot\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"tf-snap-friendly-swirles\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.685426+00:00\", \"modification_date\": \"2025-10-30T15:43:15.685426+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 15000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "537" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 85d03691-2e80-45fe-8fa4-73b64c872c98 + status: 200 OK + code: 200 + duration: 111.603213ms +- id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 540 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"tf-snap-hardcore-hofstadter\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:43:20.389204+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "540" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cc9e4fd0-0661-41c5-b196-f01b428a702b + status: 200 OK + code: 200 + duration: 91.361732ms +- id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 536 + body: "{\"snapshot\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"tf-snap-ecstatic-ramanujan\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.192734+00:00\", \"modification_date\": \"2025-10-30T15:44:16.122158+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 10000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "536" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c80d66b7-c9ad-4e7a-873e-ad4d93b007d3 + status: 200 OK + code: 200 + duration: 95.664193ms +- id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 536 + body: "{\"snapshot\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"tf-snap-ecstatic-ramanujan\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.192734+00:00\", \"modification_date\": \"2025-10-30T15:44:16.122158+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 10000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "536" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 71c00549-c454-45ff-8465-6a6b30fd1bfb + status: 200 OK + code: 200 + duration: 91.470987ms +- id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 534 + body: "{\"snapshot\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"tf-snap-friendly-swirles\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.685426+00:00\", \"modification_date\": \"2025-10-30T15:44:13.353955+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 15000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "534" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e437c65a-d4d4-40fd-b80a-2d5600ec910f + status: 200 OK + code: 200 + duration: 94.347534ms +- id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 534 + body: "{\"snapshot\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"tf-snap-friendly-swirles\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.685426+00:00\", \"modification_date\": \"2025-10-30T15:44:13.353955+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 15000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "534" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7aed6e32-0d17-49c1-9e4b-a737720cf50f + status: 200 OK + code: 200 + duration: 105.957272ms +- id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 540 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"tf-snap-hardcore-hofstadter\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:43:20.389204+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "540" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d4c142b1-f2f4-4582-9379-f2dd5b19ad55 + status: 200 OK + code: 200 + duration: 93.158143ms +- id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 537 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"tf-snap-hardcore-hofstadter\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:44:25.034913+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "537" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f896e106-d5ab-4c1c-918c-a2002ca2a2e1 + status: 200 OK + code: 200 + duration: 96.620308ms +- id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 537 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"tf-snap-hardcore-hofstadter\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:44:25.034913+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "537" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5ec5707c-d9be-4c21-bb83-44e1c1a148b5 + status: 200 OK + code: 200 + duration: 109.359167ms +- id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2322 + body: "{\"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-xenodochial-kalam\", \"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\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\"}, \"size\": 15000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:44:13.353955+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:6c:fb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:43:11.676120+00:00\", \"bootscript\": 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\": \"702\", \"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: + - "2322" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0029f558-406d-4625-9fb3-a2d78172e19f + status: 200 OK + code: 200 + duration: 143.064056ms +- id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2310 + body: "{\"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-rubin\", \"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\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:44:16.122158+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:6c:f9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:43:11.131413+00:00\", \"bootscript\": 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\": \"104\", \"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: + - "2310" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 92b9ad33-b220-427b-8956-609a2d7d88ba + status: 200 OK + code: 200 + duration: 122.939162ms +- id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2356 + body: "{\"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-tender-lamarr\", \"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\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:44:25.034913+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:6c:f7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:43:17.124660+00:00\", \"bootscript\": 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\": \"902\", \"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: + - "2356" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 349946d9-9bd5-4044-b402-aeeb56374d46 + status: 200 OK + code: 200 + duration: 145.837319ms +- id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 534 + body: "{\"snapshot\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"tf-snap-friendly-swirles\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.685426+00:00\", \"modification_date\": \"2025-10-30T15:44:13.353955+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 15000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "534" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8adee246-0bb8-4d24-891e-1dba203d2229 + status: 200 OK + code: 200 + duration: 109.52611ms +- id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 536 + body: "{\"snapshot\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"tf-snap-ecstatic-ramanujan\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.192734+00:00\", \"modification_date\": \"2025-10-30T15:44:16.122158+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 10000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "536" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 372d9b55-d876-4afb-9869-c149129b5bd8 + status: 200 OK + code: 200 + duration: 96.326888ms +- id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 537 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"tf-snap-hardcore-hofstadter\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:44:25.034913+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "537" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 83ddc043-6033-4c02-a8a8-6b4bd2240dee + status: 200 OK + code: 200 + duration: 90.168565ms +- id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2356 + body: "{\"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-rubin\", \"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\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:44:16.122158+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:6c:f9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:43:11.131413+00:00\", \"bootscript\": 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\": \"104\", \"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: + - "2356" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b5668fb1-967a-4708-9e86-1d55bb74654c + status: 200 OK + code: 200 + duration: 134.70781ms +- id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2356 + body: "{\"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-tender-lamarr\", \"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\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:44:25.034913+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:6c:f7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:43:17.124660+00:00\", \"bootscript\": 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\": \"902\", \"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: + - "2356" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4429a3b9-bd21-4afc-9d62-0903dcaedd9c + status: 200 OK + code: 200 + duration: 136.345933ms +- id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2322 + body: "{\"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-xenodochial-kalam\", \"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\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\"}, \"size\": 15000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:44:13.353955+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:6c:fb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:43:11.676120+00:00\", \"bootscript\": 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\": \"702\", \"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: + - "2322" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a038725d-807c-4fb1-b100-75d47f27818e + status: 200 OK + code: 200 + duration: 140.434674ms +- id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6453a087-a5ae-4c5a-95d0-d2a90d0ab05a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 520 + body: "{\"volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:44:16.122158+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "520" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 940be2b3-6b0e-43ce-be21-4e057082f8a2 + status: 200 OK + code: 200 + duration: 98.997778ms +- id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/69705f6b-f052-49fb-8594-2bc979eeb994 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 520 + body: "{\"volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:44:25.034913+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "520" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - da75df6e-4a67-41d7-868d-26000b3e1243 + status: 200 OK + code: 200 + duration: 107.565682ms +- id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/78eed75d-f48e-4e2d-9ba5-5e99703b8018 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 524 + body: "{\"volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\"}, \"size\": 15000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:44:13.353955+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "524" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5b49a9b3-cf5c-412c-8808-9c9bf3d9b4af + status: 200 OK + code: 200 + duration: 146.553413ms +- id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2f63f1a7-8693-4632-8b17-02370c07fa7f + status: 200 OK + code: 200 + duration: 93.652672ms +- id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d1ffe96e-a97e-4cde-a899-c2d996c831d4 + status: 200 OK + code: 200 + duration: 84.475506ms +- id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e280a4c3-0ded-41fd-ac69-efd106be5c74 + status: 200 OK + code: 200 + duration: 102.055074ms +- id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:28 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ae38203a-8481-4e2c-b30d-be7a5cf424eb + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 101.553142ms +- id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:28 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 731ba703-14f5-40cf-961e-89b0c01239d6 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 112.93285ms +- id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:28 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cfda8997-24b2-4643-b056-1d1a2dc03025 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 108.888935ms +- id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 537 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"tf-snap-hardcore-hofstadter\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:44:25.034913+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "537" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d0b40752-686f-41d9-a151-a98d65d6714e + status: 200 OK + code: 200 + duration: 92.215014ms +- id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 536 + body: "{\"snapshot\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"tf-snap-ecstatic-ramanujan\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.192734+00:00\", \"modification_date\": \"2025-10-30T15:44:16.122158+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 10000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "536" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e8c4e3bb-3e0a-441a-8c9f-6d917fe1c360 + status: 200 OK + code: 200 + duration: 90.850525ms +- id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 534 + body: "{\"snapshot\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"tf-snap-friendly-swirles\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.685426+00:00\", \"modification_date\": \"2025-10-30T15:44:13.353955+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 15000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "534" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8595b8e8-82d2-4ea0-b997-3d571343abb2 + status: 200 OK + code: 200 + duration: 106.521002ms +- id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2356 + body: "{\"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-rubin\", \"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\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:44:16.122158+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:6c:f9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:43:11.131413+00:00\", \"bootscript\": 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\": \"104\", \"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: + - "2356" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 05c9fe5a-08cb-4695-822b-f3515545af2b + status: 200 OK + code: 200 + duration: 129.536579ms +- id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2368 + body: "{\"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-xenodochial-kalam\", \"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\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\"}, \"size\": 15000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:44:13.353955+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:6c:fb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:43:11.676120+00:00\", \"bootscript\": 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\": \"702\", \"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: + - "2368" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c3c71d61-a264-463e-85ed-13bc6b9f66a5 + status: 200 OK + code: 200 + duration: 147.243918ms +- id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2356 + body: "{\"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-tender-lamarr\", \"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\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:44:25.034913+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:6c:f7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:43:17.124660+00:00\", \"bootscript\": 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\": \"902\", \"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: + - "2356" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b29684a1-e0ae-4d7d-9466-fe268147cdae + status: 200 OK + code: 200 + duration: 153.798714ms +- id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/78eed75d-f48e-4e2d-9ba5-5e99703b8018 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 524 + body: "{\"volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\"}, \"size\": 15000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:44:13.353955+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "524" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f3ec2df5-f0a1-4ccd-bd1b-7185814c58a1 + status: 200 OK + code: 200 + duration: 95.00057ms +- id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/69705f6b-f052-49fb-8594-2bc979eeb994 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 520 + body: "{\"volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:44:25.034913+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "520" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 630c722e-0ffc-4a58-b236-1ef93c64e513 + status: 200 OK + code: 200 + duration: 94.729993ms +- id: 115 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6453a087-a5ae-4c5a-95d0-d2a90d0ab05a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 520 + body: "{\"volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:44:16.122158+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "520" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 57dda369-c48c-4ca7-a682-d4a0ab8b4add + status: 200 OK + code: 200 + duration: 124.276141ms +- id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 11b222e1-acbb-495a-9c27-4f0d57515fa8 + status: 200 OK + code: 200 + duration: 105.08049ms +- id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 26b1d033-c467-4ee5-a3dd-eff7cd941893 + status: 200 OK + code: 200 + duration: 105.559619ms +- id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1d31144e-d6c0-47b0-9cb3-736ed0301403 + status: 200 OK + code: 200 + duration: 106.400857ms +- id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:29 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7e536549-551c-4fd4-89b8-6e7999ef9fb4 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 106.554706ms +- id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:29 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 76bf1fae-b026-4c1e-b76e-491cb0d29bd0 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 111.769619ms +- id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:29 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2577c06f-e632-4ca4-9af7-8ea166e4fc49 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 109.860767ms +- id: 122 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 534 + body: "{\"snapshot\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"tf-snap-friendly-swirles\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.685426+00:00\", \"modification_date\": \"2025-10-30T15:44:13.353955+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 15000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "534" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 90179d0a-6377-434f-bdfc-4877cc6e56b7 + status: 200 OK + code: 200 + duration: 93.893633ms +- id: 123 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 536 + body: "{\"snapshot\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"tf-snap-ecstatic-ramanujan\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.192734+00:00\", \"modification_date\": \"2025-10-30T15:44:16.122158+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 10000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "536" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3da42edf-c3cc-43d2-9087-ffa3b190b179 + status: 200 OK + code: 200 + duration: 96.70639ms +- id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 537 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"tf-snap-hardcore-hofstadter\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:44:25.034913+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "537" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3c29f776-fa03-41b4-af60-2669a7e3a016 + status: 200 OK + code: 200 + duration: 104.064283ms +- id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 27 + host: api.scaleway.com + body: "{\"name\":\"snap01\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 516 + body: "{\"snapshot\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"snap01\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.685426+00:00\", \"modification_date\": \"2025-10-30T15:44:29.696613+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 15000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "516" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 22e357f0-efd7-45cc-915e-f88af1021691 + status: 200 OK + code: 200 + duration: 128.341688ms +- id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 27 + host: api.scaleway.com + body: "{\"name\":\"snap03\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 516 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"snap03\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:44:29.689975+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "516" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 23a7bd8c-0661-4e85-9bf0-ff66b2f56952 + status: 200 OK + code: 200 + duration: 131.873994ms +- id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 27 + host: api.scaleway.com + body: "{\"name\":\"snap02\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 516 + body: "{\"snapshot\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"snap02\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.192734+00:00\", \"modification_date\": \"2025-10-30T15:44:29.695597+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 10000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "516" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 87b2a36c-f1ef-4d5a-92ef-45225e8d1a2a + status: 200 OK + code: 200 + duration: 147.618139ms +- id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 516 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"snap03\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:44:29.689975+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "516" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 687086d9-20ee-476d-a7e5-7d1d464c79d9 + status: 200 OK + code: 200 + duration: 99.719272ms +- id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 516 + body: "{\"snapshot\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"snap01\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.685426+00:00\", \"modification_date\": \"2025-10-30T15:44:29.696613+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 15000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "516" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3d13ef44-eeb3-439b-a3a4-4fe8ee5e3d76 + status: 200 OK + code: 200 + duration: 105.252111ms +- id: 130 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 516 + body: "{\"snapshot\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"snap02\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.192734+00:00\", \"modification_date\": \"2025-10-30T15:44:29.695597+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 10000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "516" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - becbc5c2-1854-488f-ba1a-1cffec95229f + status: 200 OK + code: 200 + duration: 101.165806ms +- id: 131 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 288 + host: api.scaleway.com + body: "{\"name\":\"tf-image-unruffled-ritchie\",\"root_volume\":\"14530b18-913a-4bb1-81c4-67d6d0ed35ec\",\"arch\":\"x86_64\",\"extra_volumes\":{\"1\":{\"id\":\"7012bbdc-198d-4be2-a487-f77db0f0d0c0\"},\"2\":{\"id\":\"c14388f8-4dd5-4e84-88c3-3357514ed1a6\"}},\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"public\":false}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 825 + body: "{\"image\": {\"id\": \"8fecc66c-43d6-4755-9cf5-8892183a21db\", \"name\": \"tf-image-unruffled-ritchie\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"snap01\", \"volume_type\": \"l_ssd\", \"size\": 15000000000}, \"extra_volumes\": {\"1\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"snap02\", \"volume_type\": \"l_ssd\", \"size\": 10000000000}, \"2\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"snap03\", \"volume_type\": \"l_ssd\", \"size\": 20000000000}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:30.060284+00:00\", \"modification_date\": \"2025-10-30T15:44:30.060284+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "825" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:30 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/8fecc66c-43d6-4755-9cf5-8892183a21db + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e9b76e29-98af-44c8-be48-58be15244687 + status: 201 Created + code: 201 + duration: 303.042124ms +- id: 132 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/8fecc66c-43d6-4755-9cf5-8892183a21db + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 825 + body: "{\"image\": {\"id\": \"8fecc66c-43d6-4755-9cf5-8892183a21db\", \"name\": \"tf-image-unruffled-ritchie\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"snap01\", \"volume_type\": \"l_ssd\", \"size\": 15000000000}, \"extra_volumes\": {\"1\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"snap02\", \"volume_type\": \"l_ssd\", \"size\": 10000000000}, \"2\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"snap03\", \"volume_type\": \"l_ssd\", \"size\": 20000000000}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:30.060284+00:00\", \"modification_date\": \"2025-10-30T15:44:30.060284+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "825" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d3a3ee19-435d-48ae-bf4c-ec8bc50a38e3 + status: 200 OK + code: 200 + duration: 98.554969ms +- id: 133 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/8fecc66c-43d6-4755-9cf5-8892183a21db + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 825 + body: "{\"image\": {\"id\": \"8fecc66c-43d6-4755-9cf5-8892183a21db\", \"name\": \"tf-image-unruffled-ritchie\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"snap01\", \"volume_type\": \"l_ssd\", \"size\": 15000000000}, \"extra_volumes\": {\"1\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"snap02\", \"volume_type\": \"l_ssd\", \"size\": 10000000000}, \"2\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"snap03\", \"volume_type\": \"l_ssd\", \"size\": 20000000000}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:30.060284+00:00\", \"modification_date\": \"2025-10-30T15:44:30.060284+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "825" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e6faa9eb-d741-45e3-ad01-e2701984e32c + status: 200 OK + code: 200 + duration: 133.300049ms +- id: 134 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 516 + body: "{\"snapshot\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"snap01\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.685426+00:00\", \"modification_date\": \"2025-10-30T15:44:29.696613+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 15000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "516" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 135898cc-d2aa-4524-802f-f25d4be13606 + status: 200 OK + code: 200 + duration: 102.900411ms +- id: 135 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 516 + body: "{\"snapshot\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"snap02\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.192734+00:00\", \"modification_date\": \"2025-10-30T15:44:29.695597+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 10000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "516" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 86357341-c330-44f6-b3fd-86e9a1948e25 + status: 200 OK + code: 200 + duration: 94.867991ms +- id: 136 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 516 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"snap03\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:44:29.689975+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "516" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1826e7b0-9250-44e8-935d-340e598b1700 + status: 200 OK + code: 200 + duration: 98.039782ms +- id: 137 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/8fecc66c-43d6-4755-9cf5-8892183a21db + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 825 + body: "{\"image\": {\"id\": \"8fecc66c-43d6-4755-9cf5-8892183a21db\", \"name\": \"tf-image-unruffled-ritchie\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"snap01\", \"volume_type\": \"l_ssd\", \"size\": 15000000000}, \"extra_volumes\": {\"1\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"snap02\", \"volume_type\": \"l_ssd\", \"size\": 10000000000}, \"2\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"snap03\", \"volume_type\": \"l_ssd\", \"size\": 20000000000}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:30.060284+00:00\", \"modification_date\": \"2025-10-30T15:44:30.060284+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "825" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a2188313-0bd8-4c17-b3b2-4b6e166f1dde + status: 200 OK + code: 200 + duration: 109.4721ms +- id: 138 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2356 + body: "{\"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-tender-lamarr\", \"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\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:44:25.034913+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:6c:f7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:43:17.124660+00:00\", \"bootscript\": 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\": \"902\", \"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: + - "2356" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 65fd8c03-07e0-4206-b2a9-678e72cc011e + status: 200 OK + code: 200 + duration: 139.687833ms +- id: 139 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2310 + body: "{\"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-rubin\", \"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\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:44:16.122158+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:6c:f9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:43:11.131413+00:00\", \"bootscript\": 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\": \"104\", \"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: + - "2310" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7ae425ba-8f2b-45a8-a18b-2e685d3e96a0 + status: 200 OK + code: 200 + duration: 139.722308ms +- id: 140 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2368 + body: "{\"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-xenodochial-kalam\", \"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\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\"}, \"size\": 15000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:44:13.353955+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:6c:fb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:43:11.676120+00:00\", \"bootscript\": 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\": \"702\", \"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: + - "2368" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5b80d058-e6df-4813-a30c-9173133c7a9f + status: 200 OK + code: 200 + duration: 139.711418ms +- id: 141 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/69705f6b-f052-49fb-8594-2bc979eeb994 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 520 + body: "{\"volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:44:25.034913+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "520" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4392cecd-874a-46f0-827a-d056b1ace52e + status: 200 OK + code: 200 + duration: 106.847546ms +- id: 142 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6453a087-a5ae-4c5a-95d0-d2a90d0ab05a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 520 + body: "{\"volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:44:16.122158+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "520" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7885fae3-34aa-424e-bf1c-41e9c24c77c0 + status: 200 OK + code: 200 + duration: 110.556904ms +- id: 143 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/78eed75d-f48e-4e2d-9ba5-5e99703b8018 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 524 + body: "{\"volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\"}, \"size\": 15000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:44:13.353955+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "524" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 313c0c0d-8e12-427d-869f-f115f57ef0be + status: 200 OK + code: 200 + duration: 112.925988ms +- id: 144 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c5d04dcb-b48e-4094-adba-6541963cefdd + status: 200 OK + code: 200 + duration: 94.060396ms +- id: 145 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - de52e2db-9813-4888-8f35-0f2299810866 + status: 200 OK + code: 200 + duration: 93.408724ms +- id: 146 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ece47abf-3fa5-45f3-8ca2-4ef9c6fda7bf + status: 200 OK + code: 200 + duration: 121.922796ms +- id: 147 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:31 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 70ced590-ec52-4370-a419-a40ddc4817ee + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 101.1946ms +- id: 148 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:31 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8d0e7c08-8207-49bb-a6b6-1d72cfd8f44a + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 107.528643ms +- id: 149 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:31 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d2141e99-7f0f-47ad-a9f0-f55fa98d56ff + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 99.276683ms +- id: 150 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 516 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"snap03\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:44:29.689975+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "516" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 74712034-db8f-4bbf-8612-aaeef5455429 + status: 200 OK + code: 200 + duration: 96.230737ms +- id: 151 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 516 + body: "{\"snapshot\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"snap01\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.685426+00:00\", \"modification_date\": \"2025-10-30T15:44:29.696613+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 15000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "516" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 793ae34c-7f16-47bc-9a09-c23256ac070e + status: 200 OK + code: 200 + duration: 115.943128ms +- id: 152 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 516 + body: "{\"snapshot\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"snap02\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.192734+00:00\", \"modification_date\": \"2025-10-30T15:44:29.695597+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 10000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "516" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 66ad8166-c81b-4560-8e88-1fb1178e0c4c + status: 200 OK + code: 200 + duration: 98.886219ms +- id: 153 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/8fecc66c-43d6-4755-9cf5-8892183a21db + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 825 + body: "{\"image\": {\"id\": \"8fecc66c-43d6-4755-9cf5-8892183a21db\", \"name\": \"tf-image-unruffled-ritchie\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"snap01\", \"volume_type\": \"l_ssd\", \"size\": 15000000000}, \"extra_volumes\": {\"1\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"snap02\", \"volume_type\": \"l_ssd\", \"size\": 10000000000}, \"2\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"snap03\", \"volume_type\": \"l_ssd\", \"size\": 20000000000}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:30.060284+00:00\", \"modification_date\": \"2025-10-30T15:44:30.060284+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "825" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e3505597-6a48-4b7b-bf9b-37de3571302a + status: 200 OK + code: 200 + duration: 100.779462ms +- id: 154 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/8fecc66c-43d6-4755-9cf5-8892183a21db + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 825 + body: "{\"image\": {\"id\": \"8fecc66c-43d6-4755-9cf5-8892183a21db\", \"name\": \"tf-image-unruffled-ritchie\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"snap01\", \"volume_type\": \"l_ssd\", \"size\": 15000000000}, \"extra_volumes\": {\"1\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"snap02\", \"volume_type\": \"l_ssd\", \"size\": 10000000000}, \"2\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"snap03\", \"volume_type\": \"l_ssd\", \"size\": 20000000000}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:30.060284+00:00\", \"modification_date\": \"2025-10-30T15:44:30.060284+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "825" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 10676a79-9577-4047-8efe-fa2bd760050f + status: 200 OK + code: 200 + duration: 119.575633ms +- id: 155 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/8fecc66c-43d6-4755-9cf5-8892183a21db + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 28078abd-6061-42bb-aeb4-1c7e0929c875 + status: 204 No Content + code: 204 + duration: 382.467247ms +- id: 156 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/8fecc66c-43d6-4755-9cf5-8892183a21db + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 142 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_image\", \"resource_id\": \"8fecc66c-43d6-4755-9cf5-8892183a21db\"}" + headers: + Content-Length: + - "142" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2f1c530e-7271-4032-a86f-b5bcddd84aec + status: 404 Not Found + code: 404 + duration: 34.694936ms +- id: 157 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 516 + body: "{\"snapshot\": {\"id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\", \"name\": \"snap03\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:20.389204+00:00\", \"modification_date\": \"2025-10-30T15:44:29.689975+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "516" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1f8033ef-87e2-42da-936a-5fbe1f3ec469 + status: 200 OK + code: 200 + duration: 88.388617ms +- id: 158 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 516 + body: "{\"snapshot\": {\"id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\", \"name\": \"snap02\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.192734+00:00\", \"modification_date\": \"2025-10-30T15:44:29.695597+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 10000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "516" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b5e2d6bd-bfde-4a75-a66a-54de7e490bd8 + status: 200 OK + code: 200 + duration: 100.171021ms +- id: 159 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 516 + body: "{\"snapshot\": {\"id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\", \"name\": \"snap01\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:43:15.685426+00:00\", \"modification_date\": \"2025-10-30T15:44:29.696613+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 15000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "516" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4fd7778f-1450-4f5d-b708-8f7c49d2b367 + status: 200 OK + code: 200 + duration: 100.174066ms +- id: 160 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f502e5ea-1a37-4594-967b-397bf3283202 + status: 204 No Content + code: 204 + duration: 141.453786ms +- id: 161 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a020d3da-e988-486b-b684-2fbf3bf74048 + status: 204 No Content + code: 204 + duration: 149.634623ms +- id: 162 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 145 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_snapshot\", \"resource_id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\"}" + headers: + Content-Length: + - "145" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bc2a2cc1-93db-4e48-a1b4-40371fff2751 + status: 404 Not Found + code: 404 + duration: 26.373146ms +- id: 163 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ab374653-0b7f-460a-bd8f-913f9c1effc3 + status: 204 No Content + code: 204 + duration: 157.710453ms +- id: 164 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 145 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_snapshot\", \"resource_id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\"}" + headers: + Content-Length: + - "145" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c3ae9a31-ff1d-4354-a0ff-7f0ff59ba1c5 + status: 404 Not Found + code: 404 + duration: 29.833668ms +- id: 165 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 145 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_snapshot\", \"resource_id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\"}" + headers: + Content-Length: + - "145" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aeb2e0e3-0ef2-4e7b-8e4e-8c919b5746a1 + status: 404 Not Found + code: 404 + duration: 27.476005ms +- id: 166 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2368 + body: "{\"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-xenodochial-kalam\", \"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\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\"}, \"size\": 15000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:44:13.353955+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:6c:fb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:43:11.676120+00:00\", \"bootscript\": 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\": \"702\", \"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: + - "2368" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0bc960f3-efc1-4578-a5e4-4fab7859dc0e + status: 200 OK + code: 200 + duration: 129.361702ms +- id: 167 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2356 + body: "{\"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-rubin\", \"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\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:44:16.122158+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:6c:f9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:43:11.131413+00:00\", \"bootscript\": 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\": \"104\", \"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: + - "2356" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8eb40669-d1f2-48d8-a94a-235b19e70e3c + status: 200 OK + code: 200 + duration: 136.669581ms +- id: 168 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2310 + body: "{\"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-tender-lamarr\", \"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\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:44:25.034913+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:6c:f7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:43:17.124660+00:00\", \"bootscript\": 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\": \"902\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fdac2868-fe0b-4355-8285-240b4e29d600 + status: 200 OK + code: 200 + duration: 169.318971ms +- id: 169 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2356 + body: "{\"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-tender-lamarr\", \"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\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:44:25.034913+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:6c:f7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:43:17.124660+00:00\", \"bootscript\": 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\": \"902\", \"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: + - "2356" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ea518a00-77ba-4acc-a4ec-29abb6e05cba + status: 200 OK + code: 200 + duration: 109.998477ms +- id: 170 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2368 + body: "{\"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-xenodochial-kalam\", \"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\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\"}, \"size\": 15000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:44:13.353955+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:6c:fb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:43:11.676120+00:00\", \"bootscript\": 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\": \"702\", \"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: + - "2368" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 01877f59-ac18-4777-bd57-7ad2f7377034 + status: 200 OK + code: 200 + duration: 148.906077ms +- id: 171 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2356 + body: "{\"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-rubin\", \"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\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:44:16.122158+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:6c:f9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:43:11.131413+00:00\", \"bootscript\": 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\": \"104\", \"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: + - "2356" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8edbc575-eb08-4d45-a8ed-fe73a78c29d9 + status: 200 OK + code: 200 + duration: 145.499036ms +- id: 172 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"5faaeb7b-d4ba-48a7-a523-66c14eaa8ce5\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3/action\", \"href_result\": \"/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"started_at\": \"2025-10-30T15:44:33.373248+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:33 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5faaeb7b-d4ba-48a7-a523-66c14eaa8ce5 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cabadee4-5e40-4610-99b6-9f1968374c78 + status: 202 Accepted + code: 202 + duration: 257.983776ms +- id: 173 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"8da6a7c6-c846-4eca-ae4c-d3332a78e4eb\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/a4e0f736-493d-4692-bbed-8bd54044d90c/action\", \"href_result\": \"/servers/a4e0f736-493d-4692-bbed-8bd54044d90c\", \"started_at\": \"2025-10-30T15:44:33.423591+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:33 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8da6a7c6-c846-4eca-ae4c-d3332a78e4eb + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 267882b4-ff45-45ba-b744-0b4de2539687 + status: 202 Accepted + code: 202 + duration: 291.05079ms +- id: 174 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"59bc1937-3388-47f7-b70b-c7cf55efcbef\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223/action\", \"href_result\": \"/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"started_at\": \"2025-10-30T15:44:33.420174+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:33 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/59bc1937-3388-47f7-b70b-c7cf55efcbef + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e2526051-f7bb-4704-b5a0-f071680005cb + status: 202 Accepted + code: 202 + duration: 283.282155ms +- id: 175 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2319 + body: "{\"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-tender-lamarr\", \"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\": \"69705f6b-f052-49fb-8594-2bc979eeb994\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\", \"name\": \"tf-srv-tender-lamarr\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:44:25.034913+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:6c:f7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.917296+00:00\", \"modification_date\": \"2025-10-30T15:44:33.170025+00:00\", \"bootscript\": 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\": \"902\", \"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: + - "2319" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - de8b1109-76b6-4c9f-a441-b3ade4b07cf6 + status: 200 OK + code: 200 + duration: 120.226243ms +- id: 176 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2285 + body: "{\"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-xenodochial-kalam\", \"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\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\", \"name\": \"tf-srv-xenodochial-kalam\"}, \"size\": 15000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:44:13.353955+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:6c:fb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:03.326544+00:00\", \"modification_date\": \"2025-10-30T15:44:33.182922+00:00\", \"bootscript\": 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\": \"702\", \"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: + - "2285" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f96b9ff4-1e4d-42f8-981d-d5591c5c04b9 + status: 200 OK + code: 200 + duration: 121.856402ms +- id: 177 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2319 + body: "{\"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-rubin\", \"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\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\", \"name\": \"tf-srv-nervous-rubin\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:44:16.122158+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:6c:f9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:02.964250+00:00\", \"modification_date\": \"2025-10-30T15:44:33.193445+00:00\", \"bootscript\": 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\": \"104\", \"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: + - "2319" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fa5f4353-a27e-44da-8fcb-d9e5a1a593e2 + status: 200 OK + code: 200 + duration: 140.237325ms +- id: 178 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9b9ac3a7-2b20-445f-ac7c-210264450165 + status: 404 Not Found + code: 404 + duration: 49.390777ms +- id: 179 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/69705f6b-f052-49fb-8594-2bc979eeb994 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"69705f6b-f052-49fb-8594-2bc979eeb994\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 26b2696b-ac8b-474b-ac6e-0ebe1ac11e3d + status: 404 Not Found + code: 404 + duration: 27.422915ms +- id: 180 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/69705f6b-f052-49fb-8594-2bc979eeb994 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"69705f6b-f052-49fb-8594-2bc979eeb994\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5c8d1710-129c-4c53-bb39-9cb94f985d50 + status: 404 Not Found + code: 404 + duration: 30.108204ms +- id: 181 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f8e2248d-de32-40e9-857f-24509a29a387 + status: 404 Not Found + code: 404 + duration: 58.315009ms +- id: 182 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0de3309f-8b5d-4139-ab71-494af5bf9b3b + status: 404 Not Found + code: 404 + duration: 46.222904ms +- id: 183 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/78eed75d-f48e-4e2d-9ba5-5e99703b8018 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"78eed75d-f48e-4e2d-9ba5-5e99703b8018\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9cb8c0aa-111e-430e-a512-e87d9c0b7af9 + status: 404 Not Found + code: 404 + duration: 27.662484ms +- id: 184 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6453a087-a5ae-4c5a-95d0-d2a90d0ab05a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ffdd529c-954f-43f6-9ce8-07c95da34ba5 + status: 404 Not Found + code: 404 + duration: 27.371279ms +- id: 185 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/78eed75d-f48e-4e2d-9ba5-5e99703b8018 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"78eed75d-f48e-4e2d-9ba5-5e99703b8018\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ebf4c3b2-4397-46ac-b689-d46db9284223 + status: 404 Not Found + code: 404 + duration: 18.220362ms +- id: 186 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6453a087-a5ae-4c5a-95d0-d2a90d0ab05a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"6453a087-a5ae-4c5a-95d0-d2a90d0ab05a\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ae0d8df8-fbc6-4b75-a553-d89c62a37611 + status: 404 Not Found + code: 404 + duration: 27.533643ms +- id: 187 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/8fecc66c-43d6-4755-9cf5-8892183a21db + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 142 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_image\", \"resource_id\": \"8fecc66c-43d6-4755-9cf5-8892183a21db\"}" + headers: + Content-Length: + - "142" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 31dac0d4-d184-4ed0-bfbd-d77e64b507fe + status: 404 Not Found + code: 404 + duration: 31.262298ms +- id: 188 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/14530b18-913a-4bb1-81c4-67d6d0ed35ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 145 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_snapshot\", \"resource_id\": \"14530b18-913a-4bb1-81c4-67d6d0ed35ec\"}" + headers: + Content-Length: + - "145" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d9dff5c8-ad0b-465f-af33-aa36ef169caa + status: 404 Not Found + code: 404 + duration: 27.289225ms +- id: 189 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/7012bbdc-198d-4be2-a487-f77db0f0d0c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 145 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_snapshot\", \"resource_id\": \"7012bbdc-198d-4be2-a487-f77db0f0d0c0\"}" + headers: + Content-Length: + - "145" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 947e371f-b623-4173-9b49-e4e02a294d8d + status: 404 Not Found + code: 404 + duration: 32.19036ms +- id: 190 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/c14388f8-4dd5-4e84-88c3-3357514ed1a6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 145 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_snapshot\", \"resource_id\": \"c14388f8-4dd5-4e84-88c3-3357514ed1a6\"}" + headers: + Content-Length: + - "145" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d6c29477-a194-41cd-8517-165aed4e4add + status: 404 Not Found + code: 404 + duration: 28.848971ms +- id: 191 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a4e0f736-493d-4692-bbed-8bd54044d90c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"a4e0f736-493d-4692-bbed-8bd54044d90c\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c2216e7d-c20b-461d-904b-8bbf0ffd6ea4 + status: 404 Not Found + code: 404 + duration: 45.501922ms +- id: 192 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/adb2b97b-5e8b-4d4a-946f-84df196e6223 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"adb2b97b-5e8b-4d4a-946f-84df196e6223\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 37644ae8-239e-4cb8-95c7-419dfddda5f4 + status: 404 Not Found + code: 404 + duration: 42.908256ms +- id: 193 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/43cb9d47-37b0-4618-94bf-c0b28b232ae3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"43cb9d47-37b0-4618-94bf-c0b28b232ae3\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 145ded12-f03a-4824-86de-adab63280b4a + status: 404 Not Found + code: 404 + duration: 42.693443ms 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 d78b08eb9..8ff98c2a5 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 @@ -1,5637 +1,4330 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4d337452-fc6c-4ecf-a1dd-24f078c0cb9e - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 64.709372ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2bc15180-6af1-4e63-9f51-e4801e775be7 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 60.997972ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e3436892-613b-4ae7-be7b-a5f1208433a3 - status: 200 OK - code: 200 - duration: 42.908569ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 149 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+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: 422 - uncompressed: false - 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: - - "422" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 21bfe2aa-6af3-4155-ab02-bf8fdeec086f - status: 200 OK - code: 200 - duration: 241.115961ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 422 - uncompressed: false - 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: - - "422" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - badd32ed-0a51-4974-adf6-464e425e8122 - status: 200 OK - code: 200 - duration: 66.258378ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 244 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1754 - uncompressed: false - 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: - - "1754" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 06cb6d0c-e0c3-40a5-9cf9-f0dfa1444884 - status: 201 Created - code: 201 - duration: 1.102773094s - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1754 - uncompressed: false - 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: - - "1754" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ddfa4906-8f19-47a3-8590-b55308c57333 - status: 200 OK - code: 200 - duration: 148.151669ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1800 - uncompressed: false - 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: - - "1800" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a1d6c822-5c9c-419f-85ea-f5f7efba6e12 - status: 200 OK - code: 200 - duration: 138.356726ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2e3b551d-23bd-47d4-a956-482a1a371821 - status: 200 OK - code: 200 - duration: 99.301843ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweron"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/354abc3e-10a2-4317-b4b8-18040f2a3f4e - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - eb00cf39-9b58-419c-8130-3d0ea8292f84 - status: 202 Accepted - code: 202 - duration: 241.833575ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1776 - uncompressed: false - 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: - - "1776" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ed7d27e9-c18b-434a-bc2b-54743548cb74 - status: 200 OK - code: 200 - duration: 144.880063ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - 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: - - "423" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 70490803-0f18-4afb-990c-3e38cbdffb89 - status: 200 OK - code: 200 - duration: 90.736598ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - 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: - - "423" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 97adb1ca-dec1-437a-9e60-f7501ac1ea93 - status: 200 OK - code: 200 - duration: 84.12214ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 152 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 466 - uncompressed: false - 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: - - "466" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2626937a-ac08-4401-9e05-14cbda4734a4 - status: 200 OK - code: 200 - duration: 418.79597ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 466 - uncompressed: false - 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: - - "466" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4850764b-295b-4b7e-967f-1303a42d65e6 - status: 200 OK - code: 200 - duration: 230.828981ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1910 - uncompressed: false - 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: - - "1910" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9466e657-9057-4f63-bc06-2816d7059be9 - status: 200 OK - code: 200 - duration: 118.56438ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1956 - uncompressed: false - 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: - - "1956" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1af532f0-e2d0-4b08-a48d-4e644df30644 - status: 200 OK - code: 200 - duration: 135.771795ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe - 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": "5a6ca56c-04b9-421c-8777-7292ea40cefe"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8d22fe80-d3ad-45cf-ba6f-1db150e62542 - status: 404 Not Found - code: 404 - duration: 48.685812ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b2d1ec95-239c-45d5-8106-51c2a8f08c2c - status: 200 OK - code: 200 - duration: 81.595025ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e/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:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c74c3013-51d1-49a1-b650-d664abd8b4a5 - status: 200 OK - code: 200 - duration: 95.638855ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e/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:49 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 690936c4-ec53-49bf-98c0-1229a3183404 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 101.731647ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 467 - uncompressed: false - 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: - - "467" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6aa94d7a-5cc0-423e-a102-8184a6f1aea3 - status: 200 OK - code: 200 - duration: 253.542164ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 467 - uncompressed: false - 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: - - "467" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3217b893-32cb-4eb3-8c8c-bfd2fe355db6 - status: 200 OK - code: 200 - duration: 222.792209ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - 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: - - "423" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8f1fafad-c7a9-40c6-b332-0d0f47e92103 - status: 200 OK - code: 200 - duration: 104.962ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1910 - uncompressed: false - 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: - - "1910" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dbf1b374-64e4-4908-b93e-4a196a9c51ae - status: 200 OK - code: 200 - duration: 121.278708ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 467 - uncompressed: false - 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: - - "467" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3e1f6408-f57b-4619-bcb4-9a404819fcc7 - status: 200 OK - code: 200 - duration: 204.520133ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - 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: - - "423" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a9f9fe00-7ea6-4ca7-9e52-0a8f58543699 - status: 200 OK - code: 200 - duration: 76.356813ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1956 - uncompressed: false - 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: - - "1956" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1af389f1-074a-49b1-99b7-3bf230d75b97 - status: 200 OK - code: 200 - duration: 139.673762ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe - 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": "5a6ca56c-04b9-421c-8777-7292ea40cefe"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 001e5b3c-b1f1-44d2-b6dc-1cf2087a1fea - status: 404 Not Found - code: 404 - duration: 29.255112ms - - 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/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: 467 - uncompressed: false - 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: - - "467" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1e9ab8a2-e039-47e5-9d85-18d0857fc796 - status: 200 OK - code: 200 - duration: 141.085262ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e7d2b697-b740-4860-b0fc-6976a5993903 - status: 200 OK - code: 200 - duration: 104.322393ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e/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:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c65d6e06-e7d3-42a9-9d69-3a1019e94c13 - status: 200 OK - code: 200 - duration: 108.290914ms - - 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/86756a92-27ed-4ad6-9ff1-38e179ff638e/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:54 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5eb6b26e-030b-443a-a8d9-585d3441fc3a - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 99.321182ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - 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: - - "423" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bbf51abe-98cd-47ec-adaf-bb6ae88c64e7 - status: 200 OK - code: 200 - duration: 88.264808ms - - 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/86756a92-27ed-4ad6-9ff1-38e179ff638e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1910 - uncompressed: false - 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: - - "1910" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9f4a9fba-e77a-476c-9b9a-8802d4752d0f - status: 200 OK - code: 200 - duration: 147.264466ms - - 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/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe - 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": "5a6ca56c-04b9-421c-8777-7292ea40cefe"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a6edf542-8fed-44b5-9ea7-0f2b914ab7f9 - status: 404 Not Found - code: 404 - duration: 27.905799ms - - 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/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: 467 - uncompressed: false - 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: - - "467" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f5c65622-a84e-4abc-a585-2416765a329f - status: 200 OK - code: 200 - duration: 136.454995ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ab055813-ae6a-4666-b12a-0cca7f60ba30 - status: 200 OK - code: 200 - duration: 88.881151ms - - 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/86756a92-27ed-4ad6-9ff1-38e179ff638e/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:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b2a4fb7f-1f49-419c-8df6-c2b014e4c864 - status: 200 OK - code: 200 - duration: 96.847908ms - - 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/86756a92-27ed-4ad6-9ff1-38e179ff638e/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:54 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0e4356af-d43c-4e84-bcca-cad89edb40f6 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 89.498084ms - - id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 152 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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: - - "475" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 56f07a2f-cddf-449b-b405-26220014ccb7 - status: 200 OK - code: 200 - duration: 408.965328ms - - 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/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - 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: - - "706" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 856d4b1b-9c48-47b1-bea2-7ff1f20ecb84 - status: 200 OK - code: 200 - duration: 224.500143ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 476 - uncompressed: false - 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: - - "476" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3b7ed07a-5585-4a5c-9eec-f9bffb8aea8e - status: 200 OK - code: 200 - duration: 184.214667ms - - id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 476 - uncompressed: false - 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: - - "476" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7dbce0d7-813d-4909-b44c-bb053ae0b034 - status: 200 OK - code: 200 - duration: 153.296691ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 240 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 693 - uncompressed: false - 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: - - "693" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6ff6ab55-a85b-48cf-9d61-f5d564f0e7c8 - status: 201 Created - code: 201 - duration: 669.494681ms - - 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/images/c993260b-9908-4683-b73c-139d208f851e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 693 - uncompressed: false - 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: - - "693" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fc99d72a-1b27-4212-844b-36886df9de29 - status: 200 OK - code: 200 - duration: 127.238353ms - - 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/images/c993260b-9908-4683-b73c-139d208f851e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 693 - uncompressed: false - 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: - - "693" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 720ae4f6-6c20-4c7c-92f9-a64b1501356f - status: 200 OK - code: 200 - duration: 106.902054ms - - id: 47 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - 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: - - "423" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ed7dbe22-c261-4e13-b112-81189c624668 - status: 200 OK - code: 200 - duration: 80.916683ms - - 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/86756a92-27ed-4ad6-9ff1-38e179ff638e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1910 - uncompressed: false - 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: - - "1910" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1f476d70-b613-4fcf-86db-d10b2ad6f649 - status: 200 OK - code: 200 - duration: 134.468594ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 693 - uncompressed: false - 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: - - "693" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - be632eec-8f55-4f3c-b49b-2eee4593fcef - status: 200 OK - code: 200 - duration: 139.656244ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 702 - uncompressed: false - 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: - - "702" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c2e3948a-7c84-48b2-b1c1-a51c101a1a28 - status: 200 OK - code: 200 - duration: 162.314776ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 693 - uncompressed: false - 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: - - "693" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 23ba7da5-6855-42eb-95ce-8b7b2edae536 - status: 200 OK - code: 200 - duration: 110.618434ms - - id: 52 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - 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: - - "423" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cb8d18aa-0386-4be3-b9bc-ce872be36403 - status: 200 OK - code: 200 - duration: 105.647369ms - - 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/86756a92-27ed-4ad6-9ff1-38e179ff638e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1956 - uncompressed: false - 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: - - "1956" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 49edad4c-8c47-46a8-84b8-62f359c5317a - status: 200 OK - code: 200 - duration: 139.538676ms - - 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/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe - 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": "5a6ca56c-04b9-421c-8777-7292ea40cefe"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 986918c7-b239-4c49-8ed2-f8d2fbee03c7 - status: 404 Not Found - code: 404 - duration: 30.590594ms - - id: 55 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 766a93a2-38e6-410d-9275-485ceb1adf35 - status: 200 OK - code: 200 - duration: 83.528876ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 693 - uncompressed: false - 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: - - "693" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2466176b-9933-4a67-9bf0-c8ee27aa0b20 - status: 200 OK - code: 200 - duration: 222.143513ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e/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:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2d980b57-34df-48cb-afb1-86a13af78e48 - status: 200 OK - code: 200 - duration: 95.008455ms - - 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/86756a92-27ed-4ad6-9ff1-38e179ff638e/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:54:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 64b6b5f1-9f83-4b39-ba2d-724c5ec9b05b - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 92.002604ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 702 - uncompressed: false - 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: - - "702" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5eca0dc0-19b5-4538-bcf7-09f700f13d7a - status: 200 OK - code: 200 - duration: 183.337528ms - - 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/images/c993260b-9908-4683-b73c-139d208f851e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 693 - uncompressed: false - 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: - - "693" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 316d3c46-2a54-42a9-ad82-89bcdf3c3090 - status: 200 OK - code: 200 - duration: 142.641116ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - 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: - - "423" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8f25f19d-41dc-433d-83d7-a54853554e87 - status: 200 OK - code: 200 - duration: 82.482411ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1910 - uncompressed: false - 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: - - "1910" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 952cd947-2435-429a-9b9e-2e1312870341 - status: 200 OK - code: 200 - duration: 158.579071ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe - 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": "5a6ca56c-04b9-421c-8777-7292ea40cefe"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e86f3545-b6a7-43af-8aa2-1bd1a9008202 - status: 404 Not Found - code: 404 - duration: 29.161391ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b95dd8bb-9c65-4e3d-84d0-5eaaa53b4ac1 - status: 200 OK - code: 200 - duration: 93.194342ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 693 - uncompressed: false - 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: - - "693" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 88cff9ee-0569-4269-8f32-207bea4aff22 - status: 200 OK - code: 200 - duration: 226.096868ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e/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:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a3feeefc-cc05-41f4-a523-ac8986480e48 - status: 200 OK - code: 200 - duration: 90.485877ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e/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:54:57 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d8f4855a-1da6-44c3-9113-9eeec738bac7 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 91.742918ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 702 - uncompressed: false - 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: - - "702" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8657cac5-b7d3-42ca-b190-8ef38d584523 - status: 200 OK - code: 200 - duration: 271.496335ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 693 - uncompressed: false - 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: - - "693" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f5bad555-5767-439c-a6f2-13a35759abb5 - status: 200 OK - code: 200 - duration: 118.898418ms - - id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 149 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+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: 423 - uncompressed: false - 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: - - "423" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9c7568a2-f6e3-47aa-8cfe-d9b3af3ff0ea - status: 200 OK - code: 200 - duration: 253.656906ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9801e908-338b-499b-af2b-95f9fb3c2b69 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - 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: - - "423" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5f7fe27e-6270-49aa-8ec2-48fec566132c - status: 200 OK - code: 200 - duration: 88.061615ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9801e908-338b-499b-af2b-95f9fb3c2b69 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 424 - uncompressed: false - 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: - - "424" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4b440475-c758-4880-a383-ca2f9fb85525 - status: 200 OK - code: 200 - duration: 83.333694ms - - id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9801e908-338b-499b-af2b-95f9fb3c2b69 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 424 - uncompressed: false - 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: - - "424" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 243e82a8-bc68-455f-9d26-17a4ffac957f - status: 200 OK - code: 200 - duration: 79.351117ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 146 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 460 - 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:03.752142Z", "references":[], "status":"creating", "tags":[], "class":"sbs", "zone":"fr-par-1"}' - headers: - Content-Length: - - "460" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a0a5e8fa-a0e8-4f83-8fad-291a670cafd2 - status: 200 OK - code: 200 - duration: 384.740496ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/0af01e12-a33b-4fd9-95e8-fc4ac6225897 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 460 - 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:03.752142Z", "references":[], "status":"creating", "tags":[], "class":"sbs", "zone":"fr-par-1"}' - headers: - Content-Length: - - "460" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 892e55d2-a15a-413d-868c-9602a568668e - status: 200 OK - code: 200 - duration: 256.224251ms - - 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/snapshots/0af01e12-a33b-4fd9-95e8-fc4ac6225897 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 461 - 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:03.752142Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' - headers: - Content-Length: - - "461" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4b93515b-c7ec-4f7c-a0d3-1915ff2c7f20 - status: 200 OK - code: 200 - duration: 209.252386ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/0af01e12-a33b-4fd9-95e8-fc4ac6225897 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 461 - 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:03.752142Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' - headers: - Content-Length: - - "461" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5003f4a0-163d-49b4-baae-2bae2a46de5c - status: 200 OK - code: 200 - duration: 229.524304ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 693 - uncompressed: false - 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: - - "693" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cfc831cc-5cf9-4753-8ce7-ae8bd0b5532c - status: 200 OK - code: 200 - duration: 134.731711ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 693 - uncompressed: false - 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: - - "693" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 12a3a991-d61e-4dbc-b971-a2119ab9fabc - status: 200 OK - code: 200 - duration: 114.645169ms - - id: 80 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 133 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/c993260b-9908-4683-b73c-139d208f851e - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 693 - uncompressed: false - 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: - - "693" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 951a1d63-da12-498e-ae63-07d4ad04523f - status: 200 OK - code: 200 - duration: 520.228979ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 693 - uncompressed: false - 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: - - "693" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 51a5c7f6-036f-4352-b68a-ac492ef64a57 - status: 200 OK - code: 200 - duration: 106.867144ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 693 - uncompressed: false - 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: - - "693" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f1bffb35-853b-4bf3-8ee8-3dae27215a09 - status: 200 OK - code: 200 - duration: 132.666669ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - 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: - - "423" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0dc07dbf-5ba3-4cdd-a72d-302a6e1c799a - status: 200 OK - code: 200 - duration: 77.527568ms - - id: 84 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9801e908-338b-499b-af2b-95f9fb3c2b69 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 424 - uncompressed: false - 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: - - "424" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aa68e8f6-97c9-49a7-bcc8-d02f282b6300 - status: 200 OK - code: 200 - duration: 90.290264ms - - 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/86756a92-27ed-4ad6-9ff1-38e179ff638e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1956 - uncompressed: false - 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: - - "1956" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a0f2d9b1-94b0-4fc2-b40e-bb35ed8430dd - status: 200 OK - code: 200 - duration: 129.46372ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 467 - uncompressed: false - 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: - - "467" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 331abb80-3e6d-4823-9eda-031edbce439e - status: 200 OK - code: 200 - duration: 162.747261ms - - id: 87 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/0af01e12-a33b-4fd9-95e8-fc4ac6225897 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 687 - 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":[{"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: - - "687" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 796b6503-08b3-48e5-a9f7-6328f99bc35d - status: 200 OK - code: 200 - duration: 148.608862ms - - id: 88 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 702 - uncompressed: false - 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: - - "702" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dfd75b6f-6543-4b34-bd05-b1a72c54c29c - status: 200 OK - code: 200 - duration: 143.98176ms - - 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/images/c993260b-9908-4683-b73c-139d208f851e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 693 - uncompressed: false - 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: - - "693" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c0cf1fd9-8bdb-4693-a47c-062f9cf651e9 - status: 200 OK - code: 200 - duration: 120.310715ms - - id: 90 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9801e908-338b-499b-af2b-95f9fb3c2b69 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 424 - uncompressed: false - 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: - - "424" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4106017c-c7bd-441a-8dfb-d843acb4f1ff - status: 200 OK - code: 200 - duration: 81.645309ms - - id: 91 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - 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: - - "423" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 46fa8e2c-962b-41d3-9744-241661121bee - status: 200 OK - code: 200 - duration: 103.241945ms - - 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/86756a92-27ed-4ad6-9ff1-38e179ff638e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1956 - uncompressed: false - 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: - - "1956" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 39d773a5-ad42-4130-8c41-764d0df51e96 - status: 200 OK - code: 200 - duration: 137.432722ms - - id: 93 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe - 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": "5a6ca56c-04b9-421c-8777-7292ea40cefe"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 78c5bd6e-f61f-43a1-b412-484c57c2880d - status: 404 Not Found - code: 404 - duration: 26.468156ms - - id: 94 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 488f3fc1-22c0-4efd-b39a-1b3e88dd0613 - status: 200 OK - code: 200 - duration: 108.147979ms - - id: 95 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/0af01e12-a33b-4fd9-95e8-fc4ac6225897 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 687 - 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":[{"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: - - "687" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 51f0ce99-145a-4b69-9518-2f4c42d981ba - status: 200 OK - code: 200 - duration: 254.065699ms - - id: 96 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 467 - uncompressed: false - 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: - - "467" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2e51c664-a554-4ba5-967a-0df62cdd1577 - status: 200 OK - code: 200 - duration: 232.441311ms - - 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/86756a92-27ed-4ad6-9ff1-38e179ff638e/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:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9efd0145-95bc-4931-a54a-17588aae3858 - status: 200 OK - code: 200 - duration: 90.949498ms - - 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/86756a92-27ed-4ad6-9ff1-38e179ff638e/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:55:12 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d64b1de0-a9f8-4220-8226-ff8ce8789839 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 101.53358ms - - id: 99 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 702 - uncompressed: false - 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: - - "702" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - abd5ec82-85c1-43e0-a6fc-e4cb35a08be0 - status: 200 OK - code: 200 - duration: 242.484252ms - - 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/images/c993260b-9908-4683-b73c-139d208f851e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 693 - uncompressed: false - 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: - - "693" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6ed7ece4-d5f5-4431-a505-9a9ae7e7f2db - status: 200 OK - code: 200 - duration: 120.139073ms - - 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/images/c993260b-9908-4683-b73c-139d208f851e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 693 - uncompressed: false - 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: - - "693" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f0e63ccb-c453-40b1-a5ee-3d12b83a697d - status: 200 OK - code: 200 - duration: 127.629832ms - - id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 467 - uncompressed: false - 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: - - "467" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 21c9fff7-fcb5-4861-b86f-2862afc0455b - status: 200 OK - code: 200 - duration: 244.522584ms - - id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 - 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:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9b235107-2921-4705-a1a8-4820939471b3 - status: 204 No Content - code: 204 - duration: 357.910462ms - - 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/images/c993260b-9908-4683-b73c-139d208f851e - 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:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - beebcb53-0707-42f7-9413-4cd55afc6fb6 - status: 204 No Content - code: 204 - duration: 519.906189ms - - 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/images/c993260b-9908-4683-b73c-139d208f851e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 142 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_image", "resource_id": "c993260b-9908-4683-b73c-139d208f851e"}' - headers: - Content-Length: - - "142" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e7ae3c6b-db3b-4053-aaff-37aebf5048bd - status: 404 Not Found - code: 404 - duration: 29.516036ms - - id: 106 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"99004b21-80cd-4ff3-bdfe-7848b9d29942","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ad5881e4-26f4-4e11-9043-c67feddf233e - status: 404 Not Found - code: 404 - duration: 88.524123ms - - id: 107 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - 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: - - "423" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5f8eaa6e-aa78-4f40-9b41-405b300d4cd7 - status: 200 OK - code: 200 - duration: 84.760143ms - - id: 108 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 702 - uncompressed: false - 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: - - "702" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b8e868ae-8aef-4399-914c-f22e07497706 - status: 200 OK - code: 200 - duration: 138.203194ms - - 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/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 - 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:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4b3ee34f-d914-41b6-a476-d003c2871595 - status: 204 No Content - code: 204 - duration: 174.08773ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"1fba214c-c419-4575-95b1-441eb5d5f493","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 73fba049-3d0f-415f-8fa1-d4100fe13a66 - status: 404 Not Found - code: 404 - duration: 91.826479ms - - id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 476 - uncompressed: false - 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: - - "476" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 43007d10-4b29-4d48-92dc-d7bfc26ea8b2 - status: 200 OK - code: 200 - duration: 316.062921ms - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/0af01e12-a33b-4fd9-95e8-fc4ac6225897 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 461 - 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:13.621125Z", "references":[], "status":"available", "tags":[], "class":"sbs", "zone":"fr-par-1"}' - headers: - Content-Length: - - "461" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d95c0122-fbf6-4933-a64f-fc93e45048b7 - status: 200 OK - code: 200 - duration: 309.93922ms - - id: 114 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/0af01e12-a33b-4fd9-95e8-fc4ac6225897 - 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:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2660192a-eb0c-43a8-9ae4-5b3505c3a8b5 - status: 204 No Content - code: 204 - duration: 308.207692ms - - id: 115 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 - 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:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 10db83a4-932a-4ced-bd82-158867dd3e38 - status: 204 No Content - code: 204 - duration: 333.469864ms - - id: 116 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/0af01e12-a33b-4fd9-95e8-fc4ac6225897 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"0af01e12-a33b-4fd9-95e8-fc4ac6225897","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 44bdfd2b-eef1-44f1-86e7-52d2b723ed94 - status: 404 Not Found - code: 404 - duration: 83.20686ms - - id: 117 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"f2d46109-0b16-460b-a7c4-8f14a89f7d10","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a6e06476-3505-45c2-beda-10f14ac234c5 - status: 404 Not Found - code: 404 - duration: 78.043645ms - - id: 118 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9801e908-338b-499b-af2b-95f9fb3c2b69 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 424 - uncompressed: false - 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: - - "424" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 10b86264-0e02-4780-a674-8e9e7d9b9015 - status: 200 OK - code: 200 - duration: 94.250082ms - - id: 119 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1956 - uncompressed: false - 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: - - "1956" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f45eff07-9b9d-4b2c-86ca-8c108ebbd012 - status: 200 OK - code: 200 - duration: 145.16815ms - - id: 120 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9801e908-338b-499b-af2b-95f9fb3c2b69 - 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:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0f8ea085-47a9-4e9a-8fbd-77f8118a16d4 - status: 204 No Content - code: 204 - duration: 153.073003ms - - id: 121 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1910 - uncompressed: false - 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: - - "1910" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1f01b9db-92e8-4740-be5a-7c1b54a86907 - status: 200 OK - code: 200 - duration: 140.683795ms - - id: 122 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9801e908-338b-499b-af2b-95f9fb3c2b69 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"9801e908-338b-499b-af2b-95f9fb3c2b69","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - baceb078-177a-42e8-baef-4d716213fdce - status: 404 Not Found - code: 404 - duration: 76.728015ms - - id: 123 - 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/86756a92-27ed-4ad6-9ff1-38e179ff638e/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/927709ad-ba1d-41f6-82b9-b5a61f9241a2 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 674a9101-43ff-45d6-b787-15e1e206efcf - status: 202 Accepted - code: 202 - duration: 329.790093ms - - id: 124 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1919 - uncompressed: false - 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: - - "1919" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f87e447d-d122-4746-878d-5eac2b49dd53 - status: 200 OK - code: 200 - duration: 160.822405ms - - id: 125 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e - 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": "86756a92-27ed-4ad6-9ff1-38e179ff638e"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7ffbb3d2-7f25-4112-b70f-4f9c49956d30 - status: 404 Not Found - code: 404 - duration: 51.872915ms - - id: 126 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe - 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": "5a6ca56c-04b9-421c-8777-7292ea40cefe"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a51a0bf3-957c-4b96-8e0c-5b74ec8d6a38 - status: 404 Not Found - code: 404 - duration: 28.395862ms - - id: 127 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0923405a-cf87-4856-9942-b23f71dd807c - status: 200 OK - code: 200 - duration: 102.871165ms - - id: 128 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5a6ca56c-04b9-421c-8777-7292ea40cefe - 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:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 414855d6-a339-4c66-8f42-47836b987df2 - status: 204 No Content - code: 204 - duration: 165.273271ms - - id: 129 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c993260b-9908-4683-b73c-139d208f851e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 142 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_image", "resource_id": "c993260b-9908-4683-b73c-139d208f851e"}' - headers: - Content-Length: - - "142" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 21cd7871-0c5f-492a-86cd-3c9669c4cefc - status: 404 Not Found - code: 404 - duration: 30.130456ms - - id: 130 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/99004b21-80cd-4ff3-bdfe-7848b9d29942 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"99004b21-80cd-4ff3-bdfe-7848b9d29942","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a26c87bc-fccb-409b-a1ac-d524941f7469 - status: 404 Not Found - code: 404 - duration: 154.873583ms - - id: 131 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/0af01e12-a33b-4fd9-95e8-fc4ac6225897 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"0af01e12-a33b-4fd9-95e8-fc4ac6225897","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 32355851-e6b8-41b3-8cf5-d6c4149c0a75 - status: 404 Not Found - code: 404 - duration: 154.624747ms - - id: 132 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f2d46109-0b16-460b-a7c4-8f14a89f7d10 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"f2d46109-0b16-460b-a7c4-8f14a89f7d10","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2ce84817-2d64-4f4d-bf18-080c8297926e - status: 404 Not Found - code: 404 - duration: 142.001231ms - - id: 133 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fba214c-c419-4575-95b1-441eb5d5f493 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"1fba214c-c419-4575-95b1-441eb5d5f493","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 67b6a362-79aa-4f2c-91a8-1a3477970d5e - status: 404 Not Found - code: 404 - duration: 138.718362ms - - id: 134 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9801e908-338b-499b-af2b-95f9fb3c2b69 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"9801e908-338b-499b-af2b-95f9fb3c2b69","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - daa307bc-7adf-4d79-ad42-a2d2a030b746 - status: 404 Not Found - code: 404 - duration: 161.518499ms - - id: 135 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86756a92-27ed-4ad6-9ff1-38e179ff638e - 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": "86756a92-27ed-4ad6-9ff1-38e179ff638e"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 046c8e7f-787a-4746-a514-fd697476ac17 - status: 404 Not Found - code: 404 - duration: 46.753301ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d4c3eab9-e63d-4c9d-a328-4694d68c83aa + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 41.55979ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4953bc79-5fd3-4b77-98ce-afc79f453830 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 41.523212ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1c118260-7fb1-48b0-9b64-22e0ea213f60 + status: 200 OK + code: 200 + duration: 40.634144ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 147 + host: api.scaleway.com + body: "{\"name\":\"tf-volume-angry-keldysh\",\"perf_iops\":5000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"from_empty\":{\"size\":21000000000},\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+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 + content_length: 420 + body: "{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.373070Z\", \"updated_at\":\"2025-10-30T15:43:14.373070Z\", \"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: + - "420" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f498bfcc-4dcd-4a96-b6b9-bd9f3738e645 + status: 200 OK + code: 200 + duration: 240.391981ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0eb32b16-1004-46ac-a6d6-e9bb9b28b89d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 421 + body: "{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.373070Z\", \"updated_at\":\"2025-10-30T15:43:14.373070Z\", \"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: + - "421" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b3b71d66-d779-4f7b-8e38-b24aac85f1fc + status: 200 OK + code: 200 + duration: 95.760273ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0eb32b16-1004-46ac-a6d6-e9bb9b28b89d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 421 + body: "{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.373070Z\", \"updated_at\":\"2025-10-30T15:43:14.373070Z\", \"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: + - "421" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7e1a0736-46c2-4544-b6e3-e082ccc1d883 + status: 200 OK + code: 200 + duration: 89.472728ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 150 + host: api.scaleway.com + body: "{\"volume_id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\",\"name\":\"tf-snapshot-recursing-pike\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 462 + body: "{\"id\":\"98b9f584-57eb-4b64-8fa3-24e88785cfec\", \"name\":\"tf-snapshot-recursing-pike\", \"parent_volume\":{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.880634Z\", \"updated_at\":\"2025-10-30T15:43:14.880634Z\", \"references\":[], \"status\":\"creating\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "462" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e007b5c4-3d23-47a0-9fd8-cf94fdf1a1f6 + status: 200 OK + code: 200 + duration: 378.883511ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98b9f584-57eb-4b64-8fa3-24e88785cfec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 462 + body: "{\"id\":\"98b9f584-57eb-4b64-8fa3-24e88785cfec\", \"name\":\"tf-snapshot-recursing-pike\", \"parent_volume\":{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.880634Z\", \"updated_at\":\"2025-10-30T15:43:14.880634Z\", \"references\":[], \"status\":\"creating\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "462" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ee2a1af1-d290-4498-bee6-3fb21d43f80d + status: 200 OK + code: 200 + duration: 336.803325ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 237 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-focused-booth\",\"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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1740 + body: "{\"server\": {\"id\": \"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"name\": \"tf-srv-focused-booth\", \"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-focused-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:0b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:15.062829+00:00\", \"modification_date\": \"2025-10-30T15:43:15.062829+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:15 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 182e755b-12a2-4da6-9989-6614d988b772 + status: 201 Created + code: 201 + duration: 1.458436128s +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1786 + body: "{\"server\": {\"id\": \"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"name\": \"tf-srv-focused-booth\", \"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-focused-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:0b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:15.062829+00:00\", \"modification_date\": \"2025-10-30T15:43:15.062829+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1786" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 569cb801-dec7-4621-ac27-5b7f34ecc853 + status: 200 OK + code: 200 + duration: 167.202238ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1786 + body: "{\"server\": {\"id\": \"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"name\": \"tf-srv-focused-booth\", \"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-focused-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:0b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:15.062829+00:00\", \"modification_date\": \"2025-10-30T15:43:15.062829+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1786" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b6a0002c-9b27-4f2f-8669-7361723665f9 + status: 200 OK + code: 200 + duration: 194.036595ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/359c5e12-df3c-4a2e-b1d2-92bad224feff + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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-30T15:43:15.204285Z\", \"updated_at\":\"2025-10-30T15:43:15.204285Z\", \"references\":[{\"id\":\"54b4e2e1-4615-448e-a9c9-53579af32d5d\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"created_at\":\"2025-10-30T15:43:15.204285Z\", \"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: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4e9eed35-0a19-432f-8593-5660e78733bd + status: 200 OK + code: 200 + duration: 92.329417ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"8bc287b3-ffd7-4094-b54b-fd6a07d39f89\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed/action\", \"href_result\": \"/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"started_at\": \"2025-10-30T15:43:16.610158+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8bc287b3-ffd7-4094-b54b-fd6a07d39f89 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d36fba89-7aca-41bc-b793-f4b7c7b4299d + status: 202 Accepted + code: 202 + duration: 335.596312ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1808 + body: "{\"server\": {\"id\": \"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"name\": \"tf-srv-focused-booth\", \"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-focused-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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:6d:0b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:15.062829+00:00\", \"modification_date\": \"2025-10-30T15:43:16.348838+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: + - "1808" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a11a9823-242e-43e5-a1bf-ac3fbedb7b44 + status: 200 OK + code: 200 + duration: 163.895435ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98b9f584-57eb-4b64-8fa3-24e88785cfec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"id\":\"98b9f584-57eb-4b64-8fa3-24e88785cfec\", \"name\":\"tf-snapshot-recursing-pike\", \"parent_volume\":{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.880634Z\", \"updated_at\":\"2025-10-30T15:43:14.880634Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "463" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f4d2ca81-022b-42d5-8e5a-d3aa3b0da406 + status: 200 OK + code: 200 + duration: 522.912464ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98b9f584-57eb-4b64-8fa3-24e88785cfec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"id\":\"98b9f584-57eb-4b64-8fa3-24e88785cfec\", \"name\":\"tf-snapshot-recursing-pike\", \"parent_volume\":{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.880634Z\", \"updated_at\":\"2025-10-30T15:43:14.880634Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "463" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d68fbb00-7da0-46f4-8bb0-143b981616cf + status: 200 OK + code: 200 + duration: 285.037373ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1942 + body: "{\"server\": {\"id\": \"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"name\": \"tf-srv-focused-booth\", \"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-focused-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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:6d:0b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:15.062829+00:00\", \"modification_date\": \"2025-10-30T15:43:19.214076+00:00\", \"bootscript\": 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\": \"501\", \"node_id\": \"112\"}, \"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: + - "1942" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5d3356e9-9e8e-4a36-909a-5eba4103f452 + status: 200 OK + code: 200 + duration: 132.777393ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1896 + body: "{\"server\": {\"id\": \"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"name\": \"tf-srv-focused-booth\", \"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-focused-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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:6d:0b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:15.062829+00:00\", \"modification_date\": \"2025-10-30T15:43:19.214076+00:00\", \"bootscript\": 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\": \"501\", \"node_id\": \"112\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aacd746e-eae9-4771-b193-8085e9297e7c + status: 200 OK + code: 200 + duration: 117.695521ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/359c5e12-df3c-4a2e-b1d2-92bad224feff + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c776ded6-4038-4b06-9175-1fbe481c396f + status: 404 Not Found + code: 404 + duration: 42.681344ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/359c5e12-df3c-4a2e-b1d2-92bad224feff + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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-30T15:43:15.204285Z\", \"updated_at\":\"2025-10-30T15:43:15.204285Z\", \"references\":[{\"id\":\"54b4e2e1-4615-448e-a9c9-53579af32d5d\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"created_at\":\"2025-10-30T15:43:15.204285Z\", \"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: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 40d2a23c-c0a4-4551-b2d6-ee62d951a35e + status: 200 OK + code: 200 + duration: 96.822757ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 740ab463-0466-4923-a4fb-df008149a2e2 + status: 200 OK + code: 200 + duration: 102.705222ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a003e71c-0fb4-489c-8c74-1ea12bafcb60 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 120.218214ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0eb32b16-1004-46ac-a6d6-e9bb9b28b89d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 421 + body: "{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.373070Z\", \"updated_at\":\"2025-10-30T15:43:14.373070Z\", \"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: + - "421" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d2d47b8f-4459-4038-92a8-ecacc6e06efa + status: 200 OK + code: 200 + duration: 90.165629ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1942 + body: "{\"server\": {\"id\": \"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"name\": \"tf-srv-focused-booth\", \"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-focused-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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:6d:0b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:15.062829+00:00\", \"modification_date\": \"2025-10-30T15:43:19.214076+00:00\", \"bootscript\": 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\": \"501\", \"node_id\": \"112\"}, \"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: + - "1942" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6ae4986e-9bcf-4478-93aa-adfec8c3fffa + status: 200 OK + code: 200 + duration: 144.758358ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98b9f584-57eb-4b64-8fa3-24e88785cfec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"id\":\"98b9f584-57eb-4b64-8fa3-24e88785cfec\", \"name\":\"tf-snapshot-recursing-pike\", \"parent_volume\":{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.880634Z\", \"updated_at\":\"2025-10-30T15:43:14.880634Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "463" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b29bfe57-838b-4c03-8df5-41e35806bdb8 + status: 200 OK + code: 200 + duration: 239.446861ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0eb32b16-1004-46ac-a6d6-e9bb9b28b89d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 421 + body: "{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.373070Z\", \"updated_at\":\"2025-10-30T15:43:14.373070Z\", \"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: + - "421" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b84dfad6-d321-462b-bfbc-0e3a175476b2 + status: 200 OK + code: 200 + duration: 97.088926ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1896 + body: "{\"server\": {\"id\": \"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"name\": \"tf-srv-focused-booth\", \"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-focused-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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:6d:0b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:15.062829+00:00\", \"modification_date\": \"2025-10-30T15:43:19.214076+00:00\", \"bootscript\": 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\": \"501\", \"node_id\": \"112\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9ca854b5-11e8-4ece-95c7-368e2d00ec84 + status: 200 OK + code: 200 + duration: 148.253565ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/359c5e12-df3c-4a2e-b1d2-92bad224feff + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bb0c3b6e-4f5c-493a-9658-a63d50789046 + status: 404 Not Found + code: 404 + duration: 34.078156ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/359c5e12-df3c-4a2e-b1d2-92bad224feff + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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-30T15:43:15.204285Z\", \"updated_at\":\"2025-10-30T15:43:15.204285Z\", \"references\":[{\"id\":\"54b4e2e1-4615-448e-a9c9-53579af32d5d\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"created_at\":\"2025-10-30T15:43:15.204285Z\", \"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: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ac112c7c-ac26-488c-9299-8a57ea1c76d3 + status: 200 OK + code: 200 + duration: 89.13726ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98b9f584-57eb-4b64-8fa3-24e88785cfec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"id\":\"98b9f584-57eb-4b64-8fa3-24e88785cfec\", \"name\":\"tf-snapshot-recursing-pike\", \"parent_volume\":{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.880634Z\", \"updated_at\":\"2025-10-30T15:43:14.880634Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "463" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 82d271e3-03c8-401d-b8ee-ad8066b429fb + status: 200 OK + code: 200 + duration: 248.814755ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 06b2767e-e2ea-40da-961a-c7eaffb15baf + status: 200 OK + code: 200 + duration: 89.838746ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 90789738-2b1c-4d1b-bb8a-c1ede9757de1 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 85.487093ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0eb32b16-1004-46ac-a6d6-e9bb9b28b89d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 421 + body: "{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.373070Z\", \"updated_at\":\"2025-10-30T15:43:14.373070Z\", \"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: + - "421" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cc9ce017-c637-4427-bb9f-ca0d74eb1f66 + status: 200 OK + code: 200 + duration: 85.222927ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1942 + body: "{\"server\": {\"id\": \"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"name\": \"tf-srv-focused-booth\", \"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-focused-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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:6d:0b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:15.062829+00:00\", \"modification_date\": \"2025-10-30T15:43:19.214076+00:00\", \"bootscript\": 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\": \"501\", \"node_id\": \"112\"}, \"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: + - "1942" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b9af0a7b-a21e-40c1-b1d8-8e2d21ee98a5 + status: 200 OK + code: 200 + duration: 157.922914ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/359c5e12-df3c-4a2e-b1d2-92bad224feff + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e81d0acc-e012-4e10-91c3-7cf1620859b4 + status: 404 Not Found + code: 404 + duration: 44.745978ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/359c5e12-df3c-4a2e-b1d2-92bad224feff + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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-30T15:43:15.204285Z\", \"updated_at\":\"2025-10-30T15:43:15.204285Z\", \"references\":[{\"id\":\"54b4e2e1-4615-448e-a9c9-53579af32d5d\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"created_at\":\"2025-10-30T15:43:15.204285Z\", \"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: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 482f76e3-8429-45ce-8914-edb35512d7e2 + status: 200 OK + code: 200 + duration: 95.040184ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98b9f584-57eb-4b64-8fa3-24e88785cfec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"id\":\"98b9f584-57eb-4b64-8fa3-24e88785cfec\", \"name\":\"tf-snapshot-recursing-pike\", \"parent_volume\":{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.880634Z\", \"updated_at\":\"2025-10-30T15:43:14.880634Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "463" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cc1f785c-942a-4526-95ac-c240c59a6fd5 + status: 200 OK + code: 200 + duration: 252.664106ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dca0c68a-99ae-4ed2-962e-35e8b3b4e169 + status: 200 OK + code: 200 + duration: 120.527264ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8d43bf71-d479-441d-a51a-872287fa4018 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 110.518438ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 155 + host: api.scaleway.com + body: "{\"volume_id\":\"359c5e12-df3c-4a2e-b1d2-92bad224feff\",\"name\":\"tf-snapshot-friendly-cartwright\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"id\":\"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"name\":\"tf-snapshot-friendly-cartwright\", \"parent_volume\":{\"id\":\"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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-30T15:43:24.598692Z\", \"updated_at\":\"2025-10-30T15:43:24.598692Z\", \"references\":[], \"status\":\"creating\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5fd10553-63f2-4f44-866c-36f1d7696c77 + status: 200 OK + code: 200 + duration: 462.259802ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/6a295cb0-28f9-463d-ad8d-755f6a7bfabc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 709 + body: "{\"id\":\"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"name\":\"tf-snapshot-friendly-cartwright\", \"parent_volume\":{\"id\":\"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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-30T15:43:24.598692Z\", \"updated_at\":\"2025-10-30T15:43:24.598692Z\", \"references\":[{\"id\":\"d4f65fb7-b978-4fd3-9269-7b3afc14001b\", \"product_resource_type\":\"internal\", \"product_resource_id\":\"00000000-0000-0000-0000-000000000000\", \"created_at\":\"2025-10-30T15:43:24.661150Z\", \"type\":\"unknown_type\", \"status\":\"attached\"}], \"status\":\"creating\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "709" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6be8e50c-483e-4519-b0bf-fbd688f27449 + status: 200 OK + code: 200 + duration: 216.070932ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/6a295cb0-28f9-463d-ad8d-755f6a7bfabc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 479 + body: "{\"id\":\"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"name\":\"tf-snapshot-friendly-cartwright\", \"parent_volume\":{\"id\":\"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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-30T15:43:24.598692Z\", \"updated_at\":\"2025-10-30T15:43:24.598692Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "479" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e428b87e-934a-4c8d-acf0-5a2cae42dceb + status: 200 OK + code: 200 + duration: 223.812528ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/6a295cb0-28f9-463d-ad8d-755f6a7bfabc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 479 + body: "{\"id\":\"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"name\":\"tf-snapshot-friendly-cartwright\", \"parent_volume\":{\"id\":\"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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-30T15:43:24.598692Z\", \"updated_at\":\"2025-10-30T15:43:24.598692Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "479" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4d72f766-2cf8-422e-bb46-a7fb1461b0ca + status: 200 OK + code: 200 + duration: 229.951243ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 239 + host: api.scaleway.com + body: "{\"name\":\"tf-image-pensive-archimedes\",\"root_volume\":\"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\",\"arch\":\"x86_64\",\"extra_volumes\":{\"1\":{\"id\":\"98b9f584-57eb-4b64-8fa3-24e88785cfec\"}},\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"public\":false}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 692 + body: "{\"image\": {\"id\": \"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"name\": \"tf-image-pensive-archimedes\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"98b9f584-57eb-4b64-8fa3-24e88785cfec\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:23.181829+00:00\", \"modification_date\": \"2025-10-30T15:44:23.181829+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "692" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:23 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0136bed7-181e-4718-9378-dcaa9c37c3fe + status: 201 Created + code: 201 + duration: 780.388843ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 692 + body: "{\"image\": {\"id\": \"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"name\": \"tf-image-pensive-archimedes\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"98b9f584-57eb-4b64-8fa3-24e88785cfec\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:23.181829+00:00\", \"modification_date\": \"2025-10-30T15:44:23.181829+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "692" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 00f10b5c-60df-4244-adf0-b91aea0ace73 + status: 200 OK + code: 200 + duration: 119.971484ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 692 + body: "{\"image\": {\"id\": \"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"name\": \"tf-image-pensive-archimedes\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"98b9f584-57eb-4b64-8fa3-24e88785cfec\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:23.181829+00:00\", \"modification_date\": \"2025-10-30T15:44:23.181829+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "692" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bf159007-04a7-43d0-919b-0c303e14532c + status: 200 OK + code: 200 + duration: 116.097948ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0eb32b16-1004-46ac-a6d6-e9bb9b28b89d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 421 + body: "{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.373070Z\", \"updated_at\":\"2025-10-30T15:43:14.373070Z\", \"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: + - "421" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 36ef383e-c4e8-47f9-adfb-40f3140bafde + status: 200 OK + code: 200 + duration: 84.083178ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1896 + body: "{\"server\": {\"id\": \"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"name\": \"tf-srv-focused-booth\", \"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-focused-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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:6d:0b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:15.062829+00:00\", \"modification_date\": \"2025-10-30T15:43:19.214076+00:00\", \"bootscript\": 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\": \"501\", \"node_id\": \"112\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aefebf66-f1d0-4864-a7a9-f743cdbb71d4 + status: 200 OK + code: 200 + duration: 140.481742ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98b9f584-57eb-4b64-8fa3-24e88785cfec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 689 + body: "{\"id\":\"98b9f584-57eb-4b64-8fa3-24e88785cfec\", \"name\":\"tf-snapshot-recursing-pike\", \"parent_volume\":{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.880634Z\", \"updated_at\":\"2025-10-30T15:44:23.496549Z\", \"references\":[{\"id\":\"240984e7-b28a-4882-81db-8297672ad49a\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"created_at\":\"2025-10-30T15:44:23.496549Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "689" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f46777d2-81f2-47ab-b820-7352f069bd67 + status: 200 OK + code: 200 + duration: 214.791764ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/6a295cb0-28f9-463d-ad8d-755f6a7bfabc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"name\":\"tf-snapshot-friendly-cartwright\", \"parent_volume\":{\"id\":\"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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-30T15:43:24.598692Z\", \"updated_at\":\"2025-10-30T15:44:23.217916Z\", \"references\":[{\"id\":\"11e0b5b9-fc45-4fc7-9ca5-eb56be5d9823\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"created_at\":\"2025-10-30T15:44:23.217916Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "705" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b596f527-4a7f-4d2e-8450-fdaa87648943 + status: 200 OK + code: 200 + duration: 383.520357ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 692 + body: "{\"image\": {\"id\": \"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"name\": \"tf-image-pensive-archimedes\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"98b9f584-57eb-4b64-8fa3-24e88785cfec\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:23.181829+00:00\", \"modification_date\": \"2025-10-30T15:44:23.181829+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "692" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ce1f7591-6e9f-4c51-ad9c-65c0c33ef3cc + status: 200 OK + code: 200 + duration: 107.249888ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0eb32b16-1004-46ac-a6d6-e9bb9b28b89d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 421 + body: "{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.373070Z\", \"updated_at\":\"2025-10-30T15:43:14.373070Z\", \"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: + - "421" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8412a4e0-7029-44ff-b087-f28edf1e7e6d + status: 200 OK + code: 200 + duration: 101.10986ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1896 + body: "{\"server\": {\"id\": \"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"name\": \"tf-srv-focused-booth\", \"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-focused-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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:6d:0b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:15.062829+00:00\", \"modification_date\": \"2025-10-30T15:43:19.214076+00:00\", \"bootscript\": 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\": \"501\", \"node_id\": \"112\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 624fab0d-096f-4fb3-b9e9-aca68f613317 + status: 200 OK + code: 200 + duration: 150.199372ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/359c5e12-df3c-4a2e-b1d2-92bad224feff + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4eb6a984-388d-4128-9112-310fbf41da3b + status: 404 Not Found + code: 404 + duration: 23.212766ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/359c5e12-df3c-4a2e-b1d2-92bad224feff + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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-30T15:43:15.204285Z\", \"updated_at\":\"2025-10-30T15:43:15.204285Z\", \"references\":[{\"id\":\"54b4e2e1-4615-448e-a9c9-53579af32d5d\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"created_at\":\"2025-10-30T15:43:15.204285Z\", \"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: + - Thu, 30 Oct 2025 15:44:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d944c4b2-1832-4d4f-999e-3a3d12e3c687 + status: 200 OK + code: 200 + duration: 96.111132ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f0b9332d-fef1-4949-b299-a3b2be14593c + status: 200 OK + code: 200 + duration: 117.460804ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98b9f584-57eb-4b64-8fa3-24e88785cfec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 689 + body: "{\"id\":\"98b9f584-57eb-4b64-8fa3-24e88785cfec\", \"name\":\"tf-snapshot-recursing-pike\", \"parent_volume\":{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.880634Z\", \"updated_at\":\"2025-10-30T15:44:23.496549Z\", \"references\":[{\"id\":\"240984e7-b28a-4882-81db-8297672ad49a\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"created_at\":\"2025-10-30T15:44:23.496549Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "689" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8275fa55-3139-465b-9d0b-67986020091e + status: 200 OK + code: 200 + duration: 286.129744ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:25 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a5c27723-f557-4166-b892-3dd692a7dd2d + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 106.399844ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/6a295cb0-28f9-463d-ad8d-755f6a7bfabc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"name\":\"tf-snapshot-friendly-cartwright\", \"parent_volume\":{\"id\":\"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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-30T15:43:24.598692Z\", \"updated_at\":\"2025-10-30T15:44:23.217916Z\", \"references\":[{\"id\":\"11e0b5b9-fc45-4fc7-9ca5-eb56be5d9823\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"created_at\":\"2025-10-30T15:44:23.217916Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "705" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - db213d7c-5b5c-4dc7-b488-8c496b75cc88 + status: 200 OK + code: 200 + duration: 260.201874ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 692 + body: "{\"image\": {\"id\": \"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"name\": \"tf-image-pensive-archimedes\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"98b9f584-57eb-4b64-8fa3-24e88785cfec\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:23.181829+00:00\", \"modification_date\": \"2025-10-30T15:44:23.181829+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "692" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 83738c75-731e-4165-814d-b2ddf6215f82 + status: 200 OK + code: 200 + duration: 109.412867ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0eb32b16-1004-46ac-a6d6-e9bb9b28b89d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 421 + body: "{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.373070Z\", \"updated_at\":\"2025-10-30T15:43:14.373070Z\", \"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: + - "421" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0fbab12d-1dc7-4984-bd0b-f2a544ff7b84 + status: 200 OK + code: 200 + duration: 81.859197ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1896 + body: "{\"server\": {\"id\": \"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"name\": \"tf-srv-focused-booth\", \"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-focused-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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:6d:0b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:15.062829+00:00\", \"modification_date\": \"2025-10-30T15:43:19.214076+00:00\", \"bootscript\": 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\": \"501\", \"node_id\": \"112\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 54996613-dcf2-493f-b2de-a9005b24a5f2 + status: 200 OK + code: 200 + duration: 159.335421ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/359c5e12-df3c-4a2e-b1d2-92bad224feff + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 673e1254-f0eb-4c68-91e5-e0ed7e541e95 + status: 404 Not Found + code: 404 + duration: 35.67238ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/359c5e12-df3c-4a2e-b1d2-92bad224feff + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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-30T15:43:15.204285Z\", \"updated_at\":\"2025-10-30T15:43:15.204285Z\", \"references\":[{\"id\":\"54b4e2e1-4615-448e-a9c9-53579af32d5d\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"created_at\":\"2025-10-30T15:43:15.204285Z\", \"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: + - Thu, 30 Oct 2025 15:44:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7d4593e0-1c07-4de0-8ea6-2a0797d4cba4 + status: 200 OK + code: 200 + duration: 83.914111ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98b9f584-57eb-4b64-8fa3-24e88785cfec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 689 + body: "{\"id\":\"98b9f584-57eb-4b64-8fa3-24e88785cfec\", \"name\":\"tf-snapshot-recursing-pike\", \"parent_volume\":{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.880634Z\", \"updated_at\":\"2025-10-30T15:44:23.496549Z\", \"references\":[{\"id\":\"240984e7-b28a-4882-81db-8297672ad49a\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"created_at\":\"2025-10-30T15:44:23.496549Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "689" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eec6a2f0-8453-4f2b-b7ed-cff48d60963c + status: 200 OK + code: 200 + duration: 219.656602ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a2450abf-9bff-4586-a33a-e165d2e58620 + status: 200 OK + code: 200 + duration: 92.070793ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:26 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 303f2318-c6b3-42cd-9387-0f7682a79b7f + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 112.898977ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/6a295cb0-28f9-463d-ad8d-755f6a7bfabc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"name\":\"tf-snapshot-friendly-cartwright\", \"parent_volume\":{\"id\":\"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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-30T15:43:24.598692Z\", \"updated_at\":\"2025-10-30T15:44:23.217916Z\", \"references\":[{\"id\":\"11e0b5b9-fc45-4fc7-9ca5-eb56be5d9823\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"created_at\":\"2025-10-30T15:44:23.217916Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "705" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ea115896-cb33-41e4-9cc9-45bfe5d1ab35 + status: 200 OK + code: 200 + duration: 142.883818ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 692 + body: "{\"image\": {\"id\": \"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"name\": \"tf-image-pensive-archimedes\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"98b9f584-57eb-4b64-8fa3-24e88785cfec\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:23.181829+00:00\", \"modification_date\": \"2025-10-30T15:44:23.181829+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "692" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 20b947a5-6cd2-4e26-91d4-69bc1b533877 + status: 200 OK + code: 200 + duration: 122.940335ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 148 + host: api.scaleway.com + body: "{\"name\":\"tf-volume-wizardly-nash\",\"perf_iops\":15000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"from_empty\":{\"size\":22000000000},\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+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 + content_length: 422 + body: "{\"id\":\"179c2f37-746c-4a96-869a-2060f02218bc\", \"name\":\"tf-volume-wizardly-nash\", \"type\":\"sbs_15k\", \"size\":22000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:44:27.315564Z\", \"updated_at\":\"2025-10-30T15:44:27.315564Z\", \"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: + - "422" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2ddc1421-5c9c-46f8-aac9-953eab8d5855 + status: 200 OK + code: 200 + duration: 451.993094ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/179c2f37-746c-4a96-869a-2060f02218bc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + body: "{\"id\":\"179c2f37-746c-4a96-869a-2060f02218bc\", \"name\":\"tf-volume-wizardly-nash\", \"type\":\"sbs_15k\", \"size\":22000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:44:27.315564Z\", \"updated_at\":\"2025-10-30T15:44:27.315564Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2a8e04e0-a162-446e-98c5-0cae48f92dfb + status: 200 OK + code: 200 + duration: 106.569853ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/179c2f37-746c-4a96-869a-2060f02218bc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + body: "{\"id\":\"179c2f37-746c-4a96-869a-2060f02218bc\", \"name\":\"tf-volume-wizardly-nash\", \"type\":\"sbs_15k\", \"size\":22000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:44:27.315564Z\", \"updated_at\":\"2025-10-30T15:44:27.315564Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 287c7625-70a9-4660-a702-8b3a551a7090 + status: 200 OK + code: 200 + duration: 108.294018ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 147 + host: api.scaleway.com + body: "{\"volume_id\":\"179c2f37-746c-4a96-869a-2060f02218bc\",\"name\":\"tf-snapshot-kind-diffie\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 460 + body: "{\"id\":\"8ebc75b7-aeb8-4d02-9915-fcc27568c7a3\", \"name\":\"tf-snapshot-kind-diffie\", \"parent_volume\":{\"id\":\"179c2f37-746c-4a96-869a-2060f02218bc\", \"name\":\"tf-volume-wizardly-nash\", \"type\":\"sbs_15k\", \"status\":\"available\"}, \"size\":22000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:44:28.055516Z\", \"updated_at\":\"2025-10-30T15:44:28.055516Z\", \"references\":[], \"status\":\"creating\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "460" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 45e8dc10-0cdd-42da-9e91-ac97e4753d91 + status: 200 OK + code: 200 + duration: 506.625322ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/8ebc75b7-aeb8-4d02-9915-fcc27568c7a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 460 + body: "{\"id\":\"8ebc75b7-aeb8-4d02-9915-fcc27568c7a3\", \"name\":\"tf-snapshot-kind-diffie\", \"parent_volume\":{\"id\":\"179c2f37-746c-4a96-869a-2060f02218bc\", \"name\":\"tf-volume-wizardly-nash\", \"type\":\"sbs_15k\", \"status\":\"available\"}, \"size\":22000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:44:28.055516Z\", \"updated_at\":\"2025-10-30T15:44:28.055516Z\", \"references\":[], \"status\":\"creating\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "460" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a5cab135-f8bf-41b4-a89b-7725682c465f + status: 200 OK + code: 200 + duration: 206.637559ms +- id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/8ebc75b7-aeb8-4d02-9915-fcc27568c7a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 461 + body: "{\"id\":\"8ebc75b7-aeb8-4d02-9915-fcc27568c7a3\", \"name\":\"tf-snapshot-kind-diffie\", \"parent_volume\":{\"id\":\"179c2f37-746c-4a96-869a-2060f02218bc\", \"name\":\"tf-volume-wizardly-nash\", \"type\":\"sbs_15k\", \"status\":\"available\"}, \"size\":22000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:44:28.055516Z\", \"updated_at\":\"2025-10-30T15:44:28.055516Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "461" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4ea80928-48a5-40ad-99f1-e6422f2561b9 + status: 200 OK + code: 200 + duration: 248.597578ms +- id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/8ebc75b7-aeb8-4d02-9915-fcc27568c7a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 461 + body: "{\"id\":\"8ebc75b7-aeb8-4d02-9915-fcc27568c7a3\", \"name\":\"tf-snapshot-kind-diffie\", \"parent_volume\":{\"id\":\"179c2f37-746c-4a96-869a-2060f02218bc\", \"name\":\"tf-volume-wizardly-nash\", \"type\":\"sbs_15k\", \"status\":\"available\"}, \"size\":22000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:44:28.055516Z\", \"updated_at\":\"2025-10-30T15:44:28.055516Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "461" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3f9c16a7-6787-42aa-acf5-8b61899ad554 + status: 200 OK + code: 200 + duration: 220.740038ms +- id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 692 + body: "{\"image\": {\"id\": \"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"name\": \"tf-image-pensive-archimedes\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"98b9f584-57eb-4b64-8fa3-24e88785cfec\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:23.181829+00:00\", \"modification_date\": \"2025-10-30T15:44:23.181829+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "692" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9b47ad43-d392-475b-9058-4105500dcca5 + status: 200 OK + code: 200 + duration: 142.258856ms +- id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 692 + body: "{\"image\": {\"id\": \"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"name\": \"tf-image-pensive-archimedes\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"98b9f584-57eb-4b64-8fa3-24e88785cfec\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:23.181829+00:00\", \"modification_date\": \"2025-10-30T15:44:23.181829+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "692" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a2230bbd-daa6-4800-bfd3-fa55fb49583f + status: 200 OK + code: 200 + duration: 116.745454ms +- id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 132 + host: api.scaleway.com + body: "{\"name\":\"tf-image-pensive-archimedes\",\"arch\":\"x86_64\",\"extra_volumes\":{\"1\":{\"id\":\"8ebc75b7-aeb8-4d02-9915-fcc27568c7a3\"}},\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 692 + body: "{\"image\": {\"id\": \"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"name\": \"tf-image-pensive-archimedes\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"8ebc75b7-aeb8-4d02-9915-fcc27568c7a3\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:23.181829+00:00\", \"modification_date\": \"2025-10-30T15:44:23.181829+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "692" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7737bb0c-209f-4055-91d4-e6a62d4a8e03 + status: 200 OK + code: 200 + duration: 536.404734ms +- id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 692 + body: "{\"image\": {\"id\": \"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"name\": \"tf-image-pensive-archimedes\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"8ebc75b7-aeb8-4d02-9915-fcc27568c7a3\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:23.181829+00:00\", \"modification_date\": \"2025-10-30T15:44:23.181829+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "692" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c4b1566f-2534-4bf0-accf-5bbe5fb78688 + status: 200 OK + code: 200 + duration: 103.706093ms +- id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 692 + body: "{\"image\": {\"id\": \"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"name\": \"tf-image-pensive-archimedes\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"8ebc75b7-aeb8-4d02-9915-fcc27568c7a3\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:23.181829+00:00\", \"modification_date\": \"2025-10-30T15:44:23.181829+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "692" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0d03ace5-686a-4477-a65f-bb7b07cb2d6c + status: 200 OK + code: 200 + duration: 104.378053ms +- id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0eb32b16-1004-46ac-a6d6-e9bb9b28b89d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 421 + body: "{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.373070Z\", \"updated_at\":\"2025-10-30T15:43:14.373070Z\", \"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: + - "421" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cfcf4b4f-8a1e-4f60-be2b-435158e4fdf8 + status: 200 OK + code: 200 + duration: 97.859714ms +- id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/179c2f37-746c-4a96-869a-2060f02218bc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + body: "{\"id\":\"179c2f37-746c-4a96-869a-2060f02218bc\", \"name\":\"tf-volume-wizardly-nash\", \"type\":\"sbs_15k\", \"size\":22000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:44:27.315564Z\", \"updated_at\":\"2025-10-30T15:44:27.315564Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 400bca1d-ef11-4de2-b8ca-a68fddac270c + status: 200 OK + code: 200 + duration: 77.586723ms +- id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1942 + body: "{\"server\": {\"id\": \"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"name\": \"tf-srv-focused-booth\", \"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-focused-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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:6d:0b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:15.062829+00:00\", \"modification_date\": \"2025-10-30T15:43:19.214076+00:00\", \"bootscript\": 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\": \"501\", \"node_id\": \"112\"}, \"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: + - "1942" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 912fd24b-64f9-4a8c-add9-e912abd24d7b + status: 200 OK + code: 200 + duration: 149.384955ms +- id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98b9f584-57eb-4b64-8fa3-24e88785cfec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"id\":\"98b9f584-57eb-4b64-8fa3-24e88785cfec\", \"name\":\"tf-snapshot-recursing-pike\", \"parent_volume\":{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.880634Z\", \"updated_at\":\"2025-10-30T15:44:34.881306Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "463" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3339aa0a-9ab2-44e6-9674-020ede1034b8 + status: 200 OK + code: 200 + duration: 251.665133ms +- id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/8ebc75b7-aeb8-4d02-9915-fcc27568c7a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 687 + body: "{\"id\":\"8ebc75b7-aeb8-4d02-9915-fcc27568c7a3\", \"name\":\"tf-snapshot-kind-diffie\", \"parent_volume\":{\"id\":\"179c2f37-746c-4a96-869a-2060f02218bc\", \"name\":\"tf-volume-wizardly-nash\", \"type\":\"sbs_15k\", \"status\":\"available\"}, \"size\":22000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:44:28.055516Z\", \"updated_at\":\"2025-10-30T15:44:34.451935Z\", \"references\":[{\"id\":\"c650cb09-acb1-4b40-b795-08b882bd958e\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"created_at\":\"2025-10-30T15:44:34.451935Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "687" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - efa2c13f-0d1c-4e84-84d1-6d0c6ffca5f7 + status: 200 OK + code: 200 + duration: 416.451183ms +- id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/6a295cb0-28f9-463d-ad8d-755f6a7bfabc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"name\":\"tf-snapshot-friendly-cartwright\", \"parent_volume\":{\"id\":\"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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-30T15:43:24.598692Z\", \"updated_at\":\"2025-10-30T15:44:23.217916Z\", \"references\":[{\"id\":\"11e0b5b9-fc45-4fc7-9ca5-eb56be5d9823\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"created_at\":\"2025-10-30T15:44:23.217916Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "705" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 85727300-13ec-4426-9a81-06327114e568 + status: 200 OK + code: 200 + duration: 412.057009ms +- id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 692 + body: "{\"image\": {\"id\": \"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"name\": \"tf-image-pensive-archimedes\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"8ebc75b7-aeb8-4d02-9915-fcc27568c7a3\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:23.181829+00:00\", \"modification_date\": \"2025-10-30T15:44:23.181829+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "692" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 156288c0-72a8-4d68-b052-6b2fcdb7d1f0 + status: 200 OK + code: 200 + duration: 117.785767ms +- id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/179c2f37-746c-4a96-869a-2060f02218bc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + body: "{\"id\":\"179c2f37-746c-4a96-869a-2060f02218bc\", \"name\":\"tf-volume-wizardly-nash\", \"type\":\"sbs_15k\", \"size\":22000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:44:27.315564Z\", \"updated_at\":\"2025-10-30T15:44:27.315564Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3e0c0ae8-d3ef-4ee6-b524-0425050f20ac + status: 200 OK + code: 200 + duration: 81.043036ms +- id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0eb32b16-1004-46ac-a6d6-e9bb9b28b89d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 421 + body: "{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.373070Z\", \"updated_at\":\"2025-10-30T15:43:14.373070Z\", \"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: + - "421" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7f7437b4-9af0-4915-9ab1-b8cbf1ef62b5 + status: 200 OK + code: 200 + duration: 89.575935ms +- id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1942 + body: "{\"server\": {\"id\": \"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"name\": \"tf-srv-focused-booth\", \"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-focused-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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:6d:0b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:15.062829+00:00\", \"modification_date\": \"2025-10-30T15:43:19.214076+00:00\", \"bootscript\": 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\": \"501\", \"node_id\": \"112\"}, \"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: + - "1942" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d3a3cd2e-4880-4511-bd8b-b2e5d6ede272 + status: 200 OK + code: 200 + duration: 138.813905ms +- id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/359c5e12-df3c-4a2e-b1d2-92bad224feff + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - da04cb08-6dee-44d2-a42b-5fe34146952c + status: 404 Not Found + code: 404 + duration: 24.431924ms +- id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/359c5e12-df3c-4a2e-b1d2-92bad224feff + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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-30T15:43:15.204285Z\", \"updated_at\":\"2025-10-30T15:43:15.204285Z\", \"references\":[{\"id\":\"54b4e2e1-4615-448e-a9c9-53579af32d5d\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"created_at\":\"2025-10-30T15:43:15.204285Z\", \"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: + - Thu, 30 Oct 2025 15:44:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9a8b2686-4e52-4651-b96c-019d2933fd72 + status: 200 OK + code: 200 + duration: 103.792976ms +- id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98b9f584-57eb-4b64-8fa3-24e88785cfec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"id\":\"98b9f584-57eb-4b64-8fa3-24e88785cfec\", \"name\":\"tf-snapshot-recursing-pike\", \"parent_volume\":{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.880634Z\", \"updated_at\":\"2025-10-30T15:44:34.881306Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "463" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 99563ff2-a09a-478b-bc90-8f2efd471cf8 + status: 200 OK + code: 200 + duration: 252.730573ms +- id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/8ebc75b7-aeb8-4d02-9915-fcc27568c7a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 687 + body: "{\"id\":\"8ebc75b7-aeb8-4d02-9915-fcc27568c7a3\", \"name\":\"tf-snapshot-kind-diffie\", \"parent_volume\":{\"id\":\"179c2f37-746c-4a96-869a-2060f02218bc\", \"name\":\"tf-volume-wizardly-nash\", \"type\":\"sbs_15k\", \"status\":\"available\"}, \"size\":22000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:44:28.055516Z\", \"updated_at\":\"2025-10-30T15:44:34.451935Z\", \"references\":[{\"id\":\"c650cb09-acb1-4b40-b795-08b882bd958e\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"created_at\":\"2025-10-30T15:44:34.451935Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "687" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - df141c4f-2142-4274-b973-2f98e492e6a5 + status: 200 OK + code: 200 + duration: 276.480819ms +- id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 748699f7-aa15-478a-81ab-cf264879b0b7 + status: 200 OK + code: 200 + duration: 97.042963ms +- id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:37 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 43c16ffd-1e14-472a-8f79-e5d0c7e13954 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 103.515124ms +- id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/6a295cb0-28f9-463d-ad8d-755f6a7bfabc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"name\":\"tf-snapshot-friendly-cartwright\", \"parent_volume\":{\"id\":\"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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-30T15:43:24.598692Z\", \"updated_at\":\"2025-10-30T15:44:23.217916Z\", \"references\":[{\"id\":\"11e0b5b9-fc45-4fc7-9ca5-eb56be5d9823\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"created_at\":\"2025-10-30T15:44:23.217916Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "705" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ccb1ffe3-f0d7-45ae-b888-c46cb0cbd281 + status: 200 OK + code: 200 + duration: 146.808082ms +- id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 692 + body: "{\"image\": {\"id\": \"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"name\": \"tf-image-pensive-archimedes\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"8ebc75b7-aeb8-4d02-9915-fcc27568c7a3\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:23.181829+00:00\", \"modification_date\": \"2025-10-30T15:44:23.181829+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "692" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 488faee8-734a-41dd-a3a9-2187c55af39a + status: 200 OK + code: 200 + duration: 113.247732ms +- id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 692 + body: "{\"image\": {\"id\": \"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"name\": \"tf-image-pensive-archimedes\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {\"1\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"8ebc75b7-aeb8-4d02-9915-fcc27568c7a3\", \"size\": 0, \"name\": \"\"}}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:23.181829+00:00\", \"modification_date\": \"2025-10-30T15:44:23.181829+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "692" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b847cf67-cc21-4487-ac37-c3c69a14b521 + status: 200 OK + code: 200 + duration: 129.788503ms +- id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98b9f584-57eb-4b64-8fa3-24e88785cfec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"id\":\"98b9f584-57eb-4b64-8fa3-24e88785cfec\", \"name\":\"tf-snapshot-recursing-pike\", \"parent_volume\":{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"status\":\"available\"}, \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.880634Z\", \"updated_at\":\"2025-10-30T15:44:34.881306Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "463" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e57db36d-6854-4506-aed8-9ee8142c9fad + status: 200 OK + code: 200 + duration: 158.470361ms +- id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98b9f584-57eb-4b64-8fa3-24e88785cfec + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2fc77563-d842-4507-9b49-8480a43622ed + status: 204 No Content + code: 204 + duration: 218.925755ms +- id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98b9f584-57eb-4b64-8fa3-24e88785cfec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 129 + body: "{\"message\":\"resource is not found\",\"resource\":\"snapshot\",\"resource_id\":\"98b9f584-57eb-4b64-8fa3-24e88785cfec\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "129" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 79701b0e-028e-4f82-80dc-0de26d439aab + status: 404 Not Found + code: 404 + duration: 97.167286ms +- id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0eb32b16-1004-46ac-a6d6-e9bb9b28b89d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 421 + body: "{\"id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\", \"name\":\"tf-volume-angry-keldysh\", \"type\":\"sbs_5k\", \"size\":21000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:14.373070Z\", \"updated_at\":\"2025-10-30T15:43:14.373070Z\", \"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: + - "421" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cbc75fc5-69bc-45ad-8cf6-165406b05e88 + status: 200 OK + code: 200 + duration: 105.008586ms +- id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 33ea1f23-8d32-439f-be0d-e4f56bcb6532 + status: 204 No Content + code: 204 + duration: 510.614804ms +- id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 142 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_image\", \"resource_id\": \"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\"}" + headers: + Content-Length: + - "142" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0177fb60-ffda-444c-9aef-c533714701e3 + status: 404 Not Found + code: 404 + duration: 26.084675ms +- id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0eb32b16-1004-46ac-a6d6-e9bb9b28b89d + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 55e24c98-8946-4e5b-ab0d-5f38a775709e + status: 204 No Content + code: 204 + duration: 160.101301ms +- id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0eb32b16-1004-46ac-a6d6-e9bb9b28b89d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4d3a84b3-4b68-41b4-983a-626f6f110edb + status: 404 Not Found + code: 404 + duration: 77.768373ms +- id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/8ebc75b7-aeb8-4d02-9915-fcc27568c7a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 461 + body: "{\"id\":\"8ebc75b7-aeb8-4d02-9915-fcc27568c7a3\", \"name\":\"tf-snapshot-kind-diffie\", \"parent_volume\":{\"id\":\"179c2f37-746c-4a96-869a-2060f02218bc\", \"name\":\"tf-volume-wizardly-nash\", \"type\":\"sbs_15k\", \"status\":\"available\"}, \"size\":22000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:44:28.055516Z\", \"updated_at\":\"2025-10-30T15:44:38.412060Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "461" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - da70a261-2086-4998-8163-20a016886239 + status: 200 OK + code: 200 + duration: 165.519576ms +- id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/6a295cb0-28f9-463d-ad8d-755f6a7bfabc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"name\":\"tf-snapshot-friendly-cartwright\", \"parent_volume\":{\"id\":\"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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-30T15:43:24.598692Z\", \"updated_at\":\"2025-10-30T15:44:23.217916Z\", \"references\":[{\"id\":\"11e0b5b9-fc45-4fc7-9ca5-eb56be5d9823\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\", \"created_at\":\"2025-10-30T15:44:23.217916Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "705" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b2177a22-8309-4ccb-bfe2-627e33ccb57e + status: 200 OK + code: 200 + duration: 176.058355ms +- id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/8ebc75b7-aeb8-4d02-9915-fcc27568c7a3 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 39bd5df1-5b25-4da9-87ea-12d58db8d1a0 + status: 204 No Content + code: 204 + duration: 227.199857ms +- id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/8ebc75b7-aeb8-4d02-9915-fcc27568c7a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 129 + body: "{\"message\":\"resource is not found\",\"resource\":\"snapshot\",\"resource_id\":\"8ebc75b7-aeb8-4d02-9915-fcc27568c7a3\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "129" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ba837620-c6f5-49f8-a094-803323d33451 + status: 404 Not Found + code: 404 + duration: 89.307371ms +- id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/179c2f37-746c-4a96-869a-2060f02218bc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + body: "{\"id\":\"179c2f37-746c-4a96-869a-2060f02218bc\", \"name\":\"tf-volume-wizardly-nash\", \"type\":\"sbs_15k\", \"size\":22000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:44:27.315564Z\", \"updated_at\":\"2025-10-30T15:44:27.315564Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0e87658b-eed3-4f40-b237-402ef47a7501 + status: 200 OK + code: 200 + duration: 108.191047ms +- id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/179c2f37-746c-4a96-869a-2060f02218bc + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 13c8fbf6-3807-424d-b487-63b4d6181de9 + status: 204 No Content + code: 204 + duration: 159.884344ms +- id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/179c2f37-746c-4a96-869a-2060f02218bc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"179c2f37-746c-4a96-869a-2060f02218bc\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8b102075-2bd6-4823-8e86-8bfe677c2222 + status: 404 Not Found + code: 404 + duration: 95.647946ms +- id: 115 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/6a295cb0-28f9-463d-ad8d-755f6a7bfabc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 479 + body: "{\"id\":\"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\", \"name\":\"tf-snapshot-friendly-cartwright\", \"parent_volume\":{\"id\":\"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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-30T15:43:24.598692Z\", \"updated_at\":\"2025-10-30T15:44:38.485117Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "479" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 490cec5f-5074-4afc-95fc-112e2f935c2c + status: 200 OK + code: 200 + duration: 197.102717ms +- id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/6a295cb0-28f9-463d-ad8d-755f6a7bfabc + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5fff336a-6600-4b5f-9707-07b9b75ad2bb + status: 204 No Content + code: 204 + duration: 302.637452ms +- id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/6a295cb0-28f9-463d-ad8d-755f6a7bfabc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 129 + body: "{\"message\":\"resource is not found\",\"resource\":\"snapshot\",\"resource_id\":\"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "129" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 32704247-76f8-48b4-bcf0-ec890d5e8b61 + status: 404 Not Found + code: 404 + duration: 97.150375ms +- id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1942 + body: "{\"server\": {\"id\": \"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"name\": \"tf-srv-focused-booth\", \"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-focused-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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:6d:0b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:15.062829+00:00\", \"modification_date\": \"2025-10-30T15:43:19.214076+00:00\", \"bootscript\": 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\": \"501\", \"node_id\": \"112\"}, \"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: + - "1942" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a273df97-af6b-4e3f-b18f-c905670e8d7e + status: 200 OK + code: 200 + duration: 159.424222ms +- id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1942 + body: "{\"server\": {\"id\": \"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"name\": \"tf-srv-focused-booth\", \"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-focused-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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:6d:0b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:15.062829+00:00\", \"modification_date\": \"2025-10-30T15:43:19.214076+00:00\", \"bootscript\": 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\": \"501\", \"node_id\": \"112\"}, \"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: + - "1942" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8415b520-d5fd-45d9-9586-a779b1ebe216 + status: 200 OK + code: 200 + duration: 134.939278ms +- id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"5023b8ec-ece4-4349-82a2-b400733bc555\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed/action\", \"href_result\": \"/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"started_at\": \"2025-10-30T15:44:45.007154+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:45 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5023b8ec-ece4-4349-82a2-b400733bc555 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bc869c56-efe5-4f84-82c2-6f5528d2188f + status: 202 Accepted + code: 202 + duration: 491.81438ms +- id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1905 + body: "{\"server\": {\"id\": \"d19a2983-0b6a-4964-963b-ef01e32d29ed\", \"name\": \"tf-srv-focused-booth\", \"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-focused-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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:6d:0b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:15.062829+00:00\", \"modification_date\": \"2025-10-30T15:44:44.577519+00:00\", \"bootscript\": 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\": \"501\", \"node_id\": \"112\"}, \"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: + - "1905" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e5a7f7e3-000d-4484-a85a-420a75343524 + status: 200 OK + code: 200 + duration: 152.207323ms +- id: 122 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"d19a2983-0b6a-4964-963b-ef01e32d29ed\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6d7b6369-690b-41cf-8571-04e19d1830d2 + status: 404 Not Found + code: 404 + duration: 43.987442ms +- id: 123 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/359c5e12-df3c-4a2e-b1d2-92bad224feff + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"359c5e12-df3c-4a2e-b1d2-92bad224feff\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a6824678-b1d8-4bab-b535-5247b5fc2759 + status: 404 Not Found + code: 404 + duration: 38.799428ms +- id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/359c5e12-df3c-4a2e-b1d2-92bad224feff + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"359c5e12-df3c-4a2e-b1d2-92bad224feff\", \"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-30T15:43:15.204285Z\", \"updated_at\":\"2025-10-30T15:44:46.723293Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:44:46.723293Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a1b2a4b7-2e60-4f68-b7f0-bc9364b4ffb4 + status: 200 OK + code: 200 + duration: 88.626596ms +- id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/359c5e12-df3c-4a2e-b1d2-92bad224feff + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d003780f-5e24-49b2-a0d2-8a523332e53f + status: 204 No Content + code: 204 + duration: 176.197259ms +- id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 142 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_image\", \"resource_id\": \"0eb3f83b-2a1a-4500-a1ee-c84eb3135b6a\"}" + headers: + Content-Length: + - "142" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b64feaef-9100-4389-96ab-b61d23cc02a6 + status: 404 Not Found + code: 404 + duration: 32.033495ms +- id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/98b9f584-57eb-4b64-8fa3-24e88785cfec + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 129 + body: "{\"message\":\"resource is not found\",\"resource\":\"snapshot\",\"resource_id\":\"98b9f584-57eb-4b64-8fa3-24e88785cfec\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "129" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c24ba386-95e4-4be9-a5ad-ee37d296ca58 + status: 404 Not Found + code: 404 + duration: 147.325206ms +- id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/8ebc75b7-aeb8-4d02-9915-fcc27568c7a3 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 129 + body: "{\"message\":\"resource is not found\",\"resource\":\"snapshot\",\"resource_id\":\"8ebc75b7-aeb8-4d02-9915-fcc27568c7a3\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "129" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cf53e9b2-cecf-441a-8268-30d7566c9deb + status: 404 Not Found + code: 404 + duration: 131.521978ms +- id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/6a295cb0-28f9-463d-ad8d-755f6a7bfabc + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 129 + body: "{\"message\":\"resource is not found\",\"resource\":\"snapshot\",\"resource_id\":\"6a295cb0-28f9-463d-ad8d-755f6a7bfabc\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "129" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c9704291-d54d-44ed-9375-7d1b4a3d1146 + status: 404 Not Found + code: 404 + duration: 140.661173ms +- id: 130 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0eb32b16-1004-46ac-a6d6-e9bb9b28b89d + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"0eb32b16-1004-46ac-a6d6-e9bb9b28b89d\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 31b7de48-9ebe-4848-a93c-5767ef94680a + status: 404 Not Found + code: 404 + duration: 143.619253ms +- id: 131 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/179c2f37-746c-4a96-869a-2060f02218bc + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"179c2f37-746c-4a96-869a-2060f02218bc\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 666fc777-9df5-4246-8574-f16b194caf37 + status: 404 Not Found + code: 404 + duration: 156.963758ms +- id: 132 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d19a2983-0b6a-4964-963b-ef01e32d29ed + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"d19a2983-0b6a-4964-963b-ef01e32d29ed\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e692b1f0-ff7f-4dc4-a37b-836e2364b6fd + status: 404 Not Found + code: 404 + duration: 59.415045ms diff --git a/internal/services/instance/testdata/image-server.cassette.yaml b/internal/services/instance/testdata/image-server.cassette.yaml index a2f3ca0f0..459f56fd4 100644 --- a/internal/services/instance/testdata/image-server.cassette.yaml +++ b/internal/services/instance/testdata/image-server.cassette.yaml @@ -1,3087 +1,2430 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:14 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fbf17f62-cac1-4ed2-a8be-4e9c1632093f - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 42.923601ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:14 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c80c5c28-fe0b-47e4-b0b7-2c08d674df4e - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 53.726702ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5b328cd3-c0e7-4d99-92a9-0d7d57deb42f - status: 200 OK - code: 200 - duration: 42.316356ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 236 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1788 - uncompressed: false - 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: - - "1788" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:15 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fb1b9433-2e60-4b11-8e62-57f1ab3a8029 - status: 201 Created - code: 201 - duration: 979.999151ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1742 - uncompressed: false - 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: - - "1742" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 35d84da4-38b4-402d-9a3f-e0035a7f49d1 - status: 200 OK - code: 200 - duration: 173.314115ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1742 - uncompressed: false - 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: - - "1742" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e4ae7f65-7178-4c6a-bab6-6e4a8c5aac51 - status: 200 OK - code: 200 - duration: 138.915825ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 020bf9b0-2405-4e47-b7e8-fb70d1f37c71 - status: 200 OK - code: 200 - duration: 90.204872ms - - id: 7 - 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/f517bd4c-90eb-4ac1-9928-58a3e1b485ba/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:16 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/34155613-d203-4cf6-998f-f1d88705c570 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dcf2f70c-d3ea-4374-819b-242c78c4f71d - status: 202 Accepted - code: 202 - duration: 220.655868ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1867 - uncompressed: false - 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: - - "1867" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b01d5e80-c405-4784-acd8-2003bc128ef1 - status: 200 OK - code: 200 - duration: 1.472533262s - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1898 - uncompressed: false - 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: - - "1898" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3a4a9c1f-2218-4de3-a2d7-502323047d02 - status: 200 OK - code: 200 - duration: 165.911406ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1944 - uncompressed: false - 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: - - "1944" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2a47ef9e-cb4e-4b10-acdd-33690863c0b6 - status: 200 OK - code: 200 - duration: 174.749011ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f - 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": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4b4666ea-6460-40ca-a816-fdc1ca975dc2 - status: 404 Not Found - code: 404 - duration: 26.122456ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 595e3d70-66ca-416b-887b-9bb343ee3d84 - status: 200 OK - code: 200 - duration: 86.95679ms - - 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/f517bd4c-90eb-4ac1-9928-58a3e1b485ba/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:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6fc078ef-c383-4384-9130-857cc4a1c258 - status: 200 OK - code: 200 - duration: 117.949634ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba/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:54:23 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7bb514b1-5daa-4fc9-a710-265a941e13dd - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 99.306203ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 150 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - 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: - - "473" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9f4b29db-421f-45ed-8dfa-8f4d4b8dcb35 - status: 200 OK - code: 200 - duration: 372.559818ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 704 - uncompressed: false - 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: - - "704" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 82dd6a66-09a0-4891-9ef3-05f19cf94f44 - status: 200 OK - code: 200 - duration: 177.227287ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 474 - uncompressed: false - 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: - - "474" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3fdf78b7-5c49-49a2-bf16-a5080beaef59 - status: 200 OK - code: 200 - duration: 234.395512ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 474 - uncompressed: false - 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: - - "474" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e842e2a8-a9c8-4a47-a257-f39b71aabc56 - status: 200 OK - code: 200 - duration: 226.24496ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 190 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 596 - uncompressed: false - 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: - - "596" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cba5d7c7-8c20-4339-b1f4-f458932ba364 - status: 201 Created - code: 201 - duration: 635.148785ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 596 - uncompressed: false - 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: - - "596" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b00d17f7-79c2-4e16-8032-cd9030aefa40 - status: 200 OK - code: 200 - duration: 94.409006ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 596 - uncompressed: false - 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: - - "596" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 68563dd0-07f7-4060-9341-43ddc894c780 - status: 200 OK - code: 200 - duration: 99.473376ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1898 - uncompressed: false - 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: - - "1898" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e6059096-10b2-43df-b40c-d71165cefda9 - status: 200 OK - code: 200 - duration: 147.241593ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 700 - uncompressed: false - 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: - - "700" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 51c3902a-af91-4da6-afa4-25e300ba39a8 - status: 200 OK - code: 200 - duration: 261.484149ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 596 - uncompressed: false - 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: - - "596" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6e983afe-c2f3-42ac-abb6-f13115ca90b9 - status: 200 OK - code: 200 - duration: 99.389369ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1898 - uncompressed: false - 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: - - "1898" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cff7ea1b-cd54-4131-a1cb-62d92f997021 - status: 200 OK - code: 200 - duration: 135.797332ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f - 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": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ced790c0-cce9-4d96-937e-583918464b3c - status: 404 Not Found - code: 404 - duration: 33.17624ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9460dad0-d399-467e-b66f-8c80a5b6c021 - status: 200 OK - code: 200 - duration: 79.759071ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba/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:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ce09e26d-0e32-4303-948f-cbf49b9616db - status: 200 OK - code: 200 - duration: 87.008617ms - - 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/f517bd4c-90eb-4ac1-9928-58a3e1b485ba/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:55:08 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f4c0de29-f788-4bc6-b805-f2a2bfb6160d - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 104.851034ms - - 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/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 700 - uncompressed: false - 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: - - "700" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b9bef1ee-5899-4996-b2bb-b30c1e18a818 - status: 200 OK - code: 200 - duration: 223.379152ms - - 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/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 596 - uncompressed: false - 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: - - "596" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fc494b28-66e4-4528-b933-54bbfc8b46a6 - status: 200 OK - code: 200 - duration: 105.638656ms - - 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/f517bd4c-90eb-4ac1-9928-58a3e1b485ba - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1898 - uncompressed: false - 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: - - "1898" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8fff8dfb-a0fc-41fa-95c5-66736911108d - status: 200 OK - code: 200 - duration: 134.468739ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f - 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": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9ab8f06f-bc06-4060-8e5e-0a5daa0aa770 - status: 404 Not Found - code: 404 - duration: 25.320249ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 82ae5e98-990b-48b4-b838-b8082d4711d6 - status: 200 OK - code: 200 - duration: 80.347511ms - - 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/f517bd4c-90eb-4ac1-9928-58a3e1b485ba/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:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d00a2f4f-0d5c-4c91-8520-e7fd29850efd - status: 200 OK - code: 200 - duration: 97.724556ms - - 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/f517bd4c-90eb-4ac1-9928-58a3e1b485ba/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:55:09 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 98b36b92-e8f4-428f-a8d0-995fe495abae - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 93.240621ms - - 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/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 700 - uncompressed: false - 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: - - "700" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cdd582c2-8091-419c-9333-48e0d5d6672c - status: 200 OK - code: 200 - duration: 233.828123ms - - 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/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 596 - uncompressed: false - 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: - - "596" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ed2f0e3e-d77d-4295-9d5c-3a3b2b2d0f9b - status: 200 OK - code: 200 - duration: 103.033524ms - - 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/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 596 - uncompressed: false - 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: - - "596" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7395919a-3ef4-4347-9afd-d27c281a9b3a - status: 200 OK - code: 200 - duration: 111.272982ms - - 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/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 596 - uncompressed: false - 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: - - "596" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 81bdcbdd-f288-4f04-a79c-a5dae146bef9 - status: 200 OK - code: 200 - duration: 134.93979ms - - id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 55 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/e518c7b6-3b24-4733-92eb-06fc4f0128ed - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 578 - uncompressed: false - 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: - - "578" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 70702deb-25c2-4aad-9c3b-ad553711a1e3 - status: 200 OK - code: 200 - duration: 128.240261ms - - 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/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 578 - uncompressed: false - 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: - - "578" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0ecc3e94-2c87-494e-a584-535331664b49 - status: 200 OK - code: 200 - duration: 97.396053ms - - 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/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 578 - uncompressed: false - 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: - - "578" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e5bcd86f-666d-4ae5-922f-74eedd6bbc1b - status: 200 OK - code: 200 - duration: 101.353664ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1898 - uncompressed: false - 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: - - "1898" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 60822072-0429-4871-945a-715401aa90df - status: 200 OK - code: 200 - duration: 139.586289ms - - id: 45 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 700 - uncompressed: false - 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: - - "700" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 72b57199-0dcd-4466-9ad4-2aa6323fb76b - status: 200 OK - code: 200 - duration: 160.183947ms - - 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/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 578 - uncompressed: false - 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: - - "578" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7d0373a5-8b5e-4f38-a1b8-75eea9720402 - status: 200 OK - code: 200 - duration: 98.472405ms - - 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/f517bd4c-90eb-4ac1-9928-58a3e1b485ba - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1944 - uncompressed: false - 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: - - "1944" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f2880fd0-5e49-486c-b9f0-99d444972875 - status: 200 OK - code: 200 - duration: 118.749765ms - - 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/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f - 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": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 933240ee-eaa1-48e4-89cf-2c424645650f - status: 404 Not Found - code: 404 - duration: 40.148569ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fd7f9d0c-e680-4734-b15c-14074f19183c - status: 200 OK - code: 200 - duration: 84.777406ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba/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:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1950f54e-1cb6-4136-ba4d-e1d0889c13fa - status: 200 OK - code: 200 - duration: 106.729387ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba/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:55:11 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 70a7eef5-4d8d-45f6-b5b4-9de108d01f12 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 87.540131ms - - id: 52 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 700 - uncompressed: false - 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: - - "700" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6dba6c60-f266-4910-91c0-ee7d8a462433 - status: 200 OK - code: 200 - duration: 145.033125ms - - 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/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 578 - uncompressed: false - 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: - - "578" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1b6790a9-6f2a-4ec5-869e-7a8f9e2981af - status: 200 OK - code: 200 - duration: 116.23422ms - - 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/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 578 - uncompressed: false - 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: - - "578" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2b5838b6-9b13-4236-beee-34d415309bd0 - status: 200 OK - code: 200 - duration: 106.911056ms - - 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/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed - 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:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 62483bdc-94a9-4579-937a-db7b63ac1d7d - status: 204 No Content - code: 204 - duration: 444.756656ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 142 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_image", "resource_id": "e518c7b6-3b24-4733-92eb-06fc4f0128ed"}' - headers: - Content-Length: - - "142" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 970c4c00-fee2-4d70-b5a0-dc23b9424c62 - status: 404 Not Found - code: 404 - duration: 24.857193ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 700 - uncompressed: false - 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: - - "700" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cd2c5c56-4a81-466a-846f-fb059e19efd0 - status: 200 OK - code: 200 - duration: 232.130199ms - - id: 58 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 474 - uncompressed: false - 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: - - "474" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - be2663cd-1bc2-4985-a84d-16fe5a68fce4 - status: 200 OK - code: 200 - duration: 258.221484ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 - 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:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a06fa33d-aef0-41a1-9bd8-3f5d8ed9ad18 - status: 204 No Content - code: 204 - duration: 347.672793ms - - id: 60 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"c57f9cd4-d633-4a32-a268-82b4c2214fe6","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1665d789-745a-45a6-a9a5-c044ea4ad4a4 - status: 404 Not Found - code: 404 - duration: 75.687759ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1898 - uncompressed: false - 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: - - "1898" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 117da4c3-c3b9-4a91-8087-64b3dface26c - status: 200 OK - code: 200 - duration: 162.456159ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1944 - uncompressed: false - 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: - - "1944" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1dfbfbd3-f4d0-4813-8ce0-265748f11bc9 - status: 200 OK - code: 200 - duration: 160.334683ms - - id: 63 - 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/f517bd4c-90eb-4ac1-9928-58a3e1b485ba/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0710f44b-582b-4ed1-846b-e5e3a546adcc - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 512eaad9-009a-45e3-b3d1-9063e0a8dde3 - status: 202 Accepted - code: 202 - duration: 275.339216ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1861 - uncompressed: false - 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: - - "1861" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0c35d71d-2ac0-4108-97f1-7c8e796beddb - status: 200 OK - code: 200 - duration: 154.875044ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1907 - uncompressed: false - 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: - - "1907" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5ae652e1-f865-4d6d-9125-6d801b86f665 - status: 200 OK - code: 200 - duration: 153.518779ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1861 - uncompressed: false - 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: - - "1861" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 468825e0-2e7f-49b1-a617-8298a309f251 - status: 200 OK - code: 200 - duration: 141.792362ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f517bd4c-90eb-4ac1-9928-58a3e1b485ba - 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": "f517bd4c-90eb-4ac1-9928-58a3e1b485ba"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 855282e7-4c1e-4159-a855-f94928aebce4 - status: 404 Not Found - code: 404 - duration: 42.971841ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f - 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": "a7cec1a2-f9f2-4078-a7be-3c1014d0b60f"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bb48c607-dc23-4f70-b5fd-edb28ada34cc - status: 404 Not Found - code: 404 - duration: 26.445716ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0148bcce-1b1f-4fca-8fe1-9f194ddb9d88 - status: 200 OK - code: 200 - duration: 78.773473ms - - id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7cec1a2-f9f2-4078-a7be-3c1014d0b60f - 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:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e33193e2-3707-4f08-9b6b-73983d9195b5 - status: 204 No Content - code: 204 - duration: 162.28705ms - - 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/images/e518c7b6-3b24-4733-92eb-06fc4f0128ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 142 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_image", "resource_id": "e518c7b6-3b24-4733-92eb-06fc4f0128ed"}' - headers: - Content-Length: - - "142" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d21a7c82-f665-4d7a-b742-ee852b1afcc1 - status: 404 Not Found - code: 404 - duration: 29.194516ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c57f9cd4-d633-4a32-a268-82b4c2214fe6 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"c57f9cd4-d633-4a32-a268-82b4c2214fe6","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ace3ccc3-deb7-48b2-96d2-47de4174249f - status: 404 Not Found - code: 404 - duration: 168.526348ms - - 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/f517bd4c-90eb-4ac1-9928-58a3e1b485ba - 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": "f517bd4c-90eb-4ac1-9928-58a3e1b485ba"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0cdb26d1-d5e2-487d-8f32-6b31d8ccaa55 - status: 404 Not Found - code: 404 - duration: 55.62285ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 21419988-f819-4e82-ab29-fc22605e1283 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 44.955519ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ca767410-22d7-4a68-a9bd-7e1f4cd64068 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 45.076767ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e63f55b7-844a-411e-be91-cd3aa89283fb + status: 200 OK + code: 200 + duration: 47.766212ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 238 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-suspicious-neumann\",\"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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1746 + body: "{\"server\": {\"id\": \"e98be434-089a-4144-92e8-9282af3a2b0d\", \"name\": \"tf-srv-suspicious-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-suspicious-neumann\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0cef08a8-7058-491a-beab-712d21efd401\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ff\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:06.540875+00:00\", \"modification_date\": \"2025-10-30T15:43:06.540875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:07 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fbe647dc-6af9-4005-801b-c0b004ca69f3 + status: 201 Created + code: 201 + duration: 1.472065561s +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1792 + body: "{\"server\": {\"id\": \"e98be434-089a-4144-92e8-9282af3a2b0d\", \"name\": \"tf-srv-suspicious-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-suspicious-neumann\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0cef08a8-7058-491a-beab-712d21efd401\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ff\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:06.540875+00:00\", \"modification_date\": \"2025-10-30T15:43:06.540875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 352de765-1a10-4458-9a1c-67619b073493 + status: 200 OK + code: 200 + duration: 163.966345ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1746 + body: "{\"server\": {\"id\": \"e98be434-089a-4144-92e8-9282af3a2b0d\", \"name\": \"tf-srv-suspicious-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-suspicious-neumann\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0cef08a8-7058-491a-beab-712d21efd401\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ff\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:06.540875+00:00\", \"modification_date\": \"2025-10-30T15:43:06.540875+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ac58efc6-2a17-491e-9384-45a9280c8b12 + status: 200 OK + code: 200 + duration: 146.907535ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0cef08a8-7058-491a-beab-712d21efd401 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"0cef08a8-7058-491a-beab-712d21efd401\", \"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-30T15:43:06.680056Z\", \"updated_at\":\"2025-10-30T15:43:06.680056Z\", \"references\":[{\"id\":\"e595e106-ddf3-4ffc-b410-1162a5aba24c\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"e98be434-089a-4144-92e8-9282af3a2b0d\", \"created_at\":\"2025-10-30T15:43:06.680056Z\", \"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: + - Thu, 30 Oct 2025 15:43:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 237fce01-e77e-414e-a121-c480685deb0e + status: 200 OK + code: 200 + duration: 89.210595ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"e2abf85b-ac20-41bc-9619-0ca9686a78b2\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/e98be434-089a-4144-92e8-9282af3a2b0d/action\", \"href_result\": \"/servers/e98be434-089a-4144-92e8-9282af3a2b0d\", \"started_at\": \"2025-10-30T15:43:07.996444+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:08 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e2abf85b-ac20-41bc-9619-0ca9686a78b2 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d24d168d-6d00-48ef-a074-6d6ff384a6e7 + status: 202 Accepted + code: 202 + duration: 247.250824ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1768 + body: "{\"server\": {\"id\": \"e98be434-089a-4144-92e8-9282af3a2b0d\", \"name\": \"tf-srv-suspicious-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-suspicious-neumann\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0cef08a8-7058-491a-beab-712d21efd401\", \"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:6c:ff\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:06.540875+00:00\", \"modification_date\": \"2025-10-30T15:43:07.809073+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 197878ad-bd8d-4407-bcb0-c0453faafc5b + status: 200 OK + code: 200 + duration: 178.08484ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1902 + body: "{\"server\": {\"id\": \"e98be434-089a-4144-92e8-9282af3a2b0d\", \"name\": \"tf-srv-suspicious-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-suspicious-neumann\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0cef08a8-7058-491a-beab-712d21efd401\", \"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:6c:ff\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:06.540875+00:00\", \"modification_date\": \"2025-10-30T15:43:10.881713+00:00\", \"bootscript\": 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\": \"602\", \"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: + - "1902" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 054ef41e-9e0a-4511-99b7-4e66611f2ce8 + status: 200 OK + code: 200 + duration: 156.800735ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1948 + body: "{\"server\": {\"id\": \"e98be434-089a-4144-92e8-9282af3a2b0d\", \"name\": \"tf-srv-suspicious-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-suspicious-neumann\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0cef08a8-7058-491a-beab-712d21efd401\", \"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:6c:ff\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:06.540875+00:00\", \"modification_date\": \"2025-10-30T15:43:10.881713+00:00\", \"bootscript\": 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\": \"602\", \"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: + - "1948" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 38106861-ec2d-40f9-9c45-901a95c52933 + status: 200 OK + code: 200 + duration: 133.116237ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0cef08a8-7058-491a-beab-712d21efd401 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"0cef08a8-7058-491a-beab-712d21efd401\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - be82d1b6-3849-4a9f-a783-c6ba5728d736 + status: 404 Not Found + code: 404 + duration: 37.003192ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0cef08a8-7058-491a-beab-712d21efd401 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"0cef08a8-7058-491a-beab-712d21efd401\", \"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-30T15:43:06.680056Z\", \"updated_at\":\"2025-10-30T15:43:06.680056Z\", \"references\":[{\"id\":\"e595e106-ddf3-4ffc-b410-1162a5aba24c\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"e98be434-089a-4144-92e8-9282af3a2b0d\", \"created_at\":\"2025-10-30T15:43:06.680056Z\", \"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: + - Thu, 30 Oct 2025 15:43:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 963a24a3-180d-4fab-ae3f-2756f1daacf0 + status: 200 OK + code: 200 + duration: 94.430077ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2a5466d2-7ec0-4ee5-b678-8c98ff2647f4 + status: 200 OK + code: 200 + duration: 107.694008ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:13 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ff3734d0-8352-4082-9b64-1d092e5306bd + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 87.939842ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 148 + host: api.scaleway.com + body: "{\"volume_id\":\"0cef08a8-7058-491a-beab-712d21efd401\",\"name\":\"tf-snapshot-sad-einstein\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 471 + body: "{\"id\":\"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"name\":\"tf-snapshot-sad-einstein\", \"parent_volume\":{\"id\":\"0cef08a8-7058-491a-beab-712d21efd401\", \"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-30T15:43:14.009453Z\", \"updated_at\":\"2025-10-30T15:43:14.009453Z\", \"references\":[], \"status\":\"creating\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "471" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 86fa63aa-835f-44eb-860f-e6506dda35fd + status: 200 OK + code: 200 + duration: 370.638564ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4b8c14d-1c20-4073-86c2-77c7d1319a9f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 702 + body: "{\"id\":\"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"name\":\"tf-snapshot-sad-einstein\", \"parent_volume\":{\"id\":\"0cef08a8-7058-491a-beab-712d21efd401\", \"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-30T15:43:14.009453Z\", \"updated_at\":\"2025-10-30T15:43:14.009453Z\", \"references\":[{\"id\":\"cea7e556-98c2-41bf-b83a-a06c33f9a1dd\", \"product_resource_type\":\"internal\", \"product_resource_id\":\"00000000-0000-0000-0000-000000000000\", \"created_at\":\"2025-10-30T15:43:14.066286Z\", \"type\":\"unknown_type\", \"status\":\"attached\"}], \"status\":\"creating\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "702" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b5bf2029-e55c-45a6-9549-4c9fb24e05fc + status: 200 OK + code: 200 + duration: 231.141438ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4b8c14d-1c20-4073-86c2-77c7d1319a9f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 472 + body: "{\"id\":\"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"name\":\"tf-snapshot-sad-einstein\", \"parent_volume\":{\"id\":\"0cef08a8-7058-491a-beab-712d21efd401\", \"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-30T15:43:14.009453Z\", \"updated_at\":\"2025-10-30T15:43:14.009453Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "472" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 744fb78e-3599-4dd8-aaff-ce72586a4305 + status: 200 OK + code: 200 + duration: 292.966254ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4b8c14d-1c20-4073-86c2-77c7d1319a9f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 472 + body: "{\"id\":\"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"name\":\"tf-snapshot-sad-einstein\", \"parent_volume\":{\"id\":\"0cef08a8-7058-491a-beab-712d21efd401\", \"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-30T15:43:14.009453Z\", \"updated_at\":\"2025-10-30T15:43:14.009453Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "472" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 44748b83-1f44-486a-8323-4d5da6ca3fb9 + status: 200 OK + code: 200 + duration: 227.588655ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 198 + host: api.scaleway.com + body: "{\"name\":\"tf-image-festive-chebyshev\",\"root_volume\":\"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\",\"arch\":\"x86_64\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[\"test_remove_tags\"],\"public\":false}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 604 + body: "{\"image\": {\"id\": \"32b0b4aa-82a3-4f92-93ee-890452583fab\", \"name\": \"tf-image-festive-chebyshev\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:34.063919+00:00\", \"modification_date\": \"2025-10-30T15:44:34.063919+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [\"test_remove_tags\"], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "604" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:34 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/32b0b4aa-82a3-4f92-93ee-890452583fab + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6ad14af8-a063-4812-95cf-d661894028d2 + status: 201 Created + code: 201 + duration: 528.34365ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/32b0b4aa-82a3-4f92-93ee-890452583fab + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 604 + body: "{\"image\": {\"id\": \"32b0b4aa-82a3-4f92-93ee-890452583fab\", \"name\": \"tf-image-festive-chebyshev\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:34.063919+00:00\", \"modification_date\": \"2025-10-30T15:44:34.063919+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [\"test_remove_tags\"], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "604" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f2507e68-e7fb-4711-a5bd-e20f6f41ff37 + status: 200 OK + code: 200 + duration: 111.517577ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/32b0b4aa-82a3-4f92-93ee-890452583fab + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 604 + body: "{\"image\": {\"id\": \"32b0b4aa-82a3-4f92-93ee-890452583fab\", \"name\": \"tf-image-festive-chebyshev\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:34.063919+00:00\", \"modification_date\": \"2025-10-30T15:44:34.063919+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [\"test_remove_tags\"], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "604" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f64a7a32-cecb-4f9b-931e-055e52e085ce + status: 200 OK + code: 200 + duration: 109.031402ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1948 + body: "{\"server\": {\"id\": \"e98be434-089a-4144-92e8-9282af3a2b0d\", \"name\": \"tf-srv-suspicious-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-suspicious-neumann\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0cef08a8-7058-491a-beab-712d21efd401\", \"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:6c:ff\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:06.540875+00:00\", \"modification_date\": \"2025-10-30T15:43:10.881713+00:00\", \"bootscript\": 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\": \"602\", \"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: + - "1948" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 997aad27-2817-48a9-98ca-90734ab3820f + status: 200 OK + code: 200 + duration: 135.698751ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4b8c14d-1c20-4073-86c2-77c7d1319a9f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 698 + body: "{\"id\":\"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"name\":\"tf-snapshot-sad-einstein\", \"parent_volume\":{\"id\":\"0cef08a8-7058-491a-beab-712d21efd401\", \"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-30T15:43:14.009453Z\", \"updated_at\":\"2025-10-30T15:44:34.103206Z\", \"references\":[{\"id\":\"f9d6c0c0-9730-43c6-862f-cf7234821dab\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"32b0b4aa-82a3-4f92-93ee-890452583fab\", \"created_at\":\"2025-10-30T15:44:34.103206Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "698" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 867ecafc-0538-4bf4-97d1-cd167e86b1f8 + status: 200 OK + code: 200 + duration: 221.217934ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/32b0b4aa-82a3-4f92-93ee-890452583fab + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 604 + body: "{\"image\": {\"id\": \"32b0b4aa-82a3-4f92-93ee-890452583fab\", \"name\": \"tf-image-festive-chebyshev\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:34.063919+00:00\", \"modification_date\": \"2025-10-30T15:44:34.063919+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [\"test_remove_tags\"], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "604" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e07d81e6-1d89-444c-beec-25a932bc696c + status: 200 OK + code: 200 + duration: 97.398489ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1948 + body: "{\"server\": {\"id\": \"e98be434-089a-4144-92e8-9282af3a2b0d\", \"name\": \"tf-srv-suspicious-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-suspicious-neumann\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0cef08a8-7058-491a-beab-712d21efd401\", \"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:6c:ff\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:06.540875+00:00\", \"modification_date\": \"2025-10-30T15:43:10.881713+00:00\", \"bootscript\": 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\": \"602\", \"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: + - "1948" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b6e91a18-7166-47ca-a03f-9e7ca04d780b + status: 200 OK + code: 200 + duration: 130.321432ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0cef08a8-7058-491a-beab-712d21efd401 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"0cef08a8-7058-491a-beab-712d21efd401\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 440d2d81-70ad-44fd-9574-85d22cc23af3 + status: 404 Not Found + code: 404 + duration: 34.275632ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0cef08a8-7058-491a-beab-712d21efd401 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"0cef08a8-7058-491a-beab-712d21efd401\", \"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-30T15:43:06.680056Z\", \"updated_at\":\"2025-10-30T15:43:06.680056Z\", \"references\":[{\"id\":\"e595e106-ddf3-4ffc-b410-1162a5aba24c\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"e98be434-089a-4144-92e8-9282af3a2b0d\", \"created_at\":\"2025-10-30T15:43:06.680056Z\", \"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: + - Thu, 30 Oct 2025 15:44:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c555658d-f06d-4a91-af4e-7255f262ce18 + status: 200 OK + code: 200 + duration: 93.280133ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d601301d-9a8a-4c01-a207-d7be2c0e854f + status: 200 OK + code: 200 + duration: 110.872066ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:35 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6c1baf84-72d1-4cc6-8464-92da65340d59 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 112.088328ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4b8c14d-1c20-4073-86c2-77c7d1319a9f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 698 + body: "{\"id\":\"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"name\":\"tf-snapshot-sad-einstein\", \"parent_volume\":{\"id\":\"0cef08a8-7058-491a-beab-712d21efd401\", \"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-30T15:43:14.009453Z\", \"updated_at\":\"2025-10-30T15:44:34.103206Z\", \"references\":[{\"id\":\"f9d6c0c0-9730-43c6-862f-cf7234821dab\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"32b0b4aa-82a3-4f92-93ee-890452583fab\", \"created_at\":\"2025-10-30T15:44:34.103206Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "698" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 170fe962-a338-489f-b821-26894f6b3797 + status: 200 OK + code: 200 + duration: 456.069015ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/32b0b4aa-82a3-4f92-93ee-890452583fab + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 604 + body: "{\"image\": {\"id\": \"32b0b4aa-82a3-4f92-93ee-890452583fab\", \"name\": \"tf-image-festive-chebyshev\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:34.063919+00:00\", \"modification_date\": \"2025-10-30T15:44:34.063919+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [\"test_remove_tags\"], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "604" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3499595b-686b-46c6-a507-021df8946e35 + status: 200 OK + code: 200 + duration: 116.477922ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1948 + body: "{\"server\": {\"id\": \"e98be434-089a-4144-92e8-9282af3a2b0d\", \"name\": \"tf-srv-suspicious-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-suspicious-neumann\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0cef08a8-7058-491a-beab-712d21efd401\", \"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:6c:ff\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:06.540875+00:00\", \"modification_date\": \"2025-10-30T15:43:10.881713+00:00\", \"bootscript\": 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\": \"602\", \"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: + - "1948" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 84073e1d-59e7-448d-93cb-f817d1b2b2de + status: 200 OK + code: 200 + duration: 162.641978ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0cef08a8-7058-491a-beab-712d21efd401 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"0cef08a8-7058-491a-beab-712d21efd401\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8f4d3be4-11de-43dd-859e-61c35c19eac4 + status: 404 Not Found + code: 404 + duration: 31.442326ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0cef08a8-7058-491a-beab-712d21efd401 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"0cef08a8-7058-491a-beab-712d21efd401\", \"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-30T15:43:06.680056Z\", \"updated_at\":\"2025-10-30T15:43:06.680056Z\", \"references\":[{\"id\":\"e595e106-ddf3-4ffc-b410-1162a5aba24c\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"e98be434-089a-4144-92e8-9282af3a2b0d\", \"created_at\":\"2025-10-30T15:43:06.680056Z\", \"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: + - Thu, 30 Oct 2025 15:44:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 739476ec-052d-4a0a-9424-5f181fc5acee + status: 200 OK + code: 200 + duration: 95.488508ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 12a32b85-7e19-4a0d-9429-58c01c011c03 + status: 200 OK + code: 200 + duration: 108.121075ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:37 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dc163e08-66fb-4a75-bbe0-fadd36a13482 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 95.762961ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4b8c14d-1c20-4073-86c2-77c7d1319a9f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 698 + body: "{\"id\":\"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"name\":\"tf-snapshot-sad-einstein\", \"parent_volume\":{\"id\":\"0cef08a8-7058-491a-beab-712d21efd401\", \"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-30T15:43:14.009453Z\", \"updated_at\":\"2025-10-30T15:44:34.103206Z\", \"references\":[{\"id\":\"f9d6c0c0-9730-43c6-862f-cf7234821dab\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"32b0b4aa-82a3-4f92-93ee-890452583fab\", \"created_at\":\"2025-10-30T15:44:34.103206Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "698" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - db069de5-3763-4635-916f-f7308203fad7 + status: 200 OK + code: 200 + duration: 222.108236ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/32b0b4aa-82a3-4f92-93ee-890452583fab + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 604 + body: "{\"image\": {\"id\": \"32b0b4aa-82a3-4f92-93ee-890452583fab\", \"name\": \"tf-image-festive-chebyshev\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:34.063919+00:00\", \"modification_date\": \"2025-10-30T15:44:34.063919+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [\"test_remove_tags\"], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "604" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d0115ea3-16cf-464f-a0e4-7953db3872a8 + status: 200 OK + code: 200 + duration: 110.481533ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/32b0b4aa-82a3-4f92-93ee-890452583fab + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 604 + body: "{\"image\": {\"id\": \"32b0b4aa-82a3-4f92-93ee-890452583fab\", \"name\": \"tf-image-festive-chebyshev\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:34.063919+00:00\", \"modification_date\": \"2025-10-30T15:44:34.063919+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [\"test_remove_tags\"], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "604" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 752c4ef4-cd25-4788-8eb8-31414208768c + status: 200 OK + code: 200 + duration: 105.95979ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/32b0b4aa-82a3-4f92-93ee-890452583fab + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 604 + body: "{\"image\": {\"id\": \"32b0b4aa-82a3-4f92-93ee-890452583fab\", \"name\": \"tf-image-festive-chebyshev\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:34.063919+00:00\", \"modification_date\": \"2025-10-30T15:44:34.063919+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [\"test_remove_tags\"], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "604" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ba088448-d80f-4bf6-a3ee-62b55e1aea9d + status: 200 OK + code: 200 + duration: 178.143898ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 63 + host: api.scaleway.com + body: "{\"name\":\"tf-image-festive-chebyshev\",\"arch\":\"x86_64\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/32b0b4aa-82a3-4f92-93ee-890452583fab + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 586 + body: "{\"image\": {\"id\": \"32b0b4aa-82a3-4f92-93ee-890452583fab\", \"name\": \"tf-image-festive-chebyshev\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:34.063919+00:00\", \"modification_date\": \"2025-10-30T15:44:37.843172+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "586" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ca5eff13-6512-4597-a87b-f4e1060c7246 + status: 200 OK + code: 200 + duration: 128.69904ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/32b0b4aa-82a3-4f92-93ee-890452583fab + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 586 + body: "{\"image\": {\"id\": \"32b0b4aa-82a3-4f92-93ee-890452583fab\", \"name\": \"tf-image-festive-chebyshev\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:34.063919+00:00\", \"modification_date\": \"2025-10-30T15:44:37.843172+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "586" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a089254c-5edb-4413-a154-decb6dcb4814 + status: 200 OK + code: 200 + duration: 110.551084ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/32b0b4aa-82a3-4f92-93ee-890452583fab + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 586 + body: "{\"image\": {\"id\": \"32b0b4aa-82a3-4f92-93ee-890452583fab\", \"name\": \"tf-image-festive-chebyshev\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:34.063919+00:00\", \"modification_date\": \"2025-10-30T15:44:37.843172+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "586" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9e5ae8a2-e5cd-444f-a967-73f6adce2d3a + status: 200 OK + code: 200 + duration: 118.750687ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1948 + body: "{\"server\": {\"id\": \"e98be434-089a-4144-92e8-9282af3a2b0d\", \"name\": \"tf-srv-suspicious-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-suspicious-neumann\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0cef08a8-7058-491a-beab-712d21efd401\", \"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:6c:ff\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:06.540875+00:00\", \"modification_date\": \"2025-10-30T15:43:10.881713+00:00\", \"bootscript\": 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\": \"602\", \"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: + - "1948" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a761bb53-9e64-43f5-8274-2c7d9a657eeb + status: 200 OK + code: 200 + duration: 154.550297ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4b8c14d-1c20-4073-86c2-77c7d1319a9f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 698 + body: "{\"id\":\"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"name\":\"tf-snapshot-sad-einstein\", \"parent_volume\":{\"id\":\"0cef08a8-7058-491a-beab-712d21efd401\", \"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-30T15:43:14.009453Z\", \"updated_at\":\"2025-10-30T15:44:34.103206Z\", \"references\":[{\"id\":\"f9d6c0c0-9730-43c6-862f-cf7234821dab\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"32b0b4aa-82a3-4f92-93ee-890452583fab\", \"created_at\":\"2025-10-30T15:44:34.103206Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "698" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6eace16a-31de-40ee-82e7-009bd600f1d6 + status: 200 OK + code: 200 + duration: 199.719815ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/32b0b4aa-82a3-4f92-93ee-890452583fab + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 586 + body: "{\"image\": {\"id\": \"32b0b4aa-82a3-4f92-93ee-890452583fab\", \"name\": \"tf-image-festive-chebyshev\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:34.063919+00:00\", \"modification_date\": \"2025-10-30T15:44:37.843172+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "586" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6b7724e6-3c92-4a2e-95eb-74b5b61d53a8 + status: 200 OK + code: 200 + duration: 103.922308ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1948 + body: "{\"server\": {\"id\": \"e98be434-089a-4144-92e8-9282af3a2b0d\", \"name\": \"tf-srv-suspicious-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-suspicious-neumann\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0cef08a8-7058-491a-beab-712d21efd401\", \"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:6c:ff\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:06.540875+00:00\", \"modification_date\": \"2025-10-30T15:43:10.881713+00:00\", \"bootscript\": 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\": \"602\", \"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: + - "1948" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 26222675-1e6e-4304-b6ef-4b3a8f7b230b + status: 200 OK + code: 200 + duration: 146.798244ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0cef08a8-7058-491a-beab-712d21efd401 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"0cef08a8-7058-491a-beab-712d21efd401\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e9ebd7fb-e98c-4b74-94c5-2309739c9f44 + status: 404 Not Found + code: 404 + duration: 26.031214ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0cef08a8-7058-491a-beab-712d21efd401 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"0cef08a8-7058-491a-beab-712d21efd401\", \"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-30T15:43:06.680056Z\", \"updated_at\":\"2025-10-30T15:43:06.680056Z\", \"references\":[{\"id\":\"e595e106-ddf3-4ffc-b410-1162a5aba24c\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"e98be434-089a-4144-92e8-9282af3a2b0d\", \"created_at\":\"2025-10-30T15:43:06.680056Z\", \"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: + - Thu, 30 Oct 2025 15:44:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3efbde43-8fa2-4e6b-8004-1e7d43ddbb5a + status: 200 OK + code: 200 + duration: 85.070794ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f588f2d6-9ed3-4461-87f9-fdd35f8dc736 + status: 200 OK + code: 200 + duration: 102.172888ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:39 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a87adc68-5e31-453c-9c10-b3b6e9eb1c9f + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 87.322107ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4b8c14d-1c20-4073-86c2-77c7d1319a9f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 698 + body: "{\"id\":\"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"name\":\"tf-snapshot-sad-einstein\", \"parent_volume\":{\"id\":\"0cef08a8-7058-491a-beab-712d21efd401\", \"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-30T15:43:14.009453Z\", \"updated_at\":\"2025-10-30T15:44:34.103206Z\", \"references\":[{\"id\":\"f9d6c0c0-9730-43c6-862f-cf7234821dab\", \"product_resource_type\":\"instance_image\", \"product_resource_id\":\"32b0b4aa-82a3-4f92-93ee-890452583fab\", \"created_at\":\"2025-10-30T15:44:34.103206Z\", \"type\":\"link\", \"status\":\"attached\"}], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "698" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2cecbb75-5ccc-41fd-84f4-17097a6eec7e + status: 200 OK + code: 200 + duration: 176.080659ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/32b0b4aa-82a3-4f92-93ee-890452583fab + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 586 + body: "{\"image\": {\"id\": \"32b0b4aa-82a3-4f92-93ee-890452583fab\", \"name\": \"tf-image-festive-chebyshev\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:34.063919+00:00\", \"modification_date\": \"2025-10-30T15:44:37.843172+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "586" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9cc1d3dc-e653-4d3a-919b-23969bcb9450 + status: 200 OK + code: 200 + duration: 108.503804ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/32b0b4aa-82a3-4f92-93ee-890452583fab + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 586 + body: "{\"image\": {\"id\": \"32b0b4aa-82a3-4f92-93ee-890452583fab\", \"name\": \"tf-image-festive-chebyshev\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": false, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-30T15:44:34.063919+00:00\", \"modification_date\": \"2025-10-30T15:44:37.843172+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "586" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8d289d6a-0e4b-4fb0-9612-d6d66d67c2c0 + status: 200 OK + code: 200 + duration: 104.241247ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/32b0b4aa-82a3-4f92-93ee-890452583fab + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8678c7ad-dc08-40e2-9af1-09f50114eb9c + status: 204 No Content + code: 204 + duration: 429.763769ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/32b0b4aa-82a3-4f92-93ee-890452583fab + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 142 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_image\", \"resource_id\": \"32b0b4aa-82a3-4f92-93ee-890452583fab\"}" + headers: + Content-Length: + - "142" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5c822446-c5e4-4687-a8ca-33d9786b4301 + status: 404 Not Found + code: 404 + duration: 35.443953ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4b8c14d-1c20-4073-86c2-77c7d1319a9f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 469 + body: "{\"id\":\"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"name\":\"tf-snapshot-sad-einstein\", \"parent_volume\":{\"id\":\"0cef08a8-7058-491a-beab-712d21efd401\", \"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-30T15:43:14.009453Z\", \"updated_at\":\"2025-10-30T15:44:34.103206Z\", \"references\":[], \"status\":\"in_use\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "469" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2ffdbd90-d3f4-44f9-acdb-7d22e239612e + status: 200 OK + code: 200 + duration: 164.708364ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4b8c14d-1c20-4073-86c2-77c7d1319a9f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 472 + body: "{\"id\":\"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\", \"name\":\"tf-snapshot-sad-einstein\", \"parent_volume\":{\"id\":\"0cef08a8-7058-491a-beab-712d21efd401\", \"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-30T15:43:14.009453Z\", \"updated_at\":\"2025-10-30T15:44:40.408496Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "472" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a9c4dcb3-51e5-4033-b89a-07c4469a88ae + status: 200 OK + code: 200 + duration: 253.648067ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4b8c14d-1c20-4073-86c2-77c7d1319a9f + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 06f0df63-98c9-4180-b193-8b365f22cc79 + status: 204 No Content + code: 204 + duration: 350.018119ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4b8c14d-1c20-4073-86c2-77c7d1319a9f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 129 + body: "{\"message\":\"resource is not found\",\"resource\":\"snapshot\",\"resource_id\":\"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "129" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 797320d4-b290-4029-a778-3140738902ca + status: 404 Not Found + code: 404 + duration: 84.614879ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1902 + body: "{\"server\": {\"id\": \"e98be434-089a-4144-92e8-9282af3a2b0d\", \"name\": \"tf-srv-suspicious-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-suspicious-neumann\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0cef08a8-7058-491a-beab-712d21efd401\", \"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:6c:ff\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:06.540875+00:00\", \"modification_date\": \"2025-10-30T15:43:10.881713+00:00\", \"bootscript\": 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\": \"602\", \"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: + - "1902" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 94e7118a-b397-43ea-aaf4-9e1fc7572019 + status: 200 OK + code: 200 + duration: 142.82383ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1948 + body: "{\"server\": {\"id\": \"e98be434-089a-4144-92e8-9282af3a2b0d\", \"name\": \"tf-srv-suspicious-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-suspicious-neumann\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0cef08a8-7058-491a-beab-712d21efd401\", \"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:6c:ff\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:06.540875+00:00\", \"modification_date\": \"2025-10-30T15:43:10.881713+00:00\", \"bootscript\": 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\": \"602\", \"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: + - "1948" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0b4831fc-5213-4b06-8473-90515d5284d5 + status: 200 OK + code: 200 + duration: 144.427138ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"e2c4f34a-8466-4a3e-a684-63d42618a7fe\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/e98be434-089a-4144-92e8-9282af3a2b0d/action\", \"href_result\": \"/servers/e98be434-089a-4144-92e8-9282af3a2b0d\", \"started_at\": \"2025-10-30T15:44:46.818466+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:46 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e2c4f34a-8466-4a3e-a684-63d42618a7fe + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - de2b4570-f9f5-4897-b9bf-be784407fe5f + status: 202 Accepted + code: 202 + duration: 260.563992ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1865 + body: "{\"server\": {\"id\": \"e98be434-089a-4144-92e8-9282af3a2b0d\", \"name\": \"tf-srv-suspicious-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-suspicious-neumann\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0cef08a8-7058-491a-beab-712d21efd401\", \"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:6c:ff\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:06.540875+00:00\", \"modification_date\": \"2025-10-30T15:44:46.609992+00:00\", \"bootscript\": 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\": \"602\", \"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: + - "1865" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4b44d1f7-f197-401e-adb3-80cb830fc38a + status: 200 OK + code: 200 + duration: 163.089348ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1911 + body: "{\"server\": {\"id\": \"e98be434-089a-4144-92e8-9282af3a2b0d\", \"name\": \"tf-srv-suspicious-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-suspicious-neumann\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0cef08a8-7058-491a-beab-712d21efd401\", \"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:6c:ff\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:06.540875+00:00\", \"modification_date\": \"2025-10-30T15:44:46.609992+00:00\", \"bootscript\": 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\": \"602\", \"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: + - "1911" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a127b93a-4da1-455a-8896-2dd217d530a4 + status: 200 OK + code: 200 + duration: 141.860685ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1911 + body: "{\"server\": {\"id\": \"e98be434-089a-4144-92e8-9282af3a2b0d\", \"name\": \"tf-srv-suspicious-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-suspicious-neumann\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0cef08a8-7058-491a-beab-712d21efd401\", \"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:6c:ff\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:06.540875+00:00\", \"modification_date\": \"2025-10-30T15:44:46.609992+00:00\", \"bootscript\": 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\": \"602\", \"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: + - "1911" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5537c5db-8cff-4631-88d4-2ea409a99ef5 + status: 200 OK + code: 200 + duration: 146.221787ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"e98be434-089a-4144-92e8-9282af3a2b0d\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4268507e-94e4-4bef-ab9c-44cc0a09bc0e + status: 404 Not Found + code: 404 + duration: 75.691701ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0cef08a8-7058-491a-beab-712d21efd401 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"0cef08a8-7058-491a-beab-712d21efd401\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 29e57c14-5387-4c85-932e-37a4a5a1f02b + status: 404 Not Found + code: 404 + duration: 54.888002ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0cef08a8-7058-491a-beab-712d21efd401 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"0cef08a8-7058-491a-beab-712d21efd401\", \"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-30T15:43:06.680056Z\", \"updated_at\":\"2025-10-30T15:44:58.288928Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:44:58.288928Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e348ba43-b21a-40d4-a37a-b5733c383b11 + status: 200 OK + code: 200 + duration: 92.55642ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0cef08a8-7058-491a-beab-712d21efd401 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3f379f00-5b18-4ae7-92d8-0324125011a5 + status: 204 No Content + code: 204 + duration: 169.829136ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/32b0b4aa-82a3-4f92-93ee-890452583fab + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 142 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_image\", \"resource_id\": \"32b0b4aa-82a3-4f92-93ee-890452583fab\"}" + headers: + Content-Length: + - "142" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 29d926e4-7dce-4a90-a577-d5e1b48c6e2b + status: 404 Not Found + code: 404 + duration: 34.549746ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4b8c14d-1c20-4073-86c2-77c7d1319a9f + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 129 + body: "{\"message\":\"resource is not found\",\"resource\":\"snapshot\",\"resource_id\":\"b4b8c14d-1c20-4073-86c2-77c7d1319a9f\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "129" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 899729c2-2018-41fa-abce-3d746fcee876 + status: 404 Not Found + code: 404 + duration: 160.263982ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e98be434-089a-4144-92e8-9282af3a2b0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"e98be434-089a-4144-92e8-9282af3a2b0d\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 828c49b9-e049-4cc0-b2ed-99d7373fa137 + status: 404 Not Found + code: 404 + duration: 61.583163ms diff --git a/internal/services/instance/testdata/ip-basic.cassette.yaml b/internal/services/instance/testdata/ip-basic.cassette.yaml index f9f2009e3..6d28567a6 100644 --- a/internal/services/instance/testdata/ip-basic.cassette.yaml +++ b/internal/services/instance/testdata/ip-basic.cassette.yaml @@ -1,499 +1,393 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 50 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 364 - uncompressed: false - 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: - - "364" - Content-Type: - - application/json - Date: - - 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 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e4fa39df-967d-451d-824d-28b5cf4ad2c5 - status: 201 Created - code: 201 - duration: 1.288379098s - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 364 - uncompressed: false - 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: - - "364" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 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: 50 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - 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;edge03) - X-Request-Id: - - 8bca0a67-1845-4e02-a544-706d34025d32 - status: 201 Created - code: 201 - duration: 1.501585196s - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4eae58b6-ccd4-413a-ae07-46aaf95857cb - status: 200 OK - code: 200 - duration: 114.841649ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e7a8d99a-79a0-49c7-a603-52f49c5347af - status: 200 OK - code: 200 - duration: 117.464923ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 364 - uncompressed: false - 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: - - "364" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0e4eda75-2b93-40ee-9588-5a3c68119893 - status: 200 OK - code: 200 - duration: 116.665118ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6db70959-f746-4e63-b21b-c9c89580c076 - status: 200 OK - code: 200 - duration: 141.509411ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 364 - uncompressed: false - 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: - - "364" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 29eb82d2-97ef-4689-80f9-4e74273e8440 - status: 200 OK - code: 200 - duration: 154.098069ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 93f45cbb-6067-4819-8174-38966560aeee - status: 204 No Content - code: 204 - duration: 313.251421ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec - 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:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1157fcae-d233-40e5-9041-f3acc41cc136 - status: 204 No Content - code: 204 - duration: 314.656729ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_ip", "resource_id": "1d2e96c2-a32c-4233-a580-b2f48aea84ec"}' - headers: - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d7a38142-23be-4ac0-bdd1-96190cd2e074 - status: 404 Not Found - code: 404 - duration: 45.891968ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_ip", "resource_id": "aede723a-ffe8-427b-b809-eea14206f331"}' - headers: - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0d1729e9-cc7e-4397-bae6-c0f6e0ae3887 - status: 404 Not Found - code: 404 - duration: 53.67988ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 50 + host: api.scaleway.com + body: "{\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"96a95d4e-5240-4531-9b91-f10ded7246d6\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 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) + X-Request-Id: + - 5aa24bf8-0c0e-4a26-b9f9-a9b70a6eae51 + status: 201 Created + code: 201 + duration: 921.621248ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"96a95d4e-5240-4531-9b91-f10ded7246d6\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2c0e4728-aa2c-410f-9e56-29d9d73a45e0 + status: 200 OK + code: 200 + duration: 115.478726ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 50 + host: api.scaleway.com + body: "{\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"24fe5ebe-c828-4022-a88b-b2e202095ef1\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42: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) + X-Request-Id: + - 6df03d5e-705c-4f31-92a3-d824833b4a0a + status: 201 Created + code: 201 + duration: 1.095577107s +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"24fe5ebe-c828-4022-a88b-b2e202095ef1\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4eda319e-1e62-4e33-b51a-08b839ff3143 + status: 200 OK + code: 200 + duration: 137.855532ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"24fe5ebe-c828-4022-a88b-b2e202095ef1\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0f0da1c6-aff6-46b5-a76f-2991d6863d90 + status: 200 OK + code: 200 + duration: 135.534577ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"96a95d4e-5240-4531-9b91-f10ded7246d6\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6882f317-8abd-435a-a597-bde50e63b566 + status: 200 OK + code: 200 + duration: 114.566806ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"96a95d4e-5240-4531-9b91-f10ded7246d6\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 02ea4eda-d539-4e2c-be11-01b303c0c546 + status: 200 OK + code: 200 + duration: 109.518085ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"24fe5ebe-c828-4022-a88b-b2e202095ef1\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 20e4b73b-c300-4159-9a56-7a5011d26cab + status: 200 OK + code: 200 + duration: 124.509927ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 96d01742-3f0e-47cf-97a9-fda7dd7d0bda + status: 204 No Content + code: 204 + duration: 293.262747ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 035a0dfe-2512-4df2-9d5f-bb69aa4d3d4b + status: 204 No Content + code: 204 + duration: 345.124821ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 139 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_ip\", \"resource_id\": \"65a60f6b-fa89-4e49-bc25-fced17fa3df3\"}" + headers: + Content-Length: + - "139" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2fbaea99-660a-48fd-a48e-d5be55c02586 + status: 404 Not Found + code: 404 + duration: 55.455865ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 139 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_ip\", \"resource_id\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\"}" + headers: + Content-Length: + - "139" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 349662b4-a3a6-40eb-9736-9fe66e9fab94 + status: 404 Not Found + code: 404 + duration: 47.758887ms 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 95f2f6cde..957a2ef87 100644 --- a/internal/services/instance/testdata/ip-reverse-dns-basic.cassette.yaml +++ b/internal/services/instance/testdata/ip-reverse-dns-basic.cassette.yaml @@ -1,1431 +1,1161 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 50 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0c6fc3e2-84f9-4cb8-828d-7c8dbf2f3973 - status: 201 Created - code: 201 - duration: 938.8727ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 55b479c6-700e-4240-9358-806358ab7383 - status: 200 OK - code: 200 - duration: 119.034067ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 190 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 148 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 26c5eac4-a5ba-4cf8-b45d-ab752a19fdc2 - status: 200 OK - code: 200 - duration: 150.359358ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?name=&order_by=name_asc&type=A - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 165 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2bf3196c-27f4-45ed-a0cd-ace98251a6fa - status: 200 OK - code: 200 - duration: 103.17277ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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?name=&order_by=name_asc&page=1&type=A - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 165 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6d150e7c-ceca-45c8-ab6a-9c676341c0fe - status: 200 OK - code: 200 - duration: 88.249427ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=938cf943-e547-46dd-8895-742abf737e9b&name=&order_by=name_asc&page=1&type=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 165 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 93190b70-6173-497c-91d1-9f218e3e415d - status: 200 OK - code: 200 - duration: 89.288029ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 373 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6035989a-f64b-4e35-9abc-320e387bb374 - status: 200 OK - code: 200 - duration: 87.749452ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 51ec49ba-1db2-47f1-9668-46c0a5d43b56 - status: 200 OK - code: 200 - duration: 110.230967ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=938cf943-e547-46dd-8895-742abf737e9b&name=&order_by=name_asc&page=1&type=A - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 165 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 64839ce6-be6d-408c-8579-40d1e9fea57e - status: 200 OK - code: 200 - duration: 143.946137ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 373 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b23b84ad-c454-405f-bb05-3765277bdb22 - status: 200 OK - code: 200 - duration: 76.714419ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7ec5c074-1a6f-4845-9eb3-8a1d44eeccf0 - status: 200 OK - code: 200 - duration: 112.741382ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=938cf943-e547-46dd-8895-742abf737e9b&name=&order_by=name_asc&page=1&type=A - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 165 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3990495b-f73b-4227-87dd-996983875efc - status: 200 OK - code: 200 - duration: 86.268093ms - - 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: - 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 - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 373 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 68e3a29e-9ff6-42c1-8262-f68d14c32bdd - status: 200 OK - code: 200 - duration: 106.887386ms - - 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/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3e772a19-c950-4366-ba95-613925ac89c8 - status: 200 OK - code: 200 - duration: 124.378721ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 56 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"reverse":"tf-reverse-instance.scaleway-terraform.com"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 405 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 75bd6b80-61e9-49f8-870d-22e982cc008c - status: 200 OK - code: 200 - duration: 375.646924ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 405 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b5f901f1-ccbf-4125-9611-39838a5d7e5c - status: 200 OK - code: 200 - duration: 112.425463ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 405 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b3fef289-e12c-4436-b900-079ba4249f3c - status: 200 OK - code: 200 - duration: 106.304428ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=938cf943-e547-46dd-8895-742abf737e9b&name=&order_by=name_asc&page=1&type=A - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 165 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f598a837-db51-4d09-959c-1b6a37e26c19 - status: 200 OK - code: 200 - duration: 90.285936ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 372 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9e61546c-5693-416e-aa8d-7538f7c3be08 - status: 200 OK - code: 200 - duration: 97.47049ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 405 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c108433c-27c8-4c07-a595-af9487be6bff - status: 200 OK - code: 200 - duration: 109.676985ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 405 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ed2f56a5-3971-428e-8f72-2946a47f1fb4 - status: 200 OK - code: 200 - duration: 110.294358ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=938cf943-e547-46dd-8895-742abf737e9b&name=&order_by=name_asc&page=1&type=A - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 165 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b0587d69-2d1f-4a56-951f-f18f40aa4740 - status: 200 OK - code: 200 - duration: 116.917553ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 405 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a20d8f01-2c3f-4dbd-bc5f-626c75868b88 - status: 200 OK - code: 200 - duration: 120.580953ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 372 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - eaca5ecc-be6c-4117-a87a-37fab42cecac - status: 200 OK - code: 200 - duration: 79.976991ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 16 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"reverse":null}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0c5ee8dc-3e8a-4382-8800-e8e8e9b259af - status: 200 OK - code: 200 - duration: 296.819514ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 132 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"changes":[{"delete":{"id":"938cf943-e547-46dd-8895-742abf737e9b"}}],"return_all_records":false,"disallow_new_zone_creation":false}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14 - uncompressed: false - body: '{"records":[]}' - headers: - Content-Length: - - "14" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 96e6a155-c1b1-4f40-aa0d-c8415c11976f - status: 200 OK - code: 200 - duration: 117.733388ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 50 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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: - - "365" - Content-Type: - - application/json - Date: - - 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;edge03) - X-Request-Id: - - 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: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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: 0 - uncompressed: false - body: "" - headers: - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c88e14e3-b107-439c-8524-a150562fb99d - status: 204 No Content - code: 204 - duration: 304.204354ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - body: '{"ip": {"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: - - "365" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 88f6d468-a114-4b6b-83f4-63fab68287f3 - status: 200 OK - code: 200 - duration: 109.49875ms - - 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/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - body: '{"ip": {"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: - - "365" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3b57dc7b-f281-486e-9c9d-2f935e57e264 - status: 200 OK - code: 200 - duration: 127.338619ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - 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:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 52a786ac-fbd6-49ef-b278-32860ad29652 - status: 204 No Content - code: 204 - duration: 298.885118ms - - 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/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_ip", "resource_id": "65a60f6b-fa89-4e49-bc25-fced17fa3df3"}' - headers: - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 462fbde1-7f34-4a02-a38b-c3a2e6e67c83 - status: 404 Not Found - code: 404 - duration: 56.636429ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 50 + host: api.scaleway.com + body: "{\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"c95030eb-3379-433d-ac00-22168d163bd2\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:45 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) + X-Request-Id: + - 68ededcf-ae5f-4fad-99c7-f297399339fe + status: 201 Created + code: 201 + duration: 595.569977ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"c95030eb-3379-433d-ac00-22168d163bd2\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b843fc15-fa65-4daa-a625-fde2b4f458a4 + status: 200 OK + code: 200 + duration: 123.012043ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 190 + host: api.scaleway.com + body: "{\"changes\":[{\"add\":{\"records\":[{\"data\":\"51.158.76.222\",\"name\":\"\",\"priority\":1,\"ttl\":3600,\"type\":\"A\",\"comment\":null,\"id\":\"\"}]}}],\"return_all_records\":false,\"disallow_new_zone_creation\":false}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 148 + body: "{\"records\":[{\"id\":\"f0ad5598-d5db-4713-8989-2a121599b44f\", \"data\":\"51.158.76.222\", \"name\":\"\", \"priority\":1, \"ttl\":3600, \"type\":\"A\", \"comment\":null}]}" + headers: + Content-Length: + - "148" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d03fcb8b-f3f1-4e58-a270-60834201417d + status: 200 OK + code: 200 + duration: 163.229026ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?name=&order_by=name_asc&type=A + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 165 + body: "{\"total_count\":1, \"records\":[{\"id\":\"f0ad5598-d5db-4713-8989-2a121599b44f\", \"data\":\"51.158.76.222\", \"name\":\"\", \"priority\":1, \"ttl\":3600, \"type\":\"A\", \"comment\":null}]}" + headers: + Content-Length: + - "165" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3a47ae27-c733-4312-8429-75596bce7e4d + status: 200 OK + code: 200 + duration: 96.507874ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?name=&order_by=name_asc&page=1&type=A + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 165 + body: "{\"total_count\":1, \"records\":[{\"id\":\"f0ad5598-d5db-4713-8989-2a121599b44f\", \"data\":\"51.158.76.222\", \"name\":\"\", \"priority\":1, \"ttl\":3600, \"type\":\"A\", \"comment\":null}]}" + headers: + Content-Length: + - "165" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a52ce195-5ed1-4f12-860f-a9dc261c6d70 + status: 200 OK + code: 200 + duration: 94.221562ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + id: + - f0ad5598-d5db-4713-8989-2a121599b44f + 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=f0ad5598-d5db-4713-8989-2a121599b44f&name=&order_by=name_asc&page=1&type=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 165 + body: "{\"total_count\":1, \"records\":[{\"id\":\"f0ad5598-d5db-4713-8989-2a121599b44f\", \"data\":\"51.158.76.222\", \"name\":\"\", \"priority\":1, \"ttl\":3600, \"type\":\"A\", \"comment\":null}]}" + headers: + Content-Length: + - "165" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c6cc9901-aefa-4520-a205-242ffc9f5cd3 + status: 200 OK + code: 200 + duration: 82.007421ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 373 + 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-30T15:58:46Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"linked_products\":[]}]}" + headers: + Content-Length: + - "373" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 00e329c5-f07b-4204-b518-ff24b6a84dc9 + status: 200 OK + code: 200 + duration: 92.381619ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"c95030eb-3379-433d-ac00-22168d163bd2\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aea6f3b6-45e3-4a56-b6ff-f28da05b81f4 + status: 200 OK + code: 200 + duration: 129.047961ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + id: + - f0ad5598-d5db-4713-8989-2a121599b44f + 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=f0ad5598-d5db-4713-8989-2a121599b44f&name=&order_by=name_asc&page=1&type=A + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 165 + body: "{\"total_count\":1, \"records\":[{\"id\":\"f0ad5598-d5db-4713-8989-2a121599b44f\", \"data\":\"51.158.76.222\", \"name\":\"\", \"priority\":1, \"ttl\":3600, \"type\":\"A\", \"comment\":null}]}" + headers: + Content-Length: + - "165" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a6290c23-6df4-4cf6-84c3-e8f20529baf1 + status: 200 OK + code: 200 + duration: 99.949552ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 373 + 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-30T15:58:46Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"linked_products\":[]}]}" + headers: + Content-Length: + - "373" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5b464747-514b-4b4b-a0a6-f702583459f8 + status: 200 OK + code: 200 + duration: 86.942102ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"c95030eb-3379-433d-ac00-22168d163bd2\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cc7d8dda-83b4-4b44-81b0-8709949e993e + status: 200 OK + code: 200 + duration: 116.104619ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + id: + - f0ad5598-d5db-4713-8989-2a121599b44f + 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=f0ad5598-d5db-4713-8989-2a121599b44f&name=&order_by=name_asc&page=1&type=A + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 165 + body: "{\"total_count\":1, \"records\":[{\"id\":\"f0ad5598-d5db-4713-8989-2a121599b44f\", \"data\":\"51.158.76.222\", \"name\":\"\", \"priority\":1, \"ttl\":3600, \"type\":\"A\", \"comment\":null}]}" + headers: + Content-Length: + - "165" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4b38b434-3fbb-4daf-97c8-4f884ef2cdf4 + status: 200 OK + code: 200 + duration: 85.837429ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 373 + 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-30T15:58:46Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"linked_products\":[]}]}" + headers: + Content-Length: + - "373" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 206f3d5e-309e-471e-90de-7f7c7dc6df9b + status: 200 OK + code: 200 + duration: 94.899845ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"c95030eb-3379-433d-ac00-22168d163bd2\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 004bc108-2387-4863-a6e6-579cf0c019d8 + status: 200 OK + code: 200 + duration: 131.207623ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 56 + host: api.scaleway.com + body: "{\"reverse\":\"tf-reverse-instance.scaleway-terraform.com\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 405 + body: "{\"ip\": {\"id\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"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\": \"c95030eb-3379-433d-ac00-22168d163bd2\"}}" + headers: + Content-Length: + - "405" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7c701eda-9591-4085-a710-e4d7c8b7323d + status: 200 OK + code: 200 + duration: 354.210376ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 405 + body: "{\"ip\": {\"id\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"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\": \"c95030eb-3379-433d-ac00-22168d163bd2\"}}" + headers: + Content-Length: + - "405" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d0ed1c5d-3f61-45b1-9b10-5e6b4513f630 + status: 200 OK + code: 200 + duration: 131.965256ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 405 + body: "{\"ip\": {\"id\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"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\": \"c95030eb-3379-433d-ac00-22168d163bd2\"}}" + headers: + Content-Length: + - "405" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c0b115e2-6123-48ec-b8c1-e99c91fe181a + status: 200 OK + code: 200 + duration: 113.90933ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + id: + - f0ad5598-d5db-4713-8989-2a121599b44f + 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=f0ad5598-d5db-4713-8989-2a121599b44f&name=&order_by=name_asc&page=1&type=A + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 165 + body: "{\"total_count\":1, \"records\":[{\"id\":\"f0ad5598-d5db-4713-8989-2a121599b44f\", \"data\":\"51.158.76.222\", \"name\":\"\", \"priority\":1, \"ttl\":3600, \"type\":\"A\", \"comment\":null}]}" + headers: + Content-Length: + - "165" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c29bcba1-726c-47b3-a44a-fa8693ab318d + status: 200 OK + code: 200 + duration: 95.858705ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 372 + 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-30T15:58:52Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"linked_products\":[]}]}" + headers: + Content-Length: + - "372" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6dda6315-e049-4d9f-a6b4-ae9dd8c57a44 + status: 200 OK + code: 200 + duration: 93.323969ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 405 + body: "{\"ip\": {\"id\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"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\": \"c95030eb-3379-433d-ac00-22168d163bd2\"}}" + headers: + Content-Length: + - "405" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2c54781f-d89e-4b9f-8356-279fd3732ffd + status: 200 OK + code: 200 + duration: 110.492308ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + id: + - f0ad5598-d5db-4713-8989-2a121599b44f + 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=f0ad5598-d5db-4713-8989-2a121599b44f&name=&order_by=name_asc&page=1&type=A + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 165 + body: "{\"total_count\":1, \"records\":[{\"id\":\"f0ad5598-d5db-4713-8989-2a121599b44f\", \"data\":\"51.158.76.222\", \"name\":\"\", \"priority\":1, \"ttl\":3600, \"type\":\"A\", \"comment\":null}]}" + headers: + Content-Length: + - "165" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 11c96bbd-e938-4a77-823c-4c5b72d89861 + status: 200 OK + code: 200 + duration: 115.147795ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 405 + body: "{\"ip\": {\"id\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"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\": \"c95030eb-3379-433d-ac00-22168d163bd2\"}}" + headers: + Content-Length: + - "405" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 23940627-d700-40b2-95a4-f8125b819d71 + status: 200 OK + code: 200 + duration: 119.831715ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 372 + 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-30T15:58:52Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"linked_products\":[]}]}" + headers: + Content-Length: + - "372" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 475eb9a3-2b03-4123-87f1-fc6e1ceed3dc + status: 200 OK + code: 200 + duration: 92.513006ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 405 + body: "{\"ip\": {\"id\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"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\": \"c95030eb-3379-433d-ac00-22168d163bd2\"}}" + headers: + Content-Length: + - "405" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 504321e9-dda3-41d8-ab25-1581d36774e0 + status: 200 OK + code: 200 + duration: 1.510494481s +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 16 + host: api.scaleway.com + body: "{\"reverse\":null}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"c95030eb-3379-433d-ac00-22168d163bd2\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5f75811f-8a70-4cff-8770-9a030a7b9b07 + status: 200 OK + code: 200 + duration: 290.872632ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 132 + host: api.scaleway.com + body: "{\"changes\":[{\"delete\":{\"id\":\"f0ad5598-d5db-4713-8989-2a121599b44f\"}}],\"return_all_records\":false,\"disallow_new_zone_creation\":false}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14 + body: "{\"records\":[]}" + headers: + Content-Length: + - "14" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 215b27b3-2065-4980-b967-05c5e0ec5eb2 + status: 200 OK + code: 200 + duration: 119.069144ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9db4f91d-4d24-4ad1-8c67-8ace58caea2d + status: 204 No Content + code: 204 + duration: 339.713831ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 50 + host: api.scaleway.com + body: "{\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"9f5d4dd8-6a37-4bb6-8d24-28ea51fa75c2\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:56 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) + X-Request-Id: + - 154765e5-9ade-4a2c-ad5c-30feb0ed0de0 + status: 201 Created + code: 201 + duration: 1.082605195s +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"9f5d4dd8-6a37-4bb6-8d24-28ea51fa75c2\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fdd82bd3-1a4f-4b16-b253-fcd20388274c + status: 200 OK + code: 200 + duration: 121.150349ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"9f5d4dd8-6a37-4bb6-8d24-28ea51fa75c2\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 072376d2-b1ba-4f68-a710-461984b84334 + status: 200 OK + code: 200 + duration: 112.215932ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 60209b99-7cc7-4d45-b081-c61ae4ecbe3d + status: 204 No Content + code: 204 + duration: 323.51938ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 139 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_ip\", \"resource_id\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\"}" + headers: + Content-Length: + - "139" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:58:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7b30b2bb-51cd-41a3-a7c9-f759676954f6 + status: 404 Not Found + code: 404 + duration: 56.275381ms 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 c6999b5cf..65e3471f9 100644 --- a/internal/services/instance/testdata/ip-routed-ipv6-attached.cassette.yaml +++ b/internal/services/instance/testdata/ip-routed-ipv6-attached.cassette.yaml @@ -1,1644 +1,1301 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 71 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf","type":"routed_ipv6"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 374 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:36 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c9eeca50-ddf9-4344-8d4c-a4d585c76ba0 - status: 201 Created - code: 201 - duration: 2.840368247s - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 374 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 118456fd-5bab-462a-9344-c36999a547f2 - status: 200 OK - code: 200 - duration: 235.144514ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:36 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d78c2c09-0538-4ed0-942d-884b89f9e0a6 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 53.104281ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:36 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - df34c562-1704-428e-a02e-50f0cb01719f - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 197.471127ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_noble&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 30277144-cdbf-4231-84b0-f912e4e2c5dc - status: 200 OK - code: 200 - duration: 55.009284ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 285 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2333 - uncompressed: false - 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: - - "2333" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:38 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d1b7a481-e206-47d4-8791-09348b0d46a8 - status: 201 Created - code: 201 - duration: 1.648113792s - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2333 - uncompressed: false - 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: - - "2333" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d5262ba9-9e56-47fb-b4ae-972c2c4f8464 - status: 200 OK - code: 200 - duration: 134.020139ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2379 - uncompressed: false - 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: - - "2379" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6d053f03-f564-4fd7-9a8e-735e64a96e68 - status: 200 OK - code: 200 - duration: 272.12695ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/01528513-1a22-4afc-90e0-d2fbfaced70a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 702 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 46e90ef9-0d7b-4c3a-b5e1-a43ec3a8b13e - status: 200 OK - code: 200 - duration: 101.708499ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweron"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:39 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e6f5d42d-7cdd-4542-8de8-218e8bb5e584 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3bd90ad9-011c-4f25-85fb-c35390573594 - status: 202 Accepted - code: 202 - duration: 323.548396ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2401 - uncompressed: false - 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: - - "2401" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a7baf09b-1359-4866-bc57-ccf5a31518f1 - status: 200 OK - code: 200 - duration: 191.062675ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2489 - uncompressed: false - 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: - - "2489" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 846f02ac-d08d-454e-b9bd-e105fd174723 - status: 200 OK - code: 200 - duration: 135.615233ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2489 - uncompressed: false - 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: - - "2489" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 84557e5f-7c47-4612-a6ab-960c0a28aaa2 - status: 200 OK - code: 200 - duration: 136.156106ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/01528513-1a22-4afc-90e0-d2fbfaced70a - 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": "01528513-1a22-4afc-90e0-d2fbfaced70a"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5ccbf52d-b0a8-45ad-9efc-02967ca0515a - status: 404 Not Found - code: 404 - duration: 27.452374ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/01528513-1a22-4afc-90e0-d2fbfaced70a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 702 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d7ada278-f8fb-4a77-9ec0-56d18f8b0ec6 - status: 200 OK - code: 200 - duration: 127.449905ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0/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:54:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d335a8f0-b257-47f0-8486-a50f47731a61 - status: 200 OK - code: 200 - duration: 118.2434ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0/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:54:45 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8c6a75a3-c3c0-492e-8ff5-8b03ec8a75e7 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 189.499044ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 446 - uncompressed: false - 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: - - "446" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b9a0ec0e-f6aa-4cff-bc74-c28579a565c0 - status: 200 OK - code: 200 - duration: 220.693907ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 446 - uncompressed: false - 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: - - "446" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 888f85b8-67ef-4759-87ac-7e47b4f2c8f9 - status: 200 OK - code: 200 - duration: 257.918867ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2489 - uncompressed: false - 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: - - "2489" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 379161b6-64d8-46f8-bbd1-490c80461a5a - status: 200 OK - code: 200 - duration: 153.945281ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/01528513-1a22-4afc-90e0-d2fbfaced70a - 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": "01528513-1a22-4afc-90e0-d2fbfaced70a"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3a50b13f-2359-4145-af41-9019e27b83cc - status: 404 Not Found - code: 404 - duration: 38.241019ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/01528513-1a22-4afc-90e0-d2fbfaced70a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 702 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d06cee3d-17b3-4e44-820a-16e88350a34e - status: 200 OK - code: 200 - duration: 88.537861ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0/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:54:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 325e014e-7e18-4268-b489-40285720c81f - status: 200 OK - code: 200 - duration: 114.671862ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0/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:54:46 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 618b26f2-0e27-4dcf-a255-839bf2ba918e - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 92.786506ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 15 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"server":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/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 374 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dc1b2d5f-31ce-4a42-bcb5-8d4f4489472c - status: 200 OK - code: 200 - duration: 572.597214ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1889 - uncompressed: false - 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: - - "1889" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 44e383f6-b331-4d0a-836f-f0e9eac7dece - status: 200 OK - code: 200 - duration: 146.580219ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1935 - uncompressed: false - 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: - - "1935" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aa48b881-ff27-4364-a26e-8512fcad2f0e - status: 200 OK - code: 200 - duration: 155.356861ms - - id: 27 - 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/cf3d1bd8-9c64-469b-8f21-e161fd900bb0/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": "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: - - "353" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:48 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/dcb6dbf6-2316-4b99-a7e5-ff56681e1bdc - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aa94db5c-4244-41b9-bfbd-dc20b255d79c - status: 202 Accepted - code: 202 - duration: 284.798944ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1898 - uncompressed: false - 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: - - "1898" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 920a80bb-b1df-46f2-b19c-966ca109e71b - status: 200 OK - code: 200 - duration: 142.137331ms - - 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/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1898 - uncompressed: false - 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: - - "1898" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 41ace05c-5c8e-43dd-a529-542ae96a2725 - status: 200 OK - code: 200 - duration: 132.582225ms - - 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/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1898 - uncompressed: false - 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: - - "1898" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3f240f8a-be24-4654-beef-6a485771d012 - status: 200 OK - code: 200 - duration: 151.78679ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1852 - uncompressed: false - 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: - - "1852" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fe792467-3066-4e95-b149-0c4a384f02e0 - status: 200 OK - code: 200 - duration: 138.866791ms - - 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/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1898 - uncompressed: false - 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: - - "1898" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6663f28b-54fd-4865-a62e-7cda0d8b8efd - status: 200 OK - code: 200 - duration: 140.535273ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cf3d1bd8-9c64-469b-8f21-e161fd900bb0 - 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": "cf3d1bd8-9c64-469b-8f21-e161fd900bb0"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fc851852-c904-488e-a0f0-026dec500ef6 - status: 404 Not Found - code: 404 - duration: 53.689381ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/01528513-1a22-4afc-90e0-d2fbfaced70a - 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": "01528513-1a22-4afc-90e0-d2fbfaced70a"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 75fa7650-1fa8-4219-aee6-b180b89282ee - status: 404 Not Found - code: 404 - duration: 34.6252ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/01528513-1a22-4afc-90e0-d2fbfaced70a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 495 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4b0f103f-aade-4612-a597-97e1ec888e33 - status: 200 OK - code: 200 - duration: 82.519113ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/01528513-1a22-4afc-90e0-d2fbfaced70a - 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:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 209bc70e-ab86-414f-99d3-1bcd2d3aacf5 - status: 204 No Content - code: 204 - duration: 179.66522ms - - 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/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 - 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:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 71f9dfee-0573-408b-94f3-9f3833ebc892 - status: 204 No Content - code: 204 - duration: 337.138309ms - - 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/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_ip", "resource_id": "2a2afa1d-f9d6-4e74-b39b-6c001dfdb154"}' - headers: - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b602f945-7399-4790-b488-2cbd5162b728 - status: 404 Not Found - code: 404 - duration: 49.95661ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 71 + host: api.scaleway.com + body: "{\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"type\":\"routed_ipv6\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 374 + body: "{\"ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": null, \"prefix\": \"2001:bc8:710:404a::/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\": \"1076d02c-017a-4781-97de-6e8677db1034\"}}" + headers: + Content-Length: + - "374" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a5223489-59b9-4d77-a5a7-e8e77f259d8e + status: 201 Created + code: 201 + duration: 450.559639ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 374 + body: "{\"ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": null, \"prefix\": \"2001:bc8:710:404a::/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\": \"1076d02c-017a-4781-97de-6e8677db1034\"}}" + headers: + Content-Length: + - "374" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 03035dc0-13d6-4de4-9651-0dfce2be9145 + status: 200 OK + code: 200 + duration: 124.421663ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 938987b2-9e96-4417-894a-5a5cfd2ba791 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 46.100056ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 57767170-ec5a-464a-aa77-23be20f3f109 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 39.024012ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_noble&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4e26ad5b-9371-4a6f-be53-ec34fd06a54e + status: 200 OK + code: 200 + duration: 44.816297ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 284 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-silly-bell\",\"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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2331 + body: "{\"server\": {\"id\": \"de0842fe-535a-404a-9bd2-b8dd5394810b\", \"name\": \"tf-srv-silly-bell\", \"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-silly-bell\", \"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\": \"9c80b870-78b6-4a7b-bda1-9073f95526de\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6cf3\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cf4\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"1076d02c-017a-4781-97de-6e8677db1034\"}, \"public_ips\": [{\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6cf3\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cf4\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"1076d02c-017a-4781-97de-6e8677db1034\"}], \"mac_address\": \"de:00:00:d0:6c:f3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:57.684531+00:00\", \"modification_date\": \"2025-10-30T15:42:57.684531+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2331" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de0842fe-535a-404a-9bd2-b8dd5394810b + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1d2963c1-2260-4aae-912d-2a03d8870644 + status: 201 Created + code: 201 + duration: 1.565942803s +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de0842fe-535a-404a-9bd2-b8dd5394810b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2331 + body: "{\"server\": {\"id\": \"de0842fe-535a-404a-9bd2-b8dd5394810b\", \"name\": \"tf-srv-silly-bell\", \"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-silly-bell\", \"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\": \"9c80b870-78b6-4a7b-bda1-9073f95526de\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6cf3\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cf4\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"1076d02c-017a-4781-97de-6e8677db1034\"}, \"public_ips\": [{\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6cf3\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cf4\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"1076d02c-017a-4781-97de-6e8677db1034\"}], \"mac_address\": \"de:00:00:d0:6c:f3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:57.684531+00:00\", \"modification_date\": \"2025-10-30T15:42:57.684531+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2331" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 383095ef-7ac6-4136-b996-92a19de4c228 + status: 200 OK + code: 200 + duration: 155.31861ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de0842fe-535a-404a-9bd2-b8dd5394810b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2331 + body: "{\"server\": {\"id\": \"de0842fe-535a-404a-9bd2-b8dd5394810b\", \"name\": \"tf-srv-silly-bell\", \"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-silly-bell\", \"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\": \"9c80b870-78b6-4a7b-bda1-9073f95526de\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6cf3\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cf4\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"1076d02c-017a-4781-97de-6e8677db1034\"}, \"public_ips\": [{\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6cf3\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cf4\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"1076d02c-017a-4781-97de-6e8677db1034\"}], \"mac_address\": \"de:00:00:d0:6c:f3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:57.684531+00:00\", \"modification_date\": \"2025-10-30T15:42:57.684531+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2331" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8a920ab2-afc5-4ecd-b9e0-a3681115ada9 + status: 200 OK + code: 200 + duration: 219.717762ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9c80b870-78b6-4a7b-bda1-9073f95526de + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 702 + body: "{\"id\":\"9c80b870-78b6-4a7b-bda1-9073f95526de\", \"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-30T15:42:57.832264Z\", \"updated_at\":\"2025-10-30T15:42:57.832264Z\", \"references\":[{\"id\":\"4cadfae4-d1b9-4c5c-8c9c-869b24165766\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"de0842fe-535a-404a-9bd2-b8dd5394810b\", \"created_at\":\"2025-10-30T15:42:57.832264Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 048571f1-8807-4b8c-bd30-41e5ec8c0728 + status: 200 OK + code: 200 + duration: 106.970719ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de0842fe-535a-404a-9bd2-b8dd5394810b/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"a33e65aa-6e2b-465a-969f-fa4437a2bca5\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/de0842fe-535a-404a-9bd2-b8dd5394810b/action\", \"href_result\": \"/servers/de0842fe-535a-404a-9bd2-b8dd5394810b\", \"started_at\": \"2025-10-30T15:42:59.352847+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a33e65aa-6e2b-465a-969f-fa4437a2bca5 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2aa68678-aca3-482a-88a4-1f8983d9e67c + status: 202 Accepted + code: 202 + duration: 300.602318ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de0842fe-535a-404a-9bd2-b8dd5394810b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2353 + body: "{\"server\": {\"id\": \"de0842fe-535a-404a-9bd2-b8dd5394810b\", \"name\": \"tf-srv-silly-bell\", \"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-silly-bell\", \"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\": \"9c80b870-78b6-4a7b-bda1-9073f95526de\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"starting\", \"protected\": false, \"state_detail\": \"allocating node\", \"public_ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6cf3\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cf4\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"1076d02c-017a-4781-97de-6e8677db1034\"}, \"public_ips\": [{\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6cf3\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cf4\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"1076d02c-017a-4781-97de-6e8677db1034\"}], \"mac_address\": \"de:00:00:d0:6c:f3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:57.684531+00:00\", \"modification_date\": \"2025-10-30T15:42:59.116030+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: + - "2353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c65f392d-f188-4026-8245-b30af1e92f10 + status: 200 OK + code: 200 + duration: 167.490704ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de0842fe-535a-404a-9bd2-b8dd5394810b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2532 + body: "{\"server\": {\"id\": \"de0842fe-535a-404a-9bd2-b8dd5394810b\", \"name\": \"tf-srv-silly-bell\", \"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-silly-bell\", \"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\": \"9c80b870-78b6-4a7b-bda1-9073f95526de\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6cf3\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cf4\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"1076d02c-017a-4781-97de-6e8677db1034\"}, \"public_ips\": [{\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6cf3\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cf4\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"1076d02c-017a-4781-97de-6e8677db1034\"}], \"mac_address\": \"de:00:00:d0:6c:f3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:57.684531+00:00\", \"modification_date\": \"2025-10-30T15:43:01.171517+00:00\", \"bootscript\": 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\": \"301\", \"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: + - "2532" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 49638ff5-b1e9-42da-b98e-a0eac41c901b + status: 200 OK + code: 200 + duration: 178.157414ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de0842fe-535a-404a-9bd2-b8dd5394810b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2532 + body: "{\"server\": {\"id\": \"de0842fe-535a-404a-9bd2-b8dd5394810b\", \"name\": \"tf-srv-silly-bell\", \"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-silly-bell\", \"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\": \"9c80b870-78b6-4a7b-bda1-9073f95526de\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6cf3\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cf4\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"1076d02c-017a-4781-97de-6e8677db1034\"}, \"public_ips\": [{\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6cf3\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cf4\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"1076d02c-017a-4781-97de-6e8677db1034\"}], \"mac_address\": \"de:00:00:d0:6c:f3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:57.684531+00:00\", \"modification_date\": \"2025-10-30T15:43:01.171517+00:00\", \"bootscript\": 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\": \"301\", \"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: + - "2532" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f3fadfb3-28c8-4bbb-8698-e6f4e981b448 + status: 200 OK + code: 200 + duration: 162.138615ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9c80b870-78b6-4a7b-bda1-9073f95526de + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"9c80b870-78b6-4a7b-bda1-9073f95526de\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - abe881b6-2330-4e58-ae8b-790a5eba1acf + status: 404 Not Found + code: 404 + duration: 26.32978ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9c80b870-78b6-4a7b-bda1-9073f95526de + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 702 + body: "{\"id\":\"9c80b870-78b6-4a7b-bda1-9073f95526de\", \"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-30T15:42:57.832264Z\", \"updated_at\":\"2025-10-30T15:42:57.832264Z\", \"references\":[{\"id\":\"4cadfae4-d1b9-4c5c-8c9c-869b24165766\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"de0842fe-535a-404a-9bd2-b8dd5394810b\", \"created_at\":\"2025-10-30T15:42:57.832264Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 08574514-e4e8-4f8e-b682-2f946b6bb686 + status: 200 OK + code: 200 + duration: 106.932568ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de0842fe-535a-404a-9bd2-b8dd5394810b/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aa047591-951e-4d60-a2ed-99ecd1d2c9c5 + status: 200 OK + code: 200 + duration: 109.462354ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de0842fe-535a-404a-9bd2-b8dd5394810b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e6e17bdb-270b-447e-a6d8-a7a675ae8ac7 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 102.808663ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 445 + body: "{\"ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": null, \"prefix\": \"2001:bc8:710:404a::/64\", \"reverse\": null, \"server\": {\"id\": \"de0842fe-535a-404a-9bd2-b8dd5394810b\", \"name\": \"tf-srv-silly-bell\"}, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"zone\": \"fr-par-1\", \"type\": \"routed_ipv6\", \"state\": \"attached\", \"tags\": [], \"ipam_id\": \"1076d02c-017a-4781-97de-6e8677db1034\"}}" + headers: + Content-Length: + - "445" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e241cb4f-dfe6-48a0-aa7a-78d328d5d37a + status: 200 OK + code: 200 + duration: 146.288784ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 445 + body: "{\"ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": null, \"prefix\": \"2001:bc8:710:404a::/64\", \"reverse\": null, \"server\": {\"id\": \"de0842fe-535a-404a-9bd2-b8dd5394810b\", \"name\": \"tf-srv-silly-bell\"}, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"zone\": \"fr-par-1\", \"type\": \"routed_ipv6\", \"state\": \"attached\", \"tags\": [], \"ipam_id\": \"1076d02c-017a-4781-97de-6e8677db1034\"}}" + headers: + Content-Length: + - "445" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c49164c4-36c9-4c5e-ae4a-35d4e898daba + status: 200 OK + code: 200 + duration: 121.930121ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de0842fe-535a-404a-9bd2-b8dd5394810b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2532 + body: "{\"server\": {\"id\": \"de0842fe-535a-404a-9bd2-b8dd5394810b\", \"name\": \"tf-srv-silly-bell\", \"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-silly-bell\", \"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\": \"9c80b870-78b6-4a7b-bda1-9073f95526de\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6cf3\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cf4\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"1076d02c-017a-4781-97de-6e8677db1034\"}, \"public_ips\": [{\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6cf3\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cf4\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"1076d02c-017a-4781-97de-6e8677db1034\"}], \"mac_address\": \"de:00:00:d0:6c:f3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:57.684531+00:00\", \"modification_date\": \"2025-10-30T15:43:01.171517+00:00\", \"bootscript\": 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\": \"301\", \"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: + - "2532" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 934b5909-f270-47f6-be5a-69335d83663e + status: 200 OK + code: 200 + duration: 133.696433ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9c80b870-78b6-4a7b-bda1-9073f95526de + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"9c80b870-78b6-4a7b-bda1-9073f95526de\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3e9a7596-818b-45e6-91e8-8d01f65b69da + status: 404 Not Found + code: 404 + duration: 30.528606ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9c80b870-78b6-4a7b-bda1-9073f95526de + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 702 + body: "{\"id\":\"9c80b870-78b6-4a7b-bda1-9073f95526de\", \"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-30T15:42:57.832264Z\", \"updated_at\":\"2025-10-30T15:42:57.832264Z\", \"references\":[{\"id\":\"4cadfae4-d1b9-4c5c-8c9c-869b24165766\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"de0842fe-535a-404a-9bd2-b8dd5394810b\", \"created_at\":\"2025-10-30T15:42:57.832264Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4f479002-a016-417d-9dc2-5faa726cd960 + status: 200 OK + code: 200 + duration: 97.782634ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de0842fe-535a-404a-9bd2-b8dd5394810b/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e9e6b5a6-9e1b-4889-b10e-5e5e490a50aa + status: 200 OK + code: 200 + duration: 104.546383ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de0842fe-535a-404a-9bd2-b8dd5394810b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:06 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a58e0d82-5b27-45c5-9233-f3ce910e7956 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 93.149143ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 15 + host: api.scaleway.com + body: "{\"server\":null}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 374 + body: "{\"ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": null, \"prefix\": \"2001:bc8:710:404a::/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\": \"1076d02c-017a-4781-97de-6e8677db1034\"}}" + headers: + Content-Length: + - "374" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5e9187fe-f196-4909-b454-741b51816961 + status: 200 OK + code: 200 + duration: 587.104725ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de0842fe-535a-404a-9bd2-b8dd5394810b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1886 + body: "{\"server\": {\"id\": \"de0842fe-535a-404a-9bd2-b8dd5394810b\", \"name\": \"tf-srv-silly-bell\", \"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-silly-bell\", \"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\": \"9c80b870-78b6-4a7b-bda1-9073f95526de\", \"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:6c:f3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:57.684531+00:00\", \"modification_date\": \"2025-10-30T15:43:01.171517+00:00\", \"bootscript\": 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\": \"301\", \"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: + - "1886" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5251dd50-bb59-49e9-8b30-cb362a75cadc + status: 200 OK + code: 200 + duration: 159.313387ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de0842fe-535a-404a-9bd2-b8dd5394810b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1886 + body: "{\"server\": {\"id\": \"de0842fe-535a-404a-9bd2-b8dd5394810b\", \"name\": \"tf-srv-silly-bell\", \"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-silly-bell\", \"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\": \"9c80b870-78b6-4a7b-bda1-9073f95526de\", \"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:6c:f3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:57.684531+00:00\", \"modification_date\": \"2025-10-30T15:43:01.171517+00:00\", \"bootscript\": 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\": \"301\", \"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: + - "1886" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4e6ac485-600e-4263-aff3-a86fa301f909 + status: 200 OK + code: 200 + duration: 160.446072ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de0842fe-535a-404a-9bd2-b8dd5394810b/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"822ba117-d615-435e-a487-575fccdc26bf\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/de0842fe-535a-404a-9bd2-b8dd5394810b/action\", \"href_result\": \"/servers/de0842fe-535a-404a-9bd2-b8dd5394810b\", \"started_at\": \"2025-10-30T15:43:07.619961+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:07 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/822ba117-d615-435e-a487-575fccdc26bf + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0d6951de-e9b4-48a5-b749-7e9afe889bd2 + status: 202 Accepted + code: 202 + duration: 296.501841ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de0842fe-535a-404a-9bd2-b8dd5394810b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1895 + body: "{\"server\": {\"id\": \"de0842fe-535a-404a-9bd2-b8dd5394810b\", \"name\": \"tf-srv-silly-bell\", \"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-silly-bell\", \"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\": \"9c80b870-78b6-4a7b-bda1-9073f95526de\", \"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:6c:f3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:57.684531+00:00\", \"modification_date\": \"2025-10-30T15:43:07.381962+00:00\", \"bootscript\": 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\": \"301\", \"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: + - "1895" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f49ca732-2aa3-4fe0-a9ab-4acbf9828367 + status: 200 OK + code: 200 + duration: 132.235653ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de0842fe-535a-404a-9bd2-b8dd5394810b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1895 + body: "{\"server\": {\"id\": \"de0842fe-535a-404a-9bd2-b8dd5394810b\", \"name\": \"tf-srv-silly-bell\", \"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-silly-bell\", \"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\": \"9c80b870-78b6-4a7b-bda1-9073f95526de\", \"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:6c:f3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:57.684531+00:00\", \"modification_date\": \"2025-10-30T15:43:07.381962+00:00\", \"bootscript\": 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\": \"301\", \"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: + - "1895" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 107c9e20-b0ff-428c-a572-83563d65b60c + status: 200 OK + code: 200 + duration: 139.502346ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de0842fe-535a-404a-9bd2-b8dd5394810b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1849 + body: "{\"server\": {\"id\": \"de0842fe-535a-404a-9bd2-b8dd5394810b\", \"name\": \"tf-srv-silly-bell\", \"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-silly-bell\", \"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\": \"9c80b870-78b6-4a7b-bda1-9073f95526de\", \"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:6c:f3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:57.684531+00:00\", \"modification_date\": \"2025-10-30T15:43:07.381962+00:00\", \"bootscript\": 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\": \"301\", \"node_id\": \"2\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1849" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 77c43df5-154e-4bd9-8287-28ba49f385ec + status: 200 OK + code: 200 + duration: 127.320085ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de0842fe-535a-404a-9bd2-b8dd5394810b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1849 + body: "{\"server\": {\"id\": \"de0842fe-535a-404a-9bd2-b8dd5394810b\", \"name\": \"tf-srv-silly-bell\", \"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-silly-bell\", \"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\": \"9c80b870-78b6-4a7b-bda1-9073f95526de\", \"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:6c:f3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:57.684531+00:00\", \"modification_date\": \"2025-10-30T15:43:07.381962+00:00\", \"bootscript\": 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\": \"301\", \"node_id\": \"2\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1849" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fba6cd80-b537-4f6d-88c4-c88983b0d6d0 + status: 200 OK + code: 200 + duration: 154.104ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de0842fe-535a-404a-9bd2-b8dd5394810b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1849 + body: "{\"server\": {\"id\": \"de0842fe-535a-404a-9bd2-b8dd5394810b\", \"name\": \"tf-srv-silly-bell\", \"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-silly-bell\", \"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\": \"9c80b870-78b6-4a7b-bda1-9073f95526de\", \"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:6c:f3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:57.684531+00:00\", \"modification_date\": \"2025-10-30T15:43:07.381962+00:00\", \"bootscript\": 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\": \"301\", \"node_id\": \"2\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1849" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7934106a-5b2c-47f0-87ce-7ae6031c2757 + status: 200 OK + code: 200 + duration: 141.081813ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de0842fe-535a-404a-9bd2-b8dd5394810b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"de0842fe-535a-404a-9bd2-b8dd5394810b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d4e7c0c8-4a6e-48c2-a4e1-9fb229fe0b50 + status: 404 Not Found + code: 404 + duration: 49.931265ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9c80b870-78b6-4a7b-bda1-9073f95526de + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"9c80b870-78b6-4a7b-bda1-9073f95526de\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - be1cf36e-7c86-43be-bdc1-30e702edfd0c + status: 404 Not Found + code: 404 + duration: 27.448831ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9c80b870-78b6-4a7b-bda1-9073f95526de + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 495 + body: "{\"id\":\"9c80b870-78b6-4a7b-bda1-9073f95526de\", \"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-30T15:42:57.832264Z\", \"updated_at\":\"2025-10-30T15:43:29.034329Z\", \"references\":[], \"parent_snapshot_id\":\"a7614e65-45a6-4223-80fe-15ef119f5311\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:43:29.034329Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "495" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f97f8fea-dc42-42af-b7d9-8aed54d48549 + status: 200 OK + code: 200 + duration: 81.862095ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9c80b870-78b6-4a7b-bda1-9073f95526de + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 99cce222-2247-4272-940d-47d164065855 + status: 204 No Content + code: 204 + duration: 154.142705ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5060c716-a446-4970-a5d7-51b34f06d687 + status: 204 No Content + code: 204 + duration: 451.062575ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 139 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_ip\", \"resource_id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\"}" + headers: + Content-Length: + - "139" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8a6ef5ef-1c60-4d81-9949-8e4d517caab4 + status: 404 Not Found + code: 404 + duration: 57.992257ms diff --git a/internal/services/instance/testdata/ip-routed-ipv6.cassette.yaml b/internal/services/instance/testdata/ip-routed-ipv6.cassette.yaml index a3b41b3e1..9e0f6de14 100644 --- a/internal/services/instance/testdata/ip-routed-ipv6.cassette.yaml +++ b/internal/services/instance/testdata/ip-routed-ipv6.cassette.yaml @@ -1,251 +1,198 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 71 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf","type":"routed_ipv6"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 374 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:48 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6e0fde74-7588-46f5-9ca0-c0791b471188 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c36bb486-db4f-472f-ab11-e544c4edc148 - status: 201 Created - code: 201 - duration: 386.473831ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6e0fde74-7588-46f5-9ca0-c0791b471188 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 374 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2c60e00a-0b73-4f07-af7f-0d6aee6166b6 - status: 200 OK - code: 200 - duration: 109.603064ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6e0fde74-7588-46f5-9ca0-c0791b471188 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 374 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9d92f3f7-8440-459a-9083-844d3a8e15cf - status: 200 OK - code: 200 - duration: 126.243751ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6e0fde74-7588-46f5-9ca0-c0791b471188 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 374 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 28b4ab15-ec59-47c5-8646-92d857065d2f - status: 200 OK - code: 200 - duration: 112.252248ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6e0fde74-7588-46f5-9ca0-c0791b471188 - 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:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4d02aa08-77a5-494d-b37c-3fe5d2bd1e54 - status: 204 No Content - code: 204 - duration: 314.093344ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6e0fde74-7588-46f5-9ca0-c0791b471188 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_ip", "resource_id": "6e0fde74-7588-46f5-9ca0-c0791b471188"}' - headers: - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4761fd66-ef46-4d73-aa0a-3ab85539c882 - status: 404 Not Found - code: 404 - duration: 50.554636ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 71 + host: api.scaleway.com + body: "{\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"type\":\"routed_ipv6\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 374 + body: "{\"ip\": {\"id\": \"e5cc1ffc-127d-4888-871f-7b6927753964\", \"address\": null, \"prefix\": \"2001:bc8:710:d34f::/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\": \"78a9bb43-ed05-45ad-bb58-5cae5d417845\"}}" + headers: + Content-Length: + - "374" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/e5cc1ffc-127d-4888-871f-7b6927753964 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9727a8bc-ff7e-449a-b812-64032f55a1a7 + status: 201 Created + code: 201 + duration: 707.850443ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/e5cc1ffc-127d-4888-871f-7b6927753964 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 374 + body: "{\"ip\": {\"id\": \"e5cc1ffc-127d-4888-871f-7b6927753964\", \"address\": null, \"prefix\": \"2001:bc8:710:d34f::/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\": \"78a9bb43-ed05-45ad-bb58-5cae5d417845\"}}" + headers: + Content-Length: + - "374" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d3c98855-5b48-4e9a-b77d-5d87a00bd83d + status: 200 OK + code: 200 + duration: 145.481569ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/e5cc1ffc-127d-4888-871f-7b6927753964 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 374 + body: "{\"ip\": {\"id\": \"e5cc1ffc-127d-4888-871f-7b6927753964\", \"address\": null, \"prefix\": \"2001:bc8:710:d34f::/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\": \"78a9bb43-ed05-45ad-bb58-5cae5d417845\"}}" + headers: + Content-Length: + - "374" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ac0eda23-0397-4317-a8a5-92d306068d72 + status: 200 OK + code: 200 + duration: 138.983239ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/e5cc1ffc-127d-4888-871f-7b6927753964 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 374 + body: "{\"ip\": {\"id\": \"e5cc1ffc-127d-4888-871f-7b6927753964\", \"address\": null, \"prefix\": \"2001:bc8:710:d34f::/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\": \"78a9bb43-ed05-45ad-bb58-5cae5d417845\"}}" + headers: + Content-Length: + - "374" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a8bd5752-69b8-4272-91e0-74826699e869 + status: 200 OK + code: 200 + duration: 132.526657ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/e5cc1ffc-127d-4888-871f-7b6927753964 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4016b963-a9f6-48e2-80db-25465361fc35 + status: 204 No Content + code: 204 + duration: 311.825341ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/e5cc1ffc-127d-4888-871f-7b6927753964 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 139 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_ip\", \"resource_id\": \"e5cc1ffc-127d-4888-871f-7b6927753964\"}" + headers: + Content-Length: + - "139" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 52ca0ed7-4506-4bfe-baa6-91b601111400 + status: 404 Not Found + code: 404 + duration: 55.021772ms diff --git a/internal/services/instance/testdata/ip-tags.cassette.yaml b/internal/services/instance/testdata/ip-tags.cassette.yaml index 460d1191c..fe2604bee 100644 --- a/internal/services/instance/testdata/ip-tags.cassette.yaml +++ b/internal/services/instance/testdata/ip-tags.cassette.yaml @@ -1,458 +1,361 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 50 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 98491379-2dcf-4ebe-abfe-1c64e5b0831a - status: 201 Created - code: 201 - duration: 1.51095805s - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2f7f5251-4c41-4772-bca2-60c7e4ec40d1 - status: 200 OK - code: 200 - duration: 479.020235ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 628e2327-3361-482c-a92b-7e205859881b - status: 200 OK - code: 200 - duration: 169.531544ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 33b7d369-a3e4-4c96-a621-ea8ea2af44ca - status: 200 OK - code: 200 - duration: 113.811662ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 312dcc00-a6c7-420e-9ec8-8878df777e9b - status: 200 OK - code: 200 - duration: 118.914272ms - - id: 5 - 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: '{"tags":["foo","bar"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 377 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cefe1879-1a18-4ab5-9b86-754a50c76c5d - status: 200 OK - code: 200 - duration: 183.223566ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 377 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aa6626ea-ceae-4566-bc52-6a8b96251d23 - status: 200 OK - code: 200 - duration: 115.312227ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 377 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 00ec1416-8e19-4654-936e-5bf6bbab3d0e - status: 200 OK - code: 200 - duration: 105.348196ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 377 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d5482740-5bed-4406-8eeb-b02c1429399f - status: 200 OK - code: 200 - duration: 126.775641ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - 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:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8c1452e0-1c40-4d5c-a2c3-38b7480e6a14 - status: 204 No Content - code: 204 - duration: 343.848056ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_ip", "resource_id": "8f457b60-852b-44a2-9bba-c98d7f41b8c3"}' - headers: - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3ca7abe9-350c-4f9f-bcea-3dc3fe03db6d - status: 404 Not Found - code: 404 - duration: 52.64831ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 50 + host: api.scaleway.com + body: "{\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"997f54e7-eb69-43d2-bdc6-b8c63194d984\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 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) + X-Request-Id: + - 520defa6-4abd-40ae-b392-f9e5c47682bf + status: 201 Created + code: 201 + duration: 694.28ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"997f54e7-eb69-43d2-bdc6-b8c63194d984\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6835822f-3b78-47a9-ae9c-634c0b0db2b0 + status: 200 OK + code: 200 + duration: 121.373285ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"997f54e7-eb69-43d2-bdc6-b8c63194d984\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ceda7b7b-6662-43ca-82ab-a3f86f5af552 + status: 200 OK + code: 200 + duration: 136.094821ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"997f54e7-eb69-43d2-bdc6-b8c63194d984\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 99baadc2-6a11-42dd-9b60-4a0838050c3b + status: 200 OK + code: 200 + duration: 149.098183ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"997f54e7-eb69-43d2-bdc6-b8c63194d984\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4d4c9625-0f11-4249-a1b0-fc5f4b08e185 + status: 200 OK + code: 200 + duration: 107.409471ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"tags\":[\"foo\",\"bar\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 377 + 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\": [\"foo\", \"bar\"], \"ipam_id\": \"997f54e7-eb69-43d2-bdc6-b8c63194d984\"}}" + headers: + Content-Length: + - "377" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4e463427-ccf7-4e28-bc93-04d28c23b507 + status: 200 OK + code: 200 + duration: 170.658286ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 377 + 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\": [\"foo\", \"bar\"], \"ipam_id\": \"997f54e7-eb69-43d2-bdc6-b8c63194d984\"}}" + headers: + Content-Length: + - "377" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 19e01eab-1838-4e8f-b07b-7362a7f704b3 + status: 200 OK + code: 200 + duration: 131.491226ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 377 + 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\": [\"foo\", \"bar\"], \"ipam_id\": \"997f54e7-eb69-43d2-bdc6-b8c63194d984\"}}" + headers: + Content-Length: + - "377" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cf92dc24-dbee-415d-a7f6-bd5ca7525fe0 + status: 200 OK + code: 200 + duration: 113.653164ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 377 + 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\": [\"foo\", \"bar\"], \"ipam_id\": \"997f54e7-eb69-43d2-bdc6-b8c63194d984\"}}" + headers: + Content-Length: + - "377" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7b8a5863-2213-41c4-90fc-2fe6e3319a88 + status: 200 OK + code: 200 + duration: 124.672244ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dac4a229-c36b-4e5b-8508-0a5d84809337 + status: 204 No Content + code: 204 + duration: 307.789942ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 139 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_ip\", \"resource_id\": \"65a60f6b-fa89-4e49-bc25-fced17fa3df3\"}" + headers: + Content-Length: + - "139" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 44dbf450-4329-4537-bc22-6daed3528885 + status: 404 Not Found + code: 404 + duration: 48.598573ms diff --git a/internal/services/instance/testdata/ip-with-zone.cassette.yaml b/internal/services/instance/testdata/ip-with-zone.cassette.yaml index dbcec86f6..2cded5e11 100644 --- a/internal/services/instance/testdata/ip-with-zone.cassette.yaml +++ b/internal/services/instance/testdata/ip-with-zone.cassette.yaml @@ -1,499 +1,393 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 50 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 367 - uncompressed: false - 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: - - "367" - Content-Type: - - application/json - Date: - - 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 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4a55cb6b-3d70-4861-89ed-d8bd67e78945 - status: 201 Created - code: 201 - duration: 1.665939582s - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 367 - uncompressed: false - 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: - - "367" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0b21f911-ce9b-4b83-8abc-f9bb05ac24e2 - status: 200 OK - code: 200 - duration: 114.337836ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 367 - uncompressed: false - 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: - - "367" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a7f5bab0-d481-4a20-98b3-04901f6dc41c - status: 200 OK - code: 200 - duration: 111.297532ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 367 - uncompressed: false - 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: - - "367" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5f919dbe-fc52-4923-a992-02965f0a423f - status: 200 OK - code: 200 - duration: 126.413255ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 367 - uncompressed: false - 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: - - "367" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 43b2a197-55aa-4379-9b44-c49228e9eeb5 - status: 200 OK - code: 200 - duration: 98.763226ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 - method: DELETE - response: - proto: HTTP/2.0 - 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:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2cd85fcb-8987-408b-befb-059abb58170e - status: 204 No Content - code: 204 - duration: 375.289189ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 50 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/nl-ams-1/ips - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 366 - uncompressed: false - 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-Type: - - application/json - Date: - - 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;edge03) - X-Request-Id: - - 79160b2e-f7f1-4b3f-ac38-fef86c9f3bfd - status: 201 Created - code: 201 - duration: 618.61209ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/ips/568e7532-0df9-41a9-987e-26c056725953 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 366 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 57619191-dfad-4005-acda-c40a9a6d36f1 - status: 200 OK - code: 200 - duration: 189.781911ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/ips/568e7532-0df9-41a9-987e-26c056725953 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 366 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 22397cee-e55e-4be3-b935-b54f9914829a - status: 200 OK - code: 200 - duration: 169.57597ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/ips/568e7532-0df9-41a9-987e-26c056725953 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 366 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fd73eaad-0fcf-4ae1-aa7e-35bbadf4dcca - status: 200 OK - code: 200 - duration: 158.640954ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/ips/568e7532-0df9-41a9-987e-26c056725953 - 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:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2fef1370-d0bb-48d4-aad4-32104886b6fe - status: 204 No Content - code: 204 - duration: 479.172782ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/ips/568e7532-0df9-41a9-987e-26c056725953 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 139 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_ip", "resource_id": "568e7532-0df9-41a9-987e-26c056725953"}' - headers: - Content-Length: - - "139" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3b320a24-e3f2-41c7-bca5-8d102512dc43 - status: 404 Not Found - code: 404 - duration: 96.649254ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 50 + host: api.scaleway.com + body: "{\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"b1dd1526-6fa0-448e-ba7b-bb3d7dcebb05\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 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) + X-Request-Id: + - 9c02d81f-2f18-4a72-9b3b-5f6cb541de10 + status: 201 Created + code: 201 + duration: 539.53643ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"b1dd1526-6fa0-448e-ba7b-bb3d7dcebb05\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b6d7cfbb-c3ce-4d9b-86c0-835598a0d6e3 + status: 200 OK + code: 200 + duration: 119.686522ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"b1dd1526-6fa0-448e-ba7b-bb3d7dcebb05\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b001dd4a-c1d5-4b14-a437-ccd900608b9f + status: 200 OK + code: 200 + duration: 152.240507ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"b1dd1526-6fa0-448e-ba7b-bb3d7dcebb05\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d15fd153-6eeb-4ded-86a4-efc0d5802d8f + status: 200 OK + code: 200 + duration: 168.880582ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"b1dd1526-6fa0-448e-ba7b-bb3d7dcebb05\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e409eb82-1bad-42d6-9ee5-7db8703079ef + status: 200 OK + code: 200 + duration: 111.731028ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1d2e96c2-a32c-4233-a580-b2f48aea84ec + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e308385e-8911-4dd8-9a62-8f0c7e12cd6d + status: 204 No Content + code: 204 + duration: 327.179795ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 50 + host: api.scaleway.com + body: "{\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/ips + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 366 + 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\": \"c2c0a9fd-b83b-4036-98ba-eb0b5badb8f4\"}}" + headers: + Content-Length: + - "366" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/nl-ams-1/ips/568e7532-0df9-41a9-987e-26c056725953 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3f95985a-5a2f-4824-9f87-b1e0c7a22851 + status: 201 Created + code: 201 + duration: 662.276191ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/ips/568e7532-0df9-41a9-987e-26c056725953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 366 + 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\": \"c2c0a9fd-b83b-4036-98ba-eb0b5badb8f4\"}}" + headers: + Content-Length: + - "366" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7be162d1-8755-4387-918a-811e475215ee + status: 200 OK + code: 200 + duration: 194.031001ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/ips/568e7532-0df9-41a9-987e-26c056725953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 366 + 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\": \"c2c0a9fd-b83b-4036-98ba-eb0b5badb8f4\"}}" + headers: + Content-Length: + - "366" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7127aa9c-2146-4855-b9eb-37fd388127b8 + status: 200 OK + code: 200 + duration: 177.911403ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/ips/568e7532-0df9-41a9-987e-26c056725953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 366 + 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\": \"c2c0a9fd-b83b-4036-98ba-eb0b5badb8f4\"}}" + headers: + Content-Length: + - "366" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1c57e5e1-f465-4b1d-afff-ec4cba8edd43 + status: 200 OK + code: 200 + duration: 149.030456ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/ips/568e7532-0df9-41a9-987e-26c056725953 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2094a8bc-beab-44f8-8526-0c4d20d3ebeb + status: 204 No Content + code: 204 + duration: 489.793113ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/ips/568e7532-0df9-41a9-987e-26c056725953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 139 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_ip\", \"resource_id\": \"568e7532-0df9-41a9-987e-26c056725953\"}" + headers: + Content-Length: + - "139" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5d42508a-0327-4747-8ff8-806cb952de4e + status: 404 Not Found + code: 404 + duration: 82.914995ms diff --git a/internal/services/instance/testdata/placement-group-basic.cassette.yaml b/internal/services/instance/testdata/placement-group-basic.cassette.yaml index 9092572c4..53d705126 100644 --- a/internal/services/instance/testdata/placement-group-basic.cassette.yaml +++ b/internal/services/instance/testdata/placement-group-basic.cassette.yaml @@ -1,665 +1,524 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 139 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-pg-lucid-blackwell","project":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_type":"max_availability"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 327 - uncompressed: false - 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: - - "327" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a9b022c7-1e5c-4c59-9986-6ae54cb65008 - status: 201 Created - code: 201 - duration: 213.416595ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 327 - uncompressed: false - 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: - - "327" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2d90bb02-4c47-49a1-8631-7a4b7c7dac75 - status: 200 OK - code: 200 - duration: 86.833888ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 327 - uncompressed: false - 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: - - "327" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5e0d90e7-9418-4244-a94c-25ce3fd09395 - status: 200 OK - code: 200 - duration: 130.528597ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 327 - uncompressed: false - 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: - - "327" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ab094cf0-f899-4b03-83bf-ccfe9a6b098f - status: 200 OK - code: 200 - duration: 94.36406ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 327 - uncompressed: false - 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: - - "327" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7389c4f2-e8d4-4b6e-8995-9707f9c6d42a - status: 200 OK - code: 200 - duration: 108.719374ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 64 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"tags":[],"policy_mode":"enforced","policy_type":"low_latency"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 322 - uncompressed: false - 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: - - "322" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a51122dd-d952-413e-b24e-bcff64bea917 - status: 200 OK - code: 200 - duration: 136.04386ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 322 - uncompressed: false - 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: - - "322" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 362277fa-5052-4439-9ac6-503ba0a0aacf - status: 200 OK - code: 200 - duration: 103.542283ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 322 - uncompressed: false - 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: - - "322" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e331f0e6-4cfd-4d0c-8e8f-de4408c727d1 - status: 200 OK - code: 200 - duration: 88.879543ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 322 - uncompressed: false - 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: - - "322" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 15d46ddc-7ff5-41d5-a54d-7fc0e69f0e03 - status: 200 OK - code: 200 - duration: 107.053579ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 322 - uncompressed: false - 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: - - "322" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b3a6615a-6b90-43e4-92d5-816d59d5c542 - status: 200 OK - code: 200 - duration: 91.235921ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 69 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"tags":[],"policy_mode":"optional","policy_type":"max_availability"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 327 - uncompressed: false - 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: - - "327" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e3604cf3-c91b-4548-9577-80b1a41804bc - status: 200 OK - code: 200 - duration: 161.923675ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 327 - uncompressed: false - 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: - - "327" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e4fe3c0e-fcbb-41b6-baaf-295dafa75d2b - status: 200 OK - code: 200 - duration: 102.031899ms - - 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/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 327 - uncompressed: false - 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: - - "327" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8cc36239-0f80-42d5-83c1-a7114ab02839 - status: 200 OK - code: 200 - duration: 93.833368ms - - 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/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 327 - uncompressed: false - 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: - - "327" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cebcba3d-df94-4f37-b300-d064d825b6bd - status: 200 OK - code: 200 - duration: 113.654042ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 - 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:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d2128d9c-d8cb-4463-a525-94e496f1d8ef - status: 204 No Content - code: 204 - duration: 162.045083ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fe18f7a1-278d-4765-af09-a728064e8b62 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 152 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 87c41fdc-2369-411c-a290-a10e5d079ef1 - status: 404 Not Found - code: 404 - duration: 40.531283ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 137 + host: api.scaleway.com + body: "{\"name\":\"tf-pg-funny-mclaren\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"policy_mode\":\"optional\",\"policy_type\":\"max_availability\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 325 + body: "{\"placement_group\": {\"id\": \"3ca907f8-fcb0-4b6c-838d-92646937ccfe\", \"name\": \"tf-pg-funny-mclaren\", \"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: + - "325" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/3ca907f8-fcb0-4b6c-838d-92646937ccfe + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 83825e54-d2cd-4308-9c77-ecf98723be32 + status: 201 Created + code: 201 + duration: 220.055765ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/3ca907f8-fcb0-4b6c-838d-92646937ccfe + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 325 + body: "{\"placement_group\": {\"id\": \"3ca907f8-fcb0-4b6c-838d-92646937ccfe\", \"name\": \"tf-pg-funny-mclaren\", \"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: + - "325" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5e6d3247-814c-4ea1-9860-ea87eec2eb19 + status: 200 OK + code: 200 + duration: 133.036052ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/3ca907f8-fcb0-4b6c-838d-92646937ccfe + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 325 + body: "{\"placement_group\": {\"id\": \"3ca907f8-fcb0-4b6c-838d-92646937ccfe\", \"name\": \"tf-pg-funny-mclaren\", \"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: + - "325" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9ddb65cb-7c62-405d-bcad-6d33c3a88449 + status: 200 OK + code: 200 + duration: 119.839417ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/3ca907f8-fcb0-4b6c-838d-92646937ccfe + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 325 + body: "{\"placement_group\": {\"id\": \"3ca907f8-fcb0-4b6c-838d-92646937ccfe\", \"name\": \"tf-pg-funny-mclaren\", \"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: + - "325" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d061b8ca-7872-48ea-8207-0b2a4b2c9887 + status: 200 OK + code: 200 + duration: 125.403574ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/3ca907f8-fcb0-4b6c-838d-92646937ccfe + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 325 + body: "{\"placement_group\": {\"id\": \"3ca907f8-fcb0-4b6c-838d-92646937ccfe\", \"name\": \"tf-pg-funny-mclaren\", \"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: + - "325" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 17780997-36c8-4d8e-b81f-65f27903962f + status: 200 OK + code: 200 + duration: 178.582007ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 64 + host: api.scaleway.com + body: "{\"tags\":[],\"policy_mode\":\"enforced\",\"policy_type\":\"low_latency\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/3ca907f8-fcb0-4b6c-838d-92646937ccfe + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 320 + body: "{\"placement_group\": {\"id\": \"3ca907f8-fcb0-4b6c-838d-92646937ccfe\", \"name\": \"tf-pg-funny-mclaren\", \"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: + - "320" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bf68ee75-8d29-47a9-9c3e-c8060d41bdbe + status: 200 OK + code: 200 + duration: 178.303395ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/3ca907f8-fcb0-4b6c-838d-92646937ccfe + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 320 + body: "{\"placement_group\": {\"id\": \"3ca907f8-fcb0-4b6c-838d-92646937ccfe\", \"name\": \"tf-pg-funny-mclaren\", \"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: + - "320" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b667882d-ce16-4693-b5a3-f556b21e9d1f + status: 200 OK + code: 200 + duration: 102.373926ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/3ca907f8-fcb0-4b6c-838d-92646937ccfe + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 320 + body: "{\"placement_group\": {\"id\": \"3ca907f8-fcb0-4b6c-838d-92646937ccfe\", \"name\": \"tf-pg-funny-mclaren\", \"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: + - "320" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5f461d39-f1ea-47d7-b103-1b93bb539bce + status: 200 OK + code: 200 + duration: 97.03482ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/3ca907f8-fcb0-4b6c-838d-92646937ccfe + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 320 + body: "{\"placement_group\": {\"id\": \"3ca907f8-fcb0-4b6c-838d-92646937ccfe\", \"name\": \"tf-pg-funny-mclaren\", \"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: + - "320" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 58c205f1-361b-4e52-b6ac-2e06e6413987 + status: 200 OK + code: 200 + duration: 116.422087ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/3ca907f8-fcb0-4b6c-838d-92646937ccfe + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 320 + body: "{\"placement_group\": {\"id\": \"3ca907f8-fcb0-4b6c-838d-92646937ccfe\", \"name\": \"tf-pg-funny-mclaren\", \"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: + - "320" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 88697a91-cdb8-4d77-8b1a-3619533b49a8 + status: 200 OK + code: 200 + duration: 113.132908ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 69 + host: api.scaleway.com + body: "{\"tags\":[],\"policy_mode\":\"optional\",\"policy_type\":\"max_availability\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/3ca907f8-fcb0-4b6c-838d-92646937ccfe + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 325 + body: "{\"placement_group\": {\"id\": \"3ca907f8-fcb0-4b6c-838d-92646937ccfe\", \"name\": \"tf-pg-funny-mclaren\", \"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: + - "325" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5edaad35-ec94-45ed-8430-ea3d017ab24e + status: 200 OK + code: 200 + duration: 160.620185ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/3ca907f8-fcb0-4b6c-838d-92646937ccfe + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 325 + body: "{\"placement_group\": {\"id\": \"3ca907f8-fcb0-4b6c-838d-92646937ccfe\", \"name\": \"tf-pg-funny-mclaren\", \"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: + - "325" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6921cf92-1ac1-4830-aa0d-64ef92d14e57 + status: 200 OK + code: 200 + duration: 139.070352ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/3ca907f8-fcb0-4b6c-838d-92646937ccfe + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 325 + body: "{\"placement_group\": {\"id\": \"3ca907f8-fcb0-4b6c-838d-92646937ccfe\", \"name\": \"tf-pg-funny-mclaren\", \"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: + - "325" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aa2c5299-8994-46ef-85bd-c70d316b0ccd + status: 200 OK + code: 200 + duration: 116.06101ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/3ca907f8-fcb0-4b6c-838d-92646937ccfe + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 325 + body: "{\"placement_group\": {\"id\": \"3ca907f8-fcb0-4b6c-838d-92646937ccfe\", \"name\": \"tf-pg-funny-mclaren\", \"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: + - "325" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2819b683-c36a-4c2d-a482-66d452d3ebfb + status: 200 OK + code: 200 + duration: 108.657292ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/3ca907f8-fcb0-4b6c-838d-92646937ccfe + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 26d484b9-4b30-4293-bb0e-a37e860a80a4 + status: 204 No Content + code: 204 + duration: 151.200025ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/3ca907f8-fcb0-4b6c-838d-92646937ccfe + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 152 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_placement_group\", \"resource_id\": \"3ca907f8-fcb0-4b6c-838d-92646937ccfe\"}" + headers: + Content-Length: + - "152" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 54db6d76-555b-4850-8069-93dd9434c729 + status: 404 Not Found + code: 404 + duration: 51.507159ms diff --git a/internal/services/instance/testdata/placement-group-rename.cassette.yaml b/internal/services/instance/testdata/placement-group-rename.cassette.yaml index 9331b1237..1576ed251 100644 --- a/internal/services/instance/testdata/placement-group-rename.cassette.yaml +++ b/internal/services/instance/testdata/placement-group-rename.cassette.yaml @@ -1,1896 +1,1500 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 116 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"foo","project":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_type":"low_latency"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 304 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7257c159-3329-489b-8a0f-ead74fd8fb89 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 610a7d83-5853-4b65-97ad-05a445b3cf6d - status: 201 Created - code: 201 - duration: 200.784219ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7257c159-3329-489b-8a0f-ead74fd8fb89 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 304 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 964840ae-875b-4e04-add0-d7a87591612a - status: 200 OK - code: 200 - duration: 108.876114ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3bdedfda-1b59-42f0-be85-98520878d0c7 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 43.244361ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 46d7094f-bd9c-40cf-b1ee-58440912f8cf - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 48.004962ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 201c2ba2-2de1-42c5-b6ea-6d8d8ca6eb70 - status: 200 OK - code: 200 - duration: 112.599175ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 294 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2024 - uncompressed: false - 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: - - "2024" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:13 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bbb50db2-9f98-45b8-b9f8-3bce58ba225d - status: 201 Created - code: 201 - duration: 1.215572535s - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2070 - uncompressed: false - 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: - - "2070" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2a6fa3e6-4866-4e90-9653-d0f7e02f0850 - status: 200 OK - code: 200 - duration: 135.732492ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2024 - uncompressed: false - 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: - - "2024" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ce8e660d-afdc-4f24-a557-2e58a049c541 - status: 200 OK - code: 200 - duration: 151.75964ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cc9edf5f-1d85-4fd6-bbce-0df94e8ed2aa - status: 200 OK - code: 200 - duration: 88.299017ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweron"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:14 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1348b148-fc2e-487b-8c42-fb8e00d94346 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3f81d3ae-c89e-43a8-9786-252d0237ba71 - status: 202 Accepted - code: 202 - duration: 231.102822ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2092 - uncompressed: false - 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: - - "2092" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a29f0f6b-bd31-418d-ac9c-629bdc748eed - status: 200 OK - code: 200 - duration: 157.83492ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2227 - uncompressed: false - 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: - - "2227" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1b7d16a1-7e23-4cbd-a951-9083cd2c857b - status: 200 OK - code: 200 - duration: 149.728926ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2181 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 20ed384f-499d-4097-a574-dee3f67bd7b4 - status: 200 OK - code: 200 - duration: 152.877183ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8 - 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": "8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3b860b03-0884-444d-a996-1b48db74eb77 - status: 404 Not Found - code: 404 - duration: 30.786457ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3e2e61d5-77e5-45a8-840a-93d061108791 - status: 200 OK - code: 200 - duration: 96.52478ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b/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:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 983fe91c-92e9-46b2-b825-2db8032f3ae5 - status: 200 OK - code: 200 - duration: 115.485995ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b/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:54:20 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 54706d1c-8ddf-409b-bf92-f7671023f1dd - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 99.074789ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7257c159-3329-489b-8a0f-ead74fd8fb89 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 304 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - af20bb04-9dc5-446c-9514-22119233b4b4 - status: 200 OK - code: 200 - duration: 87.184705ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7257c159-3329-489b-8a0f-ead74fd8fb89 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 304 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b9043948-c76e-4978-8deb-d01e041b6a16 - status: 200 OK - code: 200 - duration: 112.92119ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2181 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4a227f83-dd1a-498a-a8ad-f41a390478f5 - status: 200 OK - code: 200 - duration: 143.804588ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8 - 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": "8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3158a48c-827c-48fa-b617-2d82320631f4 - status: 404 Not Found - code: 404 - duration: 35.112496ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1562f528-63e9-4c20-bd44-eff4c6cbdcfa - status: 200 OK - code: 200 - duration: 84.974984ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b/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:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 61b4ab9e-ead2-430d-b047-30cd05e4546f - status: 200 OK - code: 200 - duration: 98.42314ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b/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:54:21 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 138515e7-6d24-457a-ab0d-2c8ea4a76e61 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 103.07584ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7257c159-3329-489b-8a0f-ead74fd8fb89 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 304 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ae75c941-7040-4d6f-ac55-707c3218055e - status: 200 OK - code: 200 - duration: 136.074264ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2227 - uncompressed: false - 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: - - "2227" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5c0c8ed1-4d92-48ab-8e39-009aa3066884 - status: 200 OK - code: 200 - duration: 151.246484ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8 - 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": "8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b63ba41a-7eba-44e6-a936-14d4b3784253 - status: 404 Not Found - code: 404 - duration: 23.701539ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c3972993-c934-4e0a-85dd-ae199d5957f6 - status: 200 OK - code: 200 - duration: 99.129531ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b/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:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1cdc3489-006c-4549-8e72-2c958321271b - status: 200 OK - code: 200 - duration: 99.944565ms - - 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/ae56c53b-53fa-4198-9f50-0eea0b0ad91b/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:54:21 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3630afc5-bab7-4e85-8d7a-9642877c60ce - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 97.51907ms - - id: 30 - 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/ae56c53b-53fa-4198-9f50-0eea0b0ad91b - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1947 - uncompressed: false - 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: - - "1947" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f306d703-1218-4274-a8b0-7b00029216d8 - status: 200 OK - code: 200 - duration: 218.271785ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae56c53b-53fa-4198-9f50-0eea0b0ad91b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1947 - uncompressed: false - 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: - - "1947" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 29a45a49-0c1b-4927-915f-e48b3ad00e15 - status: 200 OK - code: 200 - duration: 121.799832ms - - 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/ae56c53b-53fa-4198-9f50-0eea0b0ad91b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1947 - uncompressed: false - 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: - - "1947" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2673bfd0-bd7b-49f6-90cd-9bab92d64b64 - status: 200 OK - code: 200 - duration: 137.96507ms - - id: 33 - 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/ae56c53b-53fa-4198-9f50-0eea0b0ad91b/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7cf8a1cd-0e20-42a2-9f11-51584a357b18 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 83ea9972-2b8d-464d-afce-36cd79c0aff8 - status: 202 Accepted - code: 202 - duration: 301.399795ms - - 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/ae56c53b-53fa-4198-9f50-0eea0b0ad91b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1910 - uncompressed: false - 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: - - "1910" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 260baeff-12f6-406e-abd5-dd0e2b18e549 - status: 200 OK - code: 200 - duration: 148.134455ms - - 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/ae56c53b-53fa-4198-9f50-0eea0b0ad91b - 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": "ae56c53b-53fa-4198-9f50-0eea0b0ad91b"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b7a066c9-b11d-40d0-a616-e8d36e9caf06 - status: 404 Not Found - code: 404 - duration: 56.627739ms - - 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/8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8 - 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": "8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1455f125-9b21-46a7-b0c1-7e49dd026012 - status: 404 Not Found - code: 404 - duration: 32.084615ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 23bf6689-eb0e-4f84-bfb3-fb43e969be29 - status: 200 OK - code: 200 - duration: 89.880959ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8f51b186-aa2f-4de1-9fe6-0fad0e1f01b8 - 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:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f9e9b101-3d62-4d23-998d-4f44a5be6a0d - status: 204 No Content - code: 204 - duration: 170.440528ms - - id: 39 - 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: '{"name":"bar","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/placement_groups/7257c159-3329-489b-8a0f-ead74fd8fb89 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 304 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d48bc18c-6b06-4e79-8b3e-3d563d10cebc - status: 200 OK - code: 200 - duration: 123.810965ms - - 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/placement_groups/7257c159-3329-489b-8a0f-ead74fd8fb89 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 304 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e54a04db-56ac-4ba3-9e6e-804a937972fe - status: 200 OK - code: 200 - duration: 131.937391ms - - 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/placement_groups/7257c159-3329-489b-8a0f-ead74fd8fb89 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 304 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bcab6487-458d-4d37-9cf7-17b350d0bb24 - status: 200 OK - code: 200 - duration: 108.583962ms - - 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/placement_groups/7257c159-3329-489b-8a0f-ead74fd8fb89 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 304 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 78296d1a-6320-48c2-96e9-aa909fcf07f0 - status: 200 OK - code: 200 - duration: 115.98406ms - - 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/placement_groups/7257c159-3329-489b-8a0f-ead74fd8fb89 - 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:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ea59ae6c-c0fe-4f00-aeaf-e20cfc041fcf - status: 204 No Content - code: 204 - duration: 148.515881ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7257c159-3329-489b-8a0f-ead74fd8fb89 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 152 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d551492f-8582-4ef7-b12e-3ec61e4dc146 - status: 404 Not Found - code: 404 - duration: 38.955704ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 116 + host: api.scaleway.com + body: "{\"name\":\"foo\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"policy_mode\":\"enforced\",\"policy_type\":\"low_latency\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 304 + body: "{\"placement_group\": {\"id\": \"66434be6-9931-4f0b-9ea5-e68a9e81d533\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:13 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/66434be6-9931-4f0b-9ea5-e68a9e81d533 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b4114f66-fb49-4b58-97e9-422ab5d79cfb + status: 201 Created + code: 201 + duration: 228.477663ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/66434be6-9931-4f0b-9ea5-e68a9e81d533 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 304 + body: "{\"placement_group\": {\"id\": \"66434be6-9931-4f0b-9ea5-e68a9e81d533\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 96d46f11-2c6a-431a-b3d4-3642f09f83d2 + status: 200 OK + code: 200 + duration: 104.672448ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:13 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1066d8e4-a10f-4d0b-9183-ccbf89e16f6e + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 64.41224ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:13 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 514224b8-99a3-405d-af02-2b9e79348b6e + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 39.116792ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6ea66c92-adf2-4fbd-82ee-1c90033f9de5 + status: 200 OK + code: 200 + duration: 54.790833ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 292 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-hopeful-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\":\"66434be6-9931-4f0b-9ea5-e68a9e81d533\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2066 + body: "{\"server\": {\"id\": \"5f476e48-66cc-4bd2-8871-b278b9f1292c\", \"name\": \"tf-srv-hopeful-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-hopeful-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\": \"3d4c1acd-f2eb-488d-9172-78460522d345\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:cf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:14.492463+00:00\", \"modification_date\": \"2025-10-30T15:42:14.492463+00: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\": \"66434be6-9931-4f0b-9ea5-e68a9e81d533\", \"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: + - "2066" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:14 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d6faac5d-adcc-4bf3-b285-46fcdee3ade1 + status: 201 Created + code: 201 + duration: 1.245375924s +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2020 + body: "{\"server\": {\"id\": \"5f476e48-66cc-4bd2-8871-b278b9f1292c\", \"name\": \"tf-srv-hopeful-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-hopeful-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\": \"3d4c1acd-f2eb-488d-9172-78460522d345\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:cf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:14.492463+00:00\", \"modification_date\": \"2025-10-30T15:42:14.492463+00: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\": \"66434be6-9931-4f0b-9ea5-e68a9e81d533\", \"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: + - "2020" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b7f87a9a-c707-4fac-af17-e310657d953d + status: 200 OK + code: 200 + duration: 177.845151ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2020 + body: "{\"server\": {\"id\": \"5f476e48-66cc-4bd2-8871-b278b9f1292c\", \"name\": \"tf-srv-hopeful-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-hopeful-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\": \"3d4c1acd-f2eb-488d-9172-78460522d345\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:cf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:14.492463+00:00\", \"modification_date\": \"2025-10-30T15:42:14.492463+00: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\": \"66434be6-9931-4f0b-9ea5-e68a9e81d533\", \"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: + - "2020" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5b1313fe-79d9-41c1-ad16-1b5a90a4a8c9 + status: 200 OK + code: 200 + duration: 176.21367ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d4c1acd-f2eb-488d-9172-78460522d345 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"3d4c1acd-f2eb-488d-9172-78460522d345\", \"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-30T15:42:14.613760Z\", \"updated_at\":\"2025-10-30T15:42:14.613760Z\", \"references\":[{\"id\":\"cead9b42-13eb-4417-8932-37b55a12db73\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"5f476e48-66cc-4bd2-8871-b278b9f1292c\", \"created_at\":\"2025-10-30T15:42:14.613760Z\", \"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: + - Thu, 30 Oct 2025 15:42:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ed916f13-97e4-4188-b4d5-e46a2adb26ef + status: 200 OK + code: 200 + duration: 73.363971ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"690982f2-ab94-417c-b433-598c3bd4e2be\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c/action\", \"href_result\": \"/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c\", \"started_at\": \"2025-10-30T15:42:15.631911+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:15 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/690982f2-ab94-417c-b433-598c3bd4e2be + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - faeba882-fa1d-48d2-9536-8479f9916335 + status: 202 Accepted + code: 202 + duration: 301.14564ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2042 + body: "{\"server\": {\"id\": \"5f476e48-66cc-4bd2-8871-b278b9f1292c\", \"name\": \"tf-srv-hopeful-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-hopeful-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\": \"3d4c1acd-f2eb-488d-9172-78460522d345\", \"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:6c:cf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:14.492463+00:00\", \"modification_date\": \"2025-10-30T15:42:15.402575+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\": \"66434be6-9931-4f0b-9ea5-e68a9e81d533\", \"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: + - "2042" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 124be8d2-50cb-4f94-92ff-31f9d52f5478 + status: 200 OK + code: 200 + duration: 131.008557ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2176 + body: "{\"server\": {\"id\": \"5f476e48-66cc-4bd2-8871-b278b9f1292c\", \"name\": \"tf-srv-hopeful-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-hopeful-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\": \"3d4c1acd-f2eb-488d-9172-78460522d345\", \"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:6c:cf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:14.492463+00:00\", \"modification_date\": \"2025-10-30T15:42:18.262579+00:00\", \"bootscript\": 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\": \"702\", \"node_id\": \"36\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": {\"id\": \"66434be6-9931-4f0b-9ea5-e68a9e81d533\", \"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: + - "2176" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d6a7cca6-8ae0-42c7-8398-359ae5e2455a + status: 200 OK + code: 200 + duration: 144.871963ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2176 + body: "{\"server\": {\"id\": \"5f476e48-66cc-4bd2-8871-b278b9f1292c\", \"name\": \"tf-srv-hopeful-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-hopeful-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\": \"3d4c1acd-f2eb-488d-9172-78460522d345\", \"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:6c:cf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:14.492463+00:00\", \"modification_date\": \"2025-10-30T15:42:18.262579+00:00\", \"bootscript\": 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\": \"702\", \"node_id\": \"36\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": {\"id\": \"66434be6-9931-4f0b-9ea5-e68a9e81d533\", \"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: + - "2176" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0d55e99c-ccf2-4631-a736-1fe50fa05cfc + status: 200 OK + code: 200 + duration: 170.117838ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d4c1acd-f2eb-488d-9172-78460522d345 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"3d4c1acd-f2eb-488d-9172-78460522d345\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4da4398c-dfaf-4d94-aad2-91a46c6221c1 + status: 404 Not Found + code: 404 + duration: 28.613181ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d4c1acd-f2eb-488d-9172-78460522d345 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"3d4c1acd-f2eb-488d-9172-78460522d345\", \"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-30T15:42:14.613760Z\", \"updated_at\":\"2025-10-30T15:42:14.613760Z\", \"references\":[{\"id\":\"cead9b42-13eb-4417-8932-37b55a12db73\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"5f476e48-66cc-4bd2-8871-b278b9f1292c\", \"created_at\":\"2025-10-30T15:42:14.613760Z\", \"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: + - Thu, 30 Oct 2025 15:42:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3355c2fb-8c15-4f19-ab4b-c0d921392e50 + status: 200 OK + code: 200 + duration: 94.744608ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3330caef-9817-42f8-9168-074e0a17f649 + status: 200 OK + code: 200 + duration: 87.483136ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:21 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 14fbd1c6-677f-4f2e-a28f-e38b5eb09511 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 96.620165ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/66434be6-9931-4f0b-9ea5-e68a9e81d533 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 304 + body: "{\"placement_group\": {\"id\": \"66434be6-9931-4f0b-9ea5-e68a9e81d533\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bbd13358-dc5a-463d-84bd-f72725ca47b8 + status: 200 OK + code: 200 + duration: 103.280098ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/66434be6-9931-4f0b-9ea5-e68a9e81d533 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 304 + body: "{\"placement_group\": {\"id\": \"66434be6-9931-4f0b-9ea5-e68a9e81d533\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e94d2a60-f3ad-4f33-b335-41b7634428f6 + status: 200 OK + code: 200 + duration: 120.279765ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2176 + body: "{\"server\": {\"id\": \"5f476e48-66cc-4bd2-8871-b278b9f1292c\", \"name\": \"tf-srv-hopeful-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-hopeful-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\": \"3d4c1acd-f2eb-488d-9172-78460522d345\", \"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:6c:cf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:14.492463+00:00\", \"modification_date\": \"2025-10-30T15:42:18.262579+00:00\", \"bootscript\": 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\": \"702\", \"node_id\": \"36\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": {\"id\": \"66434be6-9931-4f0b-9ea5-e68a9e81d533\", \"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: + - "2176" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7ad8fcf1-e9fd-4cc8-a63d-e56327aa63b6 + status: 200 OK + code: 200 + duration: 154.863195ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d4c1acd-f2eb-488d-9172-78460522d345 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"3d4c1acd-f2eb-488d-9172-78460522d345\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cdc489ca-6b7b-43ea-bbfe-7351206f268a + status: 404 Not Found + code: 404 + duration: 30.005062ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d4c1acd-f2eb-488d-9172-78460522d345 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"3d4c1acd-f2eb-488d-9172-78460522d345\", \"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-30T15:42:14.613760Z\", \"updated_at\":\"2025-10-30T15:42:14.613760Z\", \"references\":[{\"id\":\"cead9b42-13eb-4417-8932-37b55a12db73\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"5f476e48-66cc-4bd2-8871-b278b9f1292c\", \"created_at\":\"2025-10-30T15:42:14.613760Z\", \"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: + - Thu, 30 Oct 2025 15:42:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7cccc458-25f8-4c8e-ab5d-4428b5260ca2 + status: 200 OK + code: 200 + duration: 77.175291ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b66857a5-6715-4766-8b8b-6185ace9acf5 + status: 200 OK + code: 200 + duration: 107.661717ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:22 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5be7ebd8-2292-46e6-a41d-e3a63ef632de + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 103.150735ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/66434be6-9931-4f0b-9ea5-e68a9e81d533 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 304 + body: "{\"placement_group\": {\"id\": \"66434be6-9931-4f0b-9ea5-e68a9e81d533\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9c7fc661-781f-4b24-93b3-870828136e2b + status: 200 OK + code: 200 + duration: 97.781113ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2176 + body: "{\"server\": {\"id\": \"5f476e48-66cc-4bd2-8871-b278b9f1292c\", \"name\": \"tf-srv-hopeful-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-hopeful-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\": \"3d4c1acd-f2eb-488d-9172-78460522d345\", \"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:6c:cf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:14.492463+00:00\", \"modification_date\": \"2025-10-30T15:42:18.262579+00:00\", \"bootscript\": 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\": \"702\", \"node_id\": \"36\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": {\"id\": \"66434be6-9931-4f0b-9ea5-e68a9e81d533\", \"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: + - "2176" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6bd79215-b561-49e6-9505-084baf5aee80 + status: 200 OK + code: 200 + duration: 136.689536ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d4c1acd-f2eb-488d-9172-78460522d345 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"3d4c1acd-f2eb-488d-9172-78460522d345\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eef4006f-7249-4b9c-9e5d-9fe2f12fd28f + status: 404 Not Found + code: 404 + duration: 29.601885ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d4c1acd-f2eb-488d-9172-78460522d345 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"3d4c1acd-f2eb-488d-9172-78460522d345\", \"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-30T15:42:14.613760Z\", \"updated_at\":\"2025-10-30T15:42:14.613760Z\", \"references\":[{\"id\":\"cead9b42-13eb-4417-8932-37b55a12db73\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"5f476e48-66cc-4bd2-8871-b278b9f1292c\", \"created_at\":\"2025-10-30T15:42:14.613760Z\", \"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: + - Thu, 30 Oct 2025 15:42:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7233b8b7-b6e1-4517-ad35-c7be71733e9f + status: 200 OK + code: 200 + duration: 96.630705ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c1dc21af-7fe5-4188-b73a-82ebcaa42963 + status: 200 OK + code: 200 + duration: 129.914848ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:23 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - de6da334-adf4-42a2-8f60-b8a9b7d5b146 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 122.284165ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 24 + host: api.scaleway.com + body: "{\"placement_group\":null}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1942 + body: "{\"server\": {\"id\": \"5f476e48-66cc-4bd2-8871-b278b9f1292c\", \"name\": \"tf-srv-hopeful-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-hopeful-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\": \"3d4c1acd-f2eb-488d-9172-78460522d345\", \"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:6c:cf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:14.492463+00:00\", \"modification_date\": \"2025-10-30T15:42:23.230228+00:00\", \"bootscript\": 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\": \"702\", \"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: + - "1942" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c2df8c6c-a7d8-4ba3-98f7-9f6acc2ebf2f + status: 200 OK + code: 200 + duration: 257.779781ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1896 + body: "{\"server\": {\"id\": \"5f476e48-66cc-4bd2-8871-b278b9f1292c\", \"name\": \"tf-srv-hopeful-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-hopeful-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\": \"3d4c1acd-f2eb-488d-9172-78460522d345\", \"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:6c:cf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:14.492463+00:00\", \"modification_date\": \"2025-10-30T15:42:23.230228+00:00\", \"bootscript\": 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\": \"702\", \"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: + - "1896" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 52eaed80-97c9-499c-ba3f-f13cd8930beb + status: 200 OK + code: 200 + duration: 135.7696ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1942 + body: "{\"server\": {\"id\": \"5f476e48-66cc-4bd2-8871-b278b9f1292c\", \"name\": \"tf-srv-hopeful-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-hopeful-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\": \"3d4c1acd-f2eb-488d-9172-78460522d345\", \"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:6c:cf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:14.492463+00:00\", \"modification_date\": \"2025-10-30T15:42:23.230228+00:00\", \"bootscript\": 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\": \"702\", \"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: + - "1942" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0c5ed14b-5a94-4b75-838c-17d7b4861469 + status: 200 OK + code: 200 + duration: 167.527741ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"dbdf2b34-0513-4e99-9789-4ec4a726f495\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c/action\", \"href_result\": \"/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c\", \"started_at\": \"2025-10-30T15:42:23.982100+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:24 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/dbdf2b34-0513-4e99-9789-4ec4a726f495 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9fdf86ff-effc-43c4-b9ea-9e3b925cb68f + status: 202 Accepted + code: 202 + duration: 311.645691ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1859 + body: "{\"server\": {\"id\": \"5f476e48-66cc-4bd2-8871-b278b9f1292c\", \"name\": \"tf-srv-hopeful-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-hopeful-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\": \"3d4c1acd-f2eb-488d-9172-78460522d345\", \"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:6c:cf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:14.492463+00:00\", \"modification_date\": \"2025-10-30T15:42:23.737134+00:00\", \"bootscript\": 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\": \"702\", \"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: + - "1859" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f5154b0d-497c-4408-ab40-1ffb788a4206 + status: 200 OK + code: 200 + duration: 153.132079ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5f476e48-66cc-4bd2-8871-b278b9f1292c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"5f476e48-66cc-4bd2-8871-b278b9f1292c\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dda0f25d-2565-45e5-bd4c-2440663ef9c6 + status: 404 Not Found + code: 404 + duration: 59.286407ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d4c1acd-f2eb-488d-9172-78460522d345 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"3d4c1acd-f2eb-488d-9172-78460522d345\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a5aa223a-e884-43ee-b960-fc73905ceea8 + status: 404 Not Found + code: 404 + duration: 28.412104ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d4c1acd-f2eb-488d-9172-78460522d345 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"3d4c1acd-f2eb-488d-9172-78460522d345\", \"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-30T15:42:14.613760Z\", \"updated_at\":\"2025-10-30T15:42:25.510667Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:25.510667Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 119c1b16-4e57-4423-901b-86b4ab153b31 + status: 200 OK + code: 200 + duration: 103.426294ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d4c1acd-f2eb-488d-9172-78460522d345 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bfd9b47e-1772-45cd-85db-679adaa40054 + status: 204 No Content + code: 204 + duration: 165.646554ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 24 + host: api.scaleway.com + body: "{\"name\":\"bar\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/66434be6-9931-4f0b-9ea5-e68a9e81d533 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 304 + body: "{\"placement_group\": {\"id\": \"66434be6-9931-4f0b-9ea5-e68a9e81d533\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a5ef72d5-0d26-48b6-a4ee-7b5d3410e7ec + status: 200 OK + code: 200 + duration: 164.832347ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/66434be6-9931-4f0b-9ea5-e68a9e81d533 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 304 + body: "{\"placement_group\": {\"id\": \"66434be6-9931-4f0b-9ea5-e68a9e81d533\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 37a32bc1-4911-448b-856b-138ba86a0eff + status: 200 OK + code: 200 + duration: 127.944905ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/66434be6-9931-4f0b-9ea5-e68a9e81d533 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 304 + body: "{\"placement_group\": {\"id\": \"66434be6-9931-4f0b-9ea5-e68a9e81d533\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ee81f497-96d5-4ddb-a2de-27a628ac2686 + status: 200 OK + code: 200 + duration: 113.587814ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/66434be6-9931-4f0b-9ea5-e68a9e81d533 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 304 + body: "{\"placement_group\": {\"id\": \"66434be6-9931-4f0b-9ea5-e68a9e81d533\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e24cbabb-5b88-419f-b8c1-0a6652d0051b + status: 200 OK + code: 200 + duration: 129.741445ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/66434be6-9931-4f0b-9ea5-e68a9e81d533 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7528ccf9-fcd7-4bea-a065-b46db5e0b0eb + status: 204 No Content + code: 204 + duration: 166.674323ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/66434be6-9931-4f0b-9ea5-e68a9e81d533 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 152 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_placement_group\", \"resource_id\": \"66434be6-9931-4f0b-9ea5-e68a9e81d533\"}" + headers: + Content-Length: + - "152" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f3611349-73de-43b8-9d84-4c75e5fa84db + status: 404 Not Found + code: 404 + duration: 34.746757ms diff --git a/internal/services/instance/testdata/placement-group-tags.cassette.yaml b/internal/services/instance/testdata/placement-group-tags.cassette.yaml index 6b2363507..8f49afc5e 100644 --- a/internal/services/instance/testdata/placement-group-tags.cassette.yaml +++ b/internal/services/instance/testdata/placement-group-tags.cassette.yaml @@ -1,624 +1,492 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 143 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-pg-condescending-ellis","project":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_type":"max_availability"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 331 - uncompressed: false - 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: - - "331" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 129d7fab-0c02-4351-9ef2-e1d05b5e702f - status: 201 Created - code: 201 - duration: 189.347564ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 331 - uncompressed: false - 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: - - "331" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 903c013c-040b-430a-b0ce-f4b3ba27cc5a - status: 200 OK - code: 200 - duration: 96.363326ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 331 - uncompressed: false - 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: - - "331" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b3ff7dd9-f6c7-4ac9-b993-2bd2c889c62d - status: 200 OK - code: 200 - duration: 118.195519ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 331 - uncompressed: false - 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: - - "331" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 82725551-9b48-4068-8dfc-d061c03b12e2 - status: 200 OK - code: 200 - duration: 95.538504ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 331 - uncompressed: false - 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: - - "331" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 328fa39b-0948-4f5e-a21f-3a54f549c118 - status: 200 OK - code: 200 - duration: 113.384594ms - - id: 5 - 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: '{"tags":["foo","bar"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.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/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 343 - uncompressed: false - 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: - - "343" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4ed2e481-63ae-4730-bab0-3ea131a193b3 - status: 200 OK - code: 200 - duration: 153.649443ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 343 - uncompressed: false - 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: - - "343" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d8c33392-0cd1-4c84-9014-d98c3df9cd5d - status: 200 OK - code: 200 - duration: 97.256708ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 343 - uncompressed: false - 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: - - "343" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d506b020-73c7-470e-b091-b71c3548e195 - status: 200 OK - code: 200 - duration: 120.095923ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 343 - uncompressed: false - 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: - - "343" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a9cec5e3-5f68-44da-ba1d-79fd917757aa - status: 200 OK - code: 200 - duration: 110.892594ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 343 - uncompressed: false - 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: - - "343" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c59636f0-de62-464d-9999-b5e211a0226d - status: 200 OK - code: 200 - duration: 117.075245ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 11 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"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/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 331 - uncompressed: false - 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: - - "331" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cc702947-0dc4-42ee-8461-7d465bef8710 - status: 200 OK - code: 200 - duration: 159.266107ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 331 - uncompressed: false - 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: - - "331" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e54aa96e-57ac-4753-82f4-20cbe5411812 - status: 200 OK - code: 200 - duration: 94.595211ms - - 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/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 331 - uncompressed: false - 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: - - "331" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bda4416a-9e30-4a7e-ac2f-4caed6a07270 - status: 200 OK - code: 200 - duration: 118.819066ms - - 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/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 331 - uncompressed: false - 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: - - "331" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c45ba269-828c-4d2e-bc22-d79489aca564 - status: 200 OK - code: 200 - duration: 121.094201ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/fa2b6bf4-e820-408d-8cc1-2e8cea9cd69a - 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:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 02d6b53b-92bb-4105-9cf4-6fc692b96718 - status: 204 No Content - code: 204 - duration: 130.879398ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 139 + host: api.scaleway.com + body: "{\"name\":\"tf-pg-quizzical-cohen\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"policy_mode\":\"optional\",\"policy_type\":\"max_availability\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 327 + body: "{\"placement_group\": {\"id\": \"47a3c7d2-9f6f-499f-90d2-1eb96d54487b\", \"name\": \"tf-pg-quizzical-cohen\", \"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: + - "327" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/47a3c7d2-9f6f-499f-90d2-1eb96d54487b + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - abff751d-8d9c-42f9-b9fa-6e5ae97a209e + status: 201 Created + code: 201 + duration: 181.653971ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/47a3c7d2-9f6f-499f-90d2-1eb96d54487b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 327 + body: "{\"placement_group\": {\"id\": \"47a3c7d2-9f6f-499f-90d2-1eb96d54487b\", \"name\": \"tf-pg-quizzical-cohen\", \"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: + - "327" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3af65dee-e8b7-4f65-a1d8-3d1b664ce50e + status: 200 OK + code: 200 + duration: 101.790932ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/47a3c7d2-9f6f-499f-90d2-1eb96d54487b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 327 + body: "{\"placement_group\": {\"id\": \"47a3c7d2-9f6f-499f-90d2-1eb96d54487b\", \"name\": \"tf-pg-quizzical-cohen\", \"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: + - "327" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a470d291-5057-435e-9501-a25d98f9b90e + status: 200 OK + code: 200 + duration: 125.677729ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/47a3c7d2-9f6f-499f-90d2-1eb96d54487b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 327 + body: "{\"placement_group\": {\"id\": \"47a3c7d2-9f6f-499f-90d2-1eb96d54487b\", \"name\": \"tf-pg-quizzical-cohen\", \"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: + - "327" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 39c6c935-b087-4ee3-9226-73e78e87cac2 + status: 200 OK + code: 200 + duration: 120.275596ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/47a3c7d2-9f6f-499f-90d2-1eb96d54487b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 327 + body: "{\"placement_group\": {\"id\": \"47a3c7d2-9f6f-499f-90d2-1eb96d54487b\", \"name\": \"tf-pg-quizzical-cohen\", \"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: + - "327" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9b10d9ee-2d34-4a60-8382-971dd66b6235 + status: 200 OK + code: 200 + duration: 159.16711ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"tags\":[\"foo\",\"bar\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/47a3c7d2-9f6f-499f-90d2-1eb96d54487b + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 339 + body: "{\"placement_group\": {\"id\": \"47a3c7d2-9f6f-499f-90d2-1eb96d54487b\", \"name\": \"tf-pg-quizzical-cohen\", \"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: + - "339" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b091ec0e-fe50-485c-a797-555d2fc9877a + status: 200 OK + code: 200 + duration: 157.806227ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/47a3c7d2-9f6f-499f-90d2-1eb96d54487b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 339 + body: "{\"placement_group\": {\"id\": \"47a3c7d2-9f6f-499f-90d2-1eb96d54487b\", \"name\": \"tf-pg-quizzical-cohen\", \"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: + - "339" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - be77676b-5161-4079-96bd-b3a29ac67fd6 + status: 200 OK + code: 200 + duration: 114.219075ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/47a3c7d2-9f6f-499f-90d2-1eb96d54487b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 339 + body: "{\"placement_group\": {\"id\": \"47a3c7d2-9f6f-499f-90d2-1eb96d54487b\", \"name\": \"tf-pg-quizzical-cohen\", \"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: + - "339" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9552d063-ef12-4834-b331-fed6a039c3e4 + status: 200 OK + code: 200 + duration: 109.598798ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/47a3c7d2-9f6f-499f-90d2-1eb96d54487b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 339 + body: "{\"placement_group\": {\"id\": \"47a3c7d2-9f6f-499f-90d2-1eb96d54487b\", \"name\": \"tf-pg-quizzical-cohen\", \"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: + - "339" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 284376e6-6b51-4850-a41a-978508192903 + status: 200 OK + code: 200 + duration: 105.213051ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/47a3c7d2-9f6f-499f-90d2-1eb96d54487b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 339 + body: "{\"placement_group\": {\"id\": \"47a3c7d2-9f6f-499f-90d2-1eb96d54487b\", \"name\": \"tf-pg-quizzical-cohen\", \"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: + - "339" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f343f1f5-152c-4559-869b-f162b458edf5 + status: 200 OK + code: 200 + duration: 105.096974ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 11 + host: api.scaleway.com + body: "{\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/47a3c7d2-9f6f-499f-90d2-1eb96d54487b + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 327 + body: "{\"placement_group\": {\"id\": \"47a3c7d2-9f6f-499f-90d2-1eb96d54487b\", \"name\": \"tf-pg-quizzical-cohen\", \"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: + - "327" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f402a567-4c4b-492b-bb75-7604805b77b0 + status: 200 OK + code: 200 + duration: 191.52581ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/47a3c7d2-9f6f-499f-90d2-1eb96d54487b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 327 + body: "{\"placement_group\": {\"id\": \"47a3c7d2-9f6f-499f-90d2-1eb96d54487b\", \"name\": \"tf-pg-quizzical-cohen\", \"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: + - "327" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 59bd97f7-d31d-4a06-8b6d-f1542536bfbf + status: 200 OK + code: 200 + duration: 96.743164ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/47a3c7d2-9f6f-499f-90d2-1eb96d54487b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 327 + body: "{\"placement_group\": {\"id\": \"47a3c7d2-9f6f-499f-90d2-1eb96d54487b\", \"name\": \"tf-pg-quizzical-cohen\", \"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: + - "327" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 66d1eeb1-e649-412a-a5d8-9e4a0a01f9d1 + status: 200 OK + code: 200 + duration: 122.268585ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/47a3c7d2-9f6f-499f-90d2-1eb96d54487b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 327 + body: "{\"placement_group\": {\"id\": \"47a3c7d2-9f6f-499f-90d2-1eb96d54487b\", \"name\": \"tf-pg-quizzical-cohen\", \"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: + - "327" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 880223fc-c494-45e3-9954-73783b8f78a7 + status: 200 OK + code: 200 + duration: 108.754104ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/47a3c7d2-9f6f-499f-90d2-1eb96d54487b + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0dda2068-e9ff-41c5-8148-ad98cb328c3a + status: 204 No Content + code: 204 + duration: 149.30424ms diff --git a/internal/services/instance/testdata/private-nic-basic.cassette.yaml b/internal/services/instance/testdata/private-nic-basic.cassette.yaml index e0ba0148f..410d001df 100644 --- a/internal/services/instance/testdata/private-nic-basic.cassette.yaml +++ b/internal/services/instance/testdata/private-nic-basic.cassette.yaml @@ -1,2406 +1,2001 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:13 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 24e71075-c1d1-4f48-9dda-61a30c5f869f - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 34.930144ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 119 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"TestAccPrivateNIC_Basic","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 421 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 155fb694-4595-4d8e-b769-efa59c1f7ddb - status: 200 OK - code: 200 - duration: 65.112362ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:13 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4a67dc50-3300-46a1-b308-86ecde5c186a - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 36.002129ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c5fa332f-306d-4e71-bfb2-fc0c4f98b64b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 421 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 95f4ab1f-eccf-4d25-ba43-452b985116f4 - status: 200 OK - code: 200 - duration: 25.962627ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 24980155-4734-49c6-8eb3-92b0ed350d22 - status: 200 OK - code: 200 - duration: 45.44126ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 217 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"TestAccScalewayInstancePrivateNIC_Basic","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"c5fa332f-306d-4e71-bfb2-fc0c4f98b64b","default_route_propagation_enabled":false}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1108 - uncompressed: false - 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: - - "1108" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b60dac5f-db61-4ac2-9583-725d27578ee5 - status: 200 OK - code: 200 - duration: 654.836707ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2dcd1a25-4756-469a-af05-b4221e417e5e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1108 - uncompressed: false - 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: - - "1108" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 84a3fdcb-84ac-4211-bf76-8788722e517d - status: 200 OK - code: 200 - duration: 23.642788ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 235 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1786 - uncompressed: false - 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: - - "1786" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:14 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e5d54233-41b7-47d9-afe5-1e96fb8b5347 - status: 201 Created - code: 201 - duration: 1.134131926s - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1786 - uncompressed: false - 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: - - "1786" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2d9c47df-9c9b-462e-b8fc-1bdc2c25a7a3 - status: 200 OK - code: 200 - duration: 137.497853ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1786 - uncompressed: false - 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: - - "1786" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c1992710-2ad8-4770-816a-6b654d42e8c7 - status: 200 OK - code: 200 - duration: 129.46365ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/dab121b8-5024-4b8f-9ad0-b19f132fbaaa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9ce2769d-d13e-4b67-a8fd-dd260cb1a01e - status: 200 OK - code: 200 - duration: 92.631599ms - - id: 11 - 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/d17b3e02-c778-4096-9137-66680f4ba6b5/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:15 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9aa01869-8fdc-4e1b-9cfd-10b49503423a - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c7da7f80-067f-4fad-8eef-5073f2f7d92c - status: 202 Accepted - code: 202 - duration: 243.686833ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1762 - uncompressed: false - 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: - - "1762" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f52ef011-90e2-4c04-8aee-15e9ef4a9be0 - status: 200 OK - code: 200 - duration: 144.754622ms - - 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/d17b3e02-c778-4096-9137-66680f4ba6b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1942 - uncompressed: false - 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: - - "1942" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - caa4086e-3b33-448c-bebd-b087da51d526 - status: 200 OK - code: 200 - duration: 149.795961ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1896 - uncompressed: false - 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: - - "1896" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 87736463-7415-4ea9-803e-ff4650c7da7d - status: 200 OK - code: 200 - duration: 131.729038ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/dab121b8-5024-4b8f-9ad0-b19f132fbaaa - 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": "dab121b8-5024-4b8f-9ad0-b19f132fbaaa"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ff672247-0806-4226-b9c8-d7bd6ae402d3 - status: 404 Not Found - code: 404 - duration: 27.108519ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/dab121b8-5024-4b8f-9ad0-b19f132fbaaa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 62c6e0a7-e934-406e-b186-36d72caf692c - status: 200 OK - code: 200 - duration: 77.406381ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/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:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 34772159-4e98-48b6-ab89-b6be28cb661a - status: 200 OK - code: 200 - duration: 102.99045ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/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:54:21 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dae80c45-5820-440b-af00-b88bc224fdb5 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 96.887297ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1896 - uncompressed: false - 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: - - "1896" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0758e972-3161-4360-b26c-0668120f72a8 - status: 200 OK - code: 200 - duration: 144.017636ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 61 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"private_network_id":"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/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 842f1448-21b3-46d6-a314-90e42e28dca6 - status: 201 Created - code: 201 - duration: 653.984549ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 388fe595-6886-4632-ac00-c62b2da8ff98 - status: 200 OK - code: 200 - duration: 92.564906ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1d06fab0-3e72-482f-a4b5-3cf6d09d90e0 - status: 200 OK - code: 200 - duration: 90.915984ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9868c1f7-3759-4999-8dc2-8842c792279c - status: 200 OK - code: 200 - duration: 200.764854ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 830c6f42-3ba0-4b6e-a63d-dfd03778d94d - status: 200 OK - code: 200 - duration: 132.296766ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a17d06ca-2e54-4bea-8a0d-807bc7546de2 - status: 200 OK - code: 200 - duration: 141.524994ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 848febd7-38fb-4116-95a5-410e4510da24 - status: 200 OK - code: 200 - duration: 88.696128ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 12d35897-ac54-4339-98ff-eadf1f5e8d15 - status: 200 OK - code: 200 - duration: 97.891405ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8a79c93f-e1f1-4ef9-8aee-06d883f214d7 - status: 200 OK - code: 200 - duration: 95.837693ms - - 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/d17b3e02-c778-4096-9137-66680f4ba6b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2354 - uncompressed: false - 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: - - "2354" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 102ef2ef-f09e-4fac-b83e-873a3f4efb61 - status: 200 OK - code: 200 - 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 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d0a197de-cd7e-46e3-8d0c-c43c4f8083da - status: 200 OK - code: 200 - duration: 94.612073ms - - 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/vpc/v2/regions/fr-par/vpcs/c5fa332f-306d-4e71-bfb2-fc0c4f98b64b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 421 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 596b8c54-8203-425d-b89d-4f433d488f5c - status: 200 OK - code: 200 - duration: 28.649524ms - - 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/vpc/v2/regions/fr-par/private-networks/2dcd1a25-4756-469a-af05-b4221e417e5e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1108 - uncompressed: false - 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: - - "1108" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c04821c7-24eb-4a65-bf32-1a8c16966fe6 - status: 200 OK - code: 200 - duration: 30.643643ms - - 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/d17b3e02-c778-4096-9137-66680f4ba6b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2400 - uncompressed: false - 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: - - "2400" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f841f9ce-c85b-4ba0-9598-434a85eb2486 - status: 200 OK - code: 200 - duration: 138.396137ms - - 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/volumes/dab121b8-5024-4b8f-9ad0-b19f132fbaaa - 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": "dab121b8-5024-4b8f-9ad0-b19f132fbaaa"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9c3bb361-c8ee-49b9-bc46-750d97e805cf - status: 404 Not Found - code: 404 - duration: 26.409444ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/dab121b8-5024-4b8f-9ad0-b19f132fbaaa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 725bcb6f-3af0-4616-96a3-67fd1a57c034 - status: 200 OK - code: 200 - duration: 82.309887ms - - 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/d17b3e02-c778-4096-9137-66680f4ba6b5/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:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f22f3dc6-5475-4003-958c-29dd1ef27073 - status: 200 OK - code: 200 - duration: 91.373045ms - - 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/d17b3e02-c778-4096-9137-66680f4ba6b5/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2056f683-174c-4004-bb66-0518c701fff4 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 98.452624ms - - 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: - 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=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: - - 4295b943-f735-4890-820b-32cc6d5277e8 - status: 200 OK - code: 200 - duration: 31.975725ms - - 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/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7ef710b1-60ac-4c65-af57-5f567476c750 - status: 200 OK - code: 200 - duration: 106.757374ms - - 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/d17b3e02-c778-4096-9137-66680f4ba6b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2354 - uncompressed: false - 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: - - "2354" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9ad86043-60af-43c6-94b1-5ab72e301c58 - status: 200 OK - code: 200 - duration: 151.747865ms - - 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: - 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:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b6db3df5-9f12-40df-99c1-b9f6172d1eaa - status: 200 OK - code: 200 - duration: 41.259093ms - - 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/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 228e5656-65c4-4c92-bd57-13a141d6853e - status: 200 OK - code: 200 - duration: 90.959923ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 - 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: - - ea4d25f8-c673-461c-b11a-b08e13740b6e - status: 204 No Content - code: 204 - duration: 401.679553ms - - 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/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 148 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 31898773-e8ab-4e42-9563-8c7be8aac8c0 - status: 404 Not Found - code: 404 - duration: 106.901313ms - - 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/d17b3e02-c778-4096-9137-66680f4ba6b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1942 - uncompressed: false - 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: - - "1942" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0238e490-de24-4e1c-8afe-91a358332324 - status: 200 OK - code: 200 - duration: 130.683185ms - - 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/d17b3e02-c778-4096-9137-66680f4ba6b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1896 - uncompressed: false - 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: - - "1896" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 34c18534-a746-4dab-9d23-1a97b993ffc4 - status: 200 OK - code: 200 - duration: 123.841722ms - - id: 48 - 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/d17b3e02-c778-4096-9137-66680f4ba6b5/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8e89c6ac-3620-44cf-bccd-33df1393c79c - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5451e494-f35b-4e71-96fe-6a4ac1afcbb7 - status: 202 Accepted - code: 202 - duration: 287.617299ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1905 - uncompressed: false - 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: - - "1905" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8bb85c58-4646-42fe-abd3-8a2a1bba3ad1 - status: 200 OK - code: 200 - duration: 139.383615ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2dcd1a25-4756-469a-af05-b4221e417e5e - 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:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0f02ea9c-64c9-41cc-a6aa-d8c16c6bffc0 - status: 204 No Content - code: 204 - duration: 1.087904101s - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c5fa332f-306d-4e71-bfb2-fc0c4f98b64b - 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:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 29aaad7c-5d6b-457b-b096-13d3c2b9a05d - status: 204 No Content - code: 204 - duration: 151.096137ms - - 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/d17b3e02-c778-4096-9137-66680f4ba6b5 - 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": "d17b3e02-c778-4096-9137-66680f4ba6b5"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 947eb149-ef8e-4e17-8258-a7113c60f336 - status: 404 Not Found - code: 404 - duration: 62.801458ms - - 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/volumes/dab121b8-5024-4b8f-9ad0-b19f132fbaaa - 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": "dab121b8-5024-4b8f-9ad0-b19f132fbaaa"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3a1f51c9-563c-4053-90db-0e2eebea1395 - status: 404 Not Found - code: 404 - duration: 36.43316ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/dab121b8-5024-4b8f-9ad0-b19f132fbaaa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1af64eaf-0436-4810-8c03-2ccc975596a7 - status: 200 OK - code: 200 - duration: 86.809054ms - - id: 55 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/dab121b8-5024-4b8f-9ad0-b19f132fbaaa - 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:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b78ec25e-5d7d-4a12-999e-869132a17b8d - status: 204 No Content - code: 204 - duration: 161.666755ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d17b3e02-c778-4096-9137-66680f4ba6b5/private_nics/75cf202c-f065-44cb-8fed-b983a06be823 - 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": "d17b3e02-c778-4096-9137-66680f4ba6b5"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 859f0e4a-8a12-4884-95a1-cd6814b67e38 - status: 404 Not Found - code: 404 - duration: 34.899943ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a7c5eb89-e2ad-4503-ad55-15708a121916 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 96.188973ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 119 + host: api.scaleway.com + body: "{\"name\":\"TestAccPrivateNIC_Basic\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"enable_routing\":false}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 421 + body: "{\"id\":\"20bf2a16-a253-4de9-ad46-5240a4e270ae\", \"name\":\"TestAccPrivateNIC_Basic\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:55.412057Z\", \"updated_at\":\"2025-10-30T15:42:55.412057Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b4663793-5974-431d-8d75-e3696ff300cd + status: 200 OK + code: 200 + duration: 117.960362ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3f7d9a69-26b4-40fe-9650-28a711ec4714 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 54.080946ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/20bf2a16-a253-4de9-ad46-5240a4e270ae + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 421 + body: "{\"id\":\"20bf2a16-a253-4de9-ad46-5240a4e270ae\", \"name\":\"TestAccPrivateNIC_Basic\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:55.412057Z\", \"updated_at\":\"2025-10-30T15:42:55.412057Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f0f27617-8556-44ff-8676-438a210e2ea1 + status: 200 OK + code: 200 + duration: 76.39331ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c02b0ccf-67af-4d2a-816c-c25b8148ad8a + status: 200 OK + code: 200 + duration: 50.867748ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 217 + host: api.scaleway.com + body: "{\"name\":\"TestAccScalewayInstancePrivateNIC_Basic\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"subnets\":null,\"vpc_id\":\"20bf2a16-a253-4de9-ad46-5240a4e270ae\",\"default_route_propagation_enabled\":false}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1109 + body: "{\"id\":\"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"name\":\"TestAccScalewayInstancePrivateNIC_Basic\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:55.624321Z\", \"updated_at\":\"2025-10-30T15:42:55.624321Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"b4134939-1048-41d8-ab73-180dbc0b94e4\", \"created_at\":\"2025-10-30T15:42:55.624321Z\", \"updated_at\":\"2025-10-30T15:42:55.624321Z\", \"subnet\":\"172.18.48.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"vpc_id\":\"20bf2a16-a253-4de9-ad46-5240a4e270ae\"}, {\"id\":\"bf40ace9-1861-4f97-9638-99dc75ccfff7\", \"created_at\":\"2025-10-30T15:42:55.624321Z\", \"updated_at\":\"2025-10-30T15:42:55.624321Z\", \"subnet\":\"fd5f:519c:6d46:2718::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"vpc_id\":\"20bf2a16-a253-4de9-ad46-5240a4e270ae\"}], \"vpc_id\":\"20bf2a16-a253-4de9-ad46-5240a4e270ae\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1109" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 09e44a32-6bb1-416d-8d27-32840ef526ad + status: 200 OK + code: 200 + duration: 898.708656ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/45816fed-dff9-47a2-9d17-a2bdbe39000a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1109 + body: "{\"id\":\"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"name\":\"TestAccScalewayInstancePrivateNIC_Basic\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:55.624321Z\", \"updated_at\":\"2025-10-30T15:42:55.624321Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"b4134939-1048-41d8-ab73-180dbc0b94e4\", \"created_at\":\"2025-10-30T15:42:55.624321Z\", \"updated_at\":\"2025-10-30T15:42:55.624321Z\", \"subnet\":\"172.18.48.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"vpc_id\":\"20bf2a16-a253-4de9-ad46-5240a4e270ae\"}, {\"id\":\"bf40ace9-1861-4f97-9638-99dc75ccfff7\", \"created_at\":\"2025-10-30T15:42:55.624321Z\", \"updated_at\":\"2025-10-30T15:42:55.624321Z\", \"subnet\":\"fd5f:519c:6d46:2718::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"vpc_id\":\"20bf2a16-a253-4de9-ad46-5240a4e270ae\"}], \"vpc_id\":\"20bf2a16-a253-4de9-ad46-5240a4e270ae\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1109" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 22568f7f-038a-4ef5-822f-00cfd574ed57 + status: 200 OK + code: 200 + duration: 29.913352ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 237 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-intelligent-brown\",\"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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1744 + body: "{\"server\": {\"id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"name\": \"tf-srv-intelligent-brown\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-intelligent-brown\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d5d2f667-1595-4e25-a21c-059e87b3159c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:f1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:56.461309+00:00\", \"modification_date\": \"2025-10-30T15:42:56.461309+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 153b2348-bab3-4878-82e0-061d5bc3aab3 + status: 201 Created + code: 201 + duration: 1.455987201s +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1790 + body: "{\"server\": {\"id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"name\": \"tf-srv-intelligent-brown\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-intelligent-brown\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d5d2f667-1595-4e25-a21c-059e87b3159c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:f1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:56.461309+00:00\", \"modification_date\": \"2025-10-30T15:42:56.461309+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1790" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ca1cdab1-6f42-4063-bae4-16edddbd22f8 + status: 200 OK + code: 200 + duration: 151.257572ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1744 + body: "{\"server\": {\"id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"name\": \"tf-srv-intelligent-brown\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-intelligent-brown\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d5d2f667-1595-4e25-a21c-059e87b3159c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:f1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:56.461309+00:00\", \"modification_date\": \"2025-10-30T15:42:56.461309+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 95d956d3-db20-4088-b5f4-25c6c12b9198 + status: 200 OK + code: 200 + duration: 155.965523ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5d2f667-1595-4e25-a21c-059e87b3159c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"d5d2f667-1595-4e25-a21c-059e87b3159c\", \"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-30T15:42:56.588516Z\", \"updated_at\":\"2025-10-30T15:42:56.588516Z\", \"references\":[{\"id\":\"38e8205e-90c3-47d6-9dc7-2dd3e3e758f4\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"created_at\":\"2025-10-30T15:42:56.588516Z\", \"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: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2b07b1dd-d66e-40fe-83c2-0d16e9762d28 + status: 200 OK + code: 200 + duration: 91.401462ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"4c4e070f-413d-4bf3-8b62-9a5326504a7e\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/action\", \"href_result\": \"/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"started_at\": \"2025-10-30T15:42:57.909796+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4c4e070f-413d-4bf3-8b62-9a5326504a7e + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bf0d814b-f99b-4756-83bf-8cba6692194a + status: 202 Accepted + code: 202 + duration: 570.819937ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1812 + body: "{\"server\": {\"id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"name\": \"tf-srv-intelligent-brown\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-intelligent-brown\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d5d2f667-1595-4e25-a21c-059e87b3159c\", \"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:6c:f1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:56.461309+00:00\", \"modification_date\": \"2025-10-30T15:42:57.415291+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: + - "1812" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 14bb6233-a710-4873-acb3-3dce62193711 + status: 200 OK + code: 200 + duration: 184.449455ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1901 + body: "{\"server\": {\"id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"name\": \"tf-srv-intelligent-brown\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-intelligent-brown\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d5d2f667-1595-4e25-a21c-059e87b3159c\", \"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:6c:f1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:56.461309+00:00\", \"modification_date\": \"2025-10-30T15:43:00.697045+00:00\", \"bootscript\": 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\": \"1301\", \"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: + - "1901" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 82a001fb-7bda-435e-855a-1368d18a327e + status: 200 OK + code: 200 + duration: 166.44323ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1947 + body: "{\"server\": {\"id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"name\": \"tf-srv-intelligent-brown\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-intelligent-brown\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d5d2f667-1595-4e25-a21c-059e87b3159c\", \"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:6c:f1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:56.461309+00:00\", \"modification_date\": \"2025-10-30T15:43:00.697045+00:00\", \"bootscript\": 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\": \"1301\", \"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: + - "1947" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5aa2ac48-aff7-4952-bbfa-06ff397168a1 + status: 200 OK + code: 200 + duration: 188.151381ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d5d2f667-1595-4e25-a21c-059e87b3159c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d5d2f667-1595-4e25-a21c-059e87b3159c\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1aaf7821-de0a-4cf3-9ff4-52f341f64bdc + status: 404 Not Found + code: 404 + duration: 185.739877ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5d2f667-1595-4e25-a21c-059e87b3159c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"d5d2f667-1595-4e25-a21c-059e87b3159c\", \"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-30T15:42:56.588516Z\", \"updated_at\":\"2025-10-30T15:42:56.588516Z\", \"references\":[{\"id\":\"38e8205e-90c3-47d6-9dc7-2dd3e3e758f4\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"created_at\":\"2025-10-30T15:42:56.588516Z\", \"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: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 401aafb5-950d-4566-afe8-e9ad34142de4 + status: 200 OK + code: 200 + duration: 93.842233ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 71e0f01e-76ad-4d69-a9a4-8d79906ce20b + status: 200 OK + code: 200 + duration: 137.380834ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 781cb07d-3123-477f-8eb5-1ecd96807cd3 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 98.59113ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1947 + body: "{\"server\": {\"id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"name\": \"tf-srv-intelligent-brown\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-intelligent-brown\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d5d2f667-1595-4e25-a21c-059e87b3159c\", \"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:6c:f1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:56.461309+00:00\", \"modification_date\": \"2025-10-30T15:43:00.697045+00:00\", \"bootscript\": 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\": \"1301\", \"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: + - "1947" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 666ec3f5-25c4-4d0d-a065-4491299a3a8b + status: 200 OK + code: 200 + duration: 134.343406ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 61 + host: api.scaleway.com + body: "{\"private_network_id\":\"45816fed-dff9-47a2-9d17-a2bdbe39000a\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/private_nics + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"private_network_id\": \"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"server_id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"mac_address\": \"02:00:00:1e:9e:0b\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:04.271314+00:00\", \"modification_date\": \"2025-10-30T15:43:04.549798+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"ffc78fd3-eb8b-4769-982c-9d2faa1c4f0d\", \"89715388-8dab-4ebc-a022-e6e2edc0cd8d\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 22d1cf67-c792-4a51-8a6b-97ed39b315b0 + status: 201 Created + code: 201 + duration: 1.028833825s +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/private_nics/c67f7daa-0a5c-4a0c-93dd-cc093e3759e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"private_network_id\": \"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"server_id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"mac_address\": \"02:00:00:1e:9e:0b\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:04.271314+00:00\", \"modification_date\": \"2025-10-30T15:43:04.549798+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"ffc78fd3-eb8b-4769-982c-9d2faa1c4f0d\", \"89715388-8dab-4ebc-a022-e6e2edc0cd8d\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 142b5c11-ff23-465d-86f1-f5cd09961aa1 + status: 200 OK + code: 200 + duration: 102.329082ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/private_nics/c67f7daa-0a5c-4a0c-93dd-cc093e3759e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"private_network_id\": \"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"server_id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"mac_address\": \"02:00:00:1e:9e:0b\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:04.271314+00:00\", \"modification_date\": \"2025-10-30T15:43:04.549798+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"ffc78fd3-eb8b-4769-982c-9d2faa1c4f0d\", \"89715388-8dab-4ebc-a022-e6e2edc0cd8d\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2c6a15a3-3c88-4290-b36b-7c08c679aa4f + status: 200 OK + code: 200 + duration: 101.514906ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/private_nics/c67f7daa-0a5c-4a0c-93dd-cc093e3759e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"private_network_id\": \"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"server_id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"mac_address\": \"02:00:00:1e:9e:0b\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:04.271314+00:00\", \"modification_date\": \"2025-10-30T15:43:04.549798+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"ffc78fd3-eb8b-4769-982c-9d2faa1c4f0d\", \"89715388-8dab-4ebc-a022-e6e2edc0cd8d\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 63ac7c5e-63eb-4e52-aa16-d3386d6717d0 + status: 200 OK + code: 200 + duration: 108.033305ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/private_nics/c67f7daa-0a5c-4a0c-93dd-cc093e3759e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"private_network_id\": \"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"server_id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"mac_address\": \"02:00:00:1e:9e:0b\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:04.271314+00:00\", \"modification_date\": \"2025-10-30T15:43:04.549798+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"ffc78fd3-eb8b-4769-982c-9d2faa1c4f0d\", \"89715388-8dab-4ebc-a022-e6e2edc0cd8d\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b43a14ec-92f0-4728-b7cf-01e8b5764510 + status: 200 OK + code: 200 + duration: 100.0447ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/private_nics/c67f7daa-0a5c-4a0c-93dd-cc093e3759e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"private_network_id\": \"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"server_id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"mac_address\": \"02:00:00:1e:9e:0b\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:04.271314+00:00\", \"modification_date\": \"2025-10-30T15:43:04.549798+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"ffc78fd3-eb8b-4769-982c-9d2faa1c4f0d\", \"89715388-8dab-4ebc-a022-e6e2edc0cd8d\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eb071371-d6e3-4cc4-b043-246e1662fc9f + status: 200 OK + code: 200 + duration: 99.710544ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/private_nics/c67f7daa-0a5c-4a0c-93dd-cc093e3759e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"private_network_id\": \"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"server_id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"mac_address\": \"02:00:00:1e:9e:0b\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:04.271314+00:00\", \"modification_date\": \"2025-10-30T15:43:04.549798+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"ffc78fd3-eb8b-4769-982c-9d2faa1c4f0d\", \"89715388-8dab-4ebc-a022-e6e2edc0cd8d\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dd1b5ced-e3a3-42e7-9334-9b0aa60960fc + status: 200 OK + code: 200 + duration: 94.755731ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/private_nics/c67f7daa-0a5c-4a0c-93dd-cc093e3759e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"private_network_id\": \"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"server_id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"mac_address\": \"02:00:00:1e:9e:0b\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:04.271314+00:00\", \"modification_date\": \"2025-10-30T15:43:04.549798+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"ffc78fd3-eb8b-4769-982c-9d2faa1c4f0d\", \"89715388-8dab-4ebc-a022-e6e2edc0cd8d\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0c25be2a-2334-4a8f-8434-b5dcf85b3660 + status: 200 OK + code: 200 + duration: 88.569206ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/private_nics/c67f7daa-0a5c-4a0c-93dd-cc093e3759e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"private_network_id\": \"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"server_id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"mac_address\": \"02:00:00:1e:9e:0b\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:04.271314+00:00\", \"modification_date\": \"2025-10-30T15:43:04.549798+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"ffc78fd3-eb8b-4769-982c-9d2faa1c4f0d\", \"89715388-8dab-4ebc-a022-e6e2edc0cd8d\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9f644a60-87b2-46fd-9f44-6fc193e685f7 + status: 200 OK + code: 200 + duration: 85.663067ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/private_nics/c67f7daa-0a5c-4a0c-93dd-cc093e3759e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"private_network_id\": \"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"server_id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"mac_address\": \"02:00:00:1e:9e:0b\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:04.271314+00:00\", \"modification_date\": \"2025-10-30T15:43:04.549798+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"ffc78fd3-eb8b-4769-982c-9d2faa1c4f0d\", \"89715388-8dab-4ebc-a022-e6e2edc0cd8d\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bae02105-8d97-4edb-b305-4f858c90c9dd + status: 200 OK + code: 200 + duration: 84.34811ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/private_nics/c67f7daa-0a5c-4a0c-93dd-cc093e3759e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"private_network_id\": \"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"server_id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"mac_address\": \"02:00:00:1e:9e:0b\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:04.271314+00:00\", \"modification_date\": \"2025-10-30T15:43:48.526671+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"ffc78fd3-eb8b-4769-982c-9d2faa1c4f0d\", \"89715388-8dab-4ebc-a022-e6e2edc0cd8d\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f25fce2d-58a4-4f61-ac3a-9c4338132206 + status: 200 OK + code: 200 + duration: 93.920698ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/private_nics/c67f7daa-0a5c-4a0c-93dd-cc093e3759e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"private_network_id\": \"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"server_id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"mac_address\": \"02:00:00:1e:9e:0b\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:04.271314+00:00\", \"modification_date\": \"2025-10-30T15:43:48.526671+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"ffc78fd3-eb8b-4769-982c-9d2faa1c4f0d\", \"89715388-8dab-4ebc-a022-e6e2edc0cd8d\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 79d3a789-9a97-4f54-b705-3680e0dfb1e5 + status: 200 OK + code: 200 + duration: 119.783334ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2359 + body: "{\"server\": {\"id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"name\": \"tf-srv-intelligent-brown\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-intelligent-brown\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d5d2f667-1595-4e25-a21c-059e87b3159c\", \"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:6c:f1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:56.461309+00:00\", \"modification_date\": \"2025-10-30T15:43:00.697045+00:00\", \"bootscript\": 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\": \"1301\", \"node_id\": \"31\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"private_network_id\": \"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"server_id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"mac_address\": \"02:00:00:1e:9e:0b\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:04.271314+00:00\", \"modification_date\": \"2025-10-30T15:43:48.526671+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"ffc78fd3-eb8b-4769-982c-9d2faa1c4f0d\", \"89715388-8dab-4ebc-a022-e6e2edc0cd8d\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2359" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4b745aff-ffff-4e93-b88f-ef82ce8efe9a + status: 200 OK + code: 200 + duration: 146.314855ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - 45816fed-dff9-47a2-9d17-a2bdbe39000a + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - c67f7daa-0a5c-4a0c-93dd-cc093e3759e0 + 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=45816fed-dff9-47a2-9d17-a2bdbe39000a&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=c67f7daa-0a5c-4a0c-93dd-cc093e3759e0&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1078 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"89715388-8dab-4ebc-a022-e6e2edc0cd8d\", \"address\":\"fd5f:519c:6d46:2718:3b26:66cb:fd6b:d230/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:43:04.783699Z\", \"updated_at\":\"2025-10-30T15:43:04.783699Z\", \"source\":{\"subnet_id\":\"bf40ace9-1861-4f97-9638-99dc75ccfff7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"mac_address\":\"02:00:00:1E:9E:0B\", \"name\":\"tf-srv-intelligent-brown\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"ffc78fd3-eb8b-4769-982c-9d2faa1c4f0d\", \"address\":\"172.18.48.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:43:04.646008Z\", \"updated_at\":\"2025-10-30T15:43:04.646008Z\", \"source\":{\"subnet_id\":\"b4134939-1048-41d8-ab73-180dbc0b94e4\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"mac_address\":\"02:00:00:1E:9E:0B\", \"name\":\"tf-srv-intelligent-brown\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1078" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 914094e5-2193-4d80-9aa3-4c86b97f26ee + status: 200 OK + code: 200 + duration: 41.162387ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/private_nics/c67f7daa-0a5c-4a0c-93dd-cc093e3759e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"private_network_id\": \"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"server_id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"mac_address\": \"02:00:00:1e:9e:0b\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:04.271314+00:00\", \"modification_date\": \"2025-10-30T15:43:48.526671+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"ffc78fd3-eb8b-4769-982c-9d2faa1c4f0d\", \"89715388-8dab-4ebc-a022-e6e2edc0cd8d\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b8ae2e73-7d49-4b2d-af40-629cbcc9e5c4 + status: 200 OK + code: 200 + duration: 107.517484ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/20bf2a16-a253-4de9-ad46-5240a4e270ae + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 421 + body: "{\"id\":\"20bf2a16-a253-4de9-ad46-5240a4e270ae\", \"name\":\"TestAccPrivateNIC_Basic\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:55.412057Z\", \"updated_at\":\"2025-10-30T15:42:55.412057Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5b23862e-2842-4962-a059-e5ff7a24c638 + status: 200 OK + code: 200 + duration: 28.93475ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/45816fed-dff9-47a2-9d17-a2bdbe39000a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1109 + body: "{\"id\":\"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"name\":\"TestAccScalewayInstancePrivateNIC_Basic\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:55.624321Z\", \"updated_at\":\"2025-10-30T15:42:55.624321Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"b4134939-1048-41d8-ab73-180dbc0b94e4\", \"created_at\":\"2025-10-30T15:42:55.624321Z\", \"updated_at\":\"2025-10-30T15:42:55.624321Z\", \"subnet\":\"172.18.48.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"vpc_id\":\"20bf2a16-a253-4de9-ad46-5240a4e270ae\"}, {\"id\":\"bf40ace9-1861-4f97-9638-99dc75ccfff7\", \"created_at\":\"2025-10-30T15:42:55.624321Z\", \"updated_at\":\"2025-10-30T15:42:55.624321Z\", \"subnet\":\"fd5f:519c:6d46:2718::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"vpc_id\":\"20bf2a16-a253-4de9-ad46-5240a4e270ae\"}], \"vpc_id\":\"20bf2a16-a253-4de9-ad46-5240a4e270ae\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1109" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dcf3bf0b-a0cb-4f76-86b3-f89f9341074e + status: 200 OK + code: 200 + duration: 32.865143ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2405 + body: "{\"server\": {\"id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"name\": \"tf-srv-intelligent-brown\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-intelligent-brown\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d5d2f667-1595-4e25-a21c-059e87b3159c\", \"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:6c:f1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:56.461309+00:00\", \"modification_date\": \"2025-10-30T15:43:00.697045+00:00\", \"bootscript\": 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\": \"1301\", \"node_id\": \"31\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"private_network_id\": \"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"server_id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"mac_address\": \"02:00:00:1e:9e:0b\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:04.271314+00:00\", \"modification_date\": \"2025-10-30T15:43:48.526671+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"ffc78fd3-eb8b-4769-982c-9d2faa1c4f0d\", \"89715388-8dab-4ebc-a022-e6e2edc0cd8d\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2405" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ad553fe9-8ec8-446b-8905-53ee68dc0c8d + status: 200 OK + code: 200 + duration: 141.674591ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d5d2f667-1595-4e25-a21c-059e87b3159c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d5d2f667-1595-4e25-a21c-059e87b3159c\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8b940760-1b7a-4ba7-b98b-5f9e4f3b3afd + status: 404 Not Found + code: 404 + duration: 82.629938ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5d2f667-1595-4e25-a21c-059e87b3159c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"d5d2f667-1595-4e25-a21c-059e87b3159c\", \"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-30T15:42:56.588516Z\", \"updated_at\":\"2025-10-30T15:42:56.588516Z\", \"references\":[{\"id\":\"38e8205e-90c3-47d6-9dc7-2dd3e3e758f4\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"created_at\":\"2025-10-30T15:42:56.588516Z\", \"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: + - Thu, 30 Oct 2025 15:43:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c35bf050-1f15-4754-8966-f08911c1698f + status: 200 OK + code: 200 + duration: 105.885794ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7bb8f714-af52-4cbc-9d81-7925ce9b4615 + status: 200 OK + code: 200 + duration: 102.574261ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"private_network_id\": \"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"server_id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"mac_address\": \"02:00:00:1e:9e:0b\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:04.271314+00:00\", \"modification_date\": \"2025-10-30T15:43:48.526671+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"ffc78fd3-eb8b-4769-982c-9d2faa1c4f0d\", \"89715388-8dab-4ebc-a022-e6e2edc0cd8d\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:52 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8c708d33-a27c-424e-9bae-5fb9df17f835 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 99.360993ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - c67f7daa-0a5c-4a0c-93dd-cc093e3759e0 + 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=c67f7daa-0a5c-4a0c-93dd-cc093e3759e0&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1078 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"89715388-8dab-4ebc-a022-e6e2edc0cd8d\", \"address\":\"fd5f:519c:6d46:2718:3b26:66cb:fd6b:d230/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:43:04.783699Z\", \"updated_at\":\"2025-10-30T15:43:04.783699Z\", \"source\":{\"subnet_id\":\"bf40ace9-1861-4f97-9638-99dc75ccfff7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"mac_address\":\"02:00:00:1E:9E:0B\", \"name\":\"tf-srv-intelligent-brown\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"ffc78fd3-eb8b-4769-982c-9d2faa1c4f0d\", \"address\":\"172.18.48.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:43:04.646008Z\", \"updated_at\":\"2025-10-30T15:43:04.646008Z\", \"source\":{\"subnet_id\":\"b4134939-1048-41d8-ab73-180dbc0b94e4\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"mac_address\":\"02:00:00:1E:9E:0B\", \"name\":\"tf-srv-intelligent-brown\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1078" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cc1583b8-f23b-45c1-959d-70e9259bc155 + status: 200 OK + code: 200 + duration: 32.425809ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/private_nics/c67f7daa-0a5c-4a0c-93dd-cc093e3759e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"private_network_id\": \"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"server_id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"mac_address\": \"02:00:00:1e:9e:0b\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:04.271314+00:00\", \"modification_date\": \"2025-10-30T15:43:48.526671+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"ffc78fd3-eb8b-4769-982c-9d2faa1c4f0d\", \"89715388-8dab-4ebc-a022-e6e2edc0cd8d\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e158290c-b58a-48a6-82fc-d778448bd1b9 + status: 200 OK + code: 200 + duration: 125.85741ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2405 + body: "{\"server\": {\"id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"name\": \"tf-srv-intelligent-brown\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-intelligent-brown\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d5d2f667-1595-4e25-a21c-059e87b3159c\", \"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:6c:f1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:56.461309+00:00\", \"modification_date\": \"2025-10-30T15:43:00.697045+00:00\", \"bootscript\": 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\": \"1301\", \"node_id\": \"31\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"private_network_id\": \"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"server_id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"mac_address\": \"02:00:00:1e:9e:0b\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:04.271314+00:00\", \"modification_date\": \"2025-10-30T15:43:48.526671+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"ffc78fd3-eb8b-4769-982c-9d2faa1c4f0d\", \"89715388-8dab-4ebc-a022-e6e2edc0cd8d\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2405" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0f86b132-5452-4bbb-b6fb-dc22357a7776 + status: 200 OK + code: 200 + duration: 183.909301ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - 45816fed-dff9-47a2-9d17-a2bdbe39000a + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - c67f7daa-0a5c-4a0c-93dd-cc093e3759e0 + 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=45816fed-dff9-47a2-9d17-a2bdbe39000a&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=c67f7daa-0a5c-4a0c-93dd-cc093e3759e0&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1078 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"89715388-8dab-4ebc-a022-e6e2edc0cd8d\", \"address\":\"fd5f:519c:6d46:2718:3b26:66cb:fd6b:d230/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:43:04.783699Z\", \"updated_at\":\"2025-10-30T15:43:04.783699Z\", \"source\":{\"subnet_id\":\"bf40ace9-1861-4f97-9638-99dc75ccfff7\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"mac_address\":\"02:00:00:1E:9E:0B\", \"name\":\"tf-srv-intelligent-brown\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"ffc78fd3-eb8b-4769-982c-9d2faa1c4f0d\", \"address\":\"172.18.48.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:43:04.646008Z\", \"updated_at\":\"2025-10-30T15:43:04.646008Z\", \"source\":{\"subnet_id\":\"b4134939-1048-41d8-ab73-180dbc0b94e4\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"mac_address\":\"02:00:00:1E:9E:0B\", \"name\":\"tf-srv-intelligent-brown\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1078" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8d63f390-02f9-4c5a-b5aa-6108ee34f5ce + status: 200 OK + code: 200 + duration: 55.623074ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/private_nics/c67f7daa-0a5c-4a0c-93dd-cc093e3759e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\", \"private_network_id\": \"45816fed-dff9-47a2-9d17-a2bdbe39000a\", \"server_id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"mac_address\": \"02:00:00:1e:9e:0b\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:04.271314+00:00\", \"modification_date\": \"2025-10-30T15:43:48.526671+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"ffc78fd3-eb8b-4769-982c-9d2faa1c4f0d\", \"89715388-8dab-4ebc-a022-e6e2edc0cd8d\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b1995134-799c-4f78-9b2f-fb52b99dcb53 + status: 200 OK + code: 200 + duration: 132.500712ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/private_nics/c67f7daa-0a5c-4a0c-93dd-cc093e3759e0 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4c32a6f9-d774-4478-86d6-e3c026e24da2 + status: 204 No Content + code: 204 + duration: 427.435187ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/private_nics/c67f7daa-0a5c-4a0c-93dd-cc093e3759e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 148 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_private_nic\", \"resource_id\": \"c67f7daa-0a5c-4a0c-93dd-cc093e3759e0\"}" + headers: + Content-Length: + - "148" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 649246d0-cb43-4970-a8ae-11736605d920 + status: 404 Not Found + code: 404 + duration: 124.016206ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1901 + body: "{\"server\": {\"id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"name\": \"tf-srv-intelligent-brown\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-intelligent-brown\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d5d2f667-1595-4e25-a21c-059e87b3159c\", \"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:6c:f1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:56.461309+00:00\", \"modification_date\": \"2025-10-30T15:43:00.697045+00:00\", \"bootscript\": 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\": \"1301\", \"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: + - "1901" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1197ecf9-19a2-4d0b-81e2-ae8d92694931 + status: 200 OK + code: 200 + duration: 193.396418ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1947 + body: "{\"server\": {\"id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"name\": \"tf-srv-intelligent-brown\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-intelligent-brown\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d5d2f667-1595-4e25-a21c-059e87b3159c\", \"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:6c:f1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:56.461309+00:00\", \"modification_date\": \"2025-10-30T15:43:00.697045+00:00\", \"bootscript\": 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\": \"1301\", \"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: + - "1947" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d22d2513-8d13-437f-8e53-95406a2a63b3 + status: 200 OK + code: 200 + duration: 168.90253ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"180e57d3-80f0-42c1-a26f-ab4955476c39\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/action\", \"href_result\": \"/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"started_at\": \"2025-10-30T15:43:54.314473+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:54 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/180e57d3-80f0-42c1-a26f-ab4955476c39 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 08a1af5a-a8df-4b29-9752-7054ffbd4f1c + status: 202 Accepted + code: 202 + duration: 311.905563ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1910 + body: "{\"server\": {\"id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\", \"name\": \"tf-srv-intelligent-brown\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-intelligent-brown\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d5d2f667-1595-4e25-a21c-059e87b3159c\", \"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:6c:f1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:56.461309+00:00\", \"modification_date\": \"2025-10-30T15:43:54.069050+00:00\", \"bootscript\": 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\": \"1301\", \"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: + - "1910" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a04f6957-da44-4891-a266-1238b449cad8 + status: 200 OK + code: 200 + duration: 144.565635ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/45816fed-dff9-47a2-9d17-a2bdbe39000a + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5680ffc5-6311-4f74-adf2-5ff606f29b7b + status: 204 No Content + code: 204 + duration: 1.062307383s +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/20bf2a16-a253-4de9-ad46-5240a4e270ae + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a9794e4e-bbfe-4772-904f-9a03fbf3292a + status: 204 No Content + code: 204 + duration: 107.508959ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e36de3e9-d90d-4612-b2e2-b5810a249e7a + status: 404 Not Found + code: 404 + duration: 40.657351ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d5d2f667-1595-4e25-a21c-059e87b3159c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d5d2f667-1595-4e25-a21c-059e87b3159c\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 98a55b80-b0c7-493b-8697-19973496d7c0 + status: 404 Not Found + code: 404 + duration: 32.186039ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5d2f667-1595-4e25-a21c-059e87b3159c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"d5d2f667-1595-4e25-a21c-059e87b3159c\", \"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-30T15:42:56.588516Z\", \"updated_at\":\"2025-10-30T15:43:55.901989Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:43:55.901989Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 12e1053c-7ab0-4ee4-9e5d-dada90c4b754 + status: 200 OK + code: 200 + duration: 102.798853ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5d2f667-1595-4e25-a21c-059e87b3159c + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c503c262-65a3-4968-a019-f070ba4f1419 + status: 204 No Content + code: 204 + duration: 168.397493ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53a2f9a7-f80b-4fce-ad03-a4d512e0176d/private_nics/c67f7daa-0a5c-4a0c-93dd-cc093e3759e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"53a2f9a7-f80b-4fce-ad03-a4d512e0176d\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0e2e7521-0344-4624-848a-86c9a052fba8 + status: 404 Not Found + code: 404 + duration: 28.756195ms diff --git a/internal/services/instance/testdata/private-nic-tags.cassette.yaml b/internal/services/instance/testdata/private-nic-tags.cassette.yaml index 0a3bad0a4..58bcd4bd7 100644 --- a/internal/services/instance/testdata/private-nic-tags.cassette.yaml +++ b/internal/services/instance/testdata/private-nic-tags.cassette.yaml @@ -1,4486 +1,3565 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:23 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3716967c-9bf8-4a81-9191-c145c316b5b2 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 48.265892ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 118 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"TestAccPrivateNIC_Tags","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 420 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e71bc0ec-bf52-4e1b-8651-dac1e4a589e9 - status: 200 OK - code: 200 - duration: 85.166823ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:23 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2f6f1e1f-34a5-410c-bbf5-7f9d2eba61ba - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 55.447531ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/049f2263-f596-4861-9ee1-dd8134efdc26 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 420 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 96860d65-4d20-4e41-acdd-a05d6366ecae - status: 200 OK - code: 200 - duration: 26.094444ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cb0e49ae-f07b-433e-9086-981e0c3a9321 - status: 200 OK - code: 200 - duration: 38.177999ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 216 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"TestAccScalewayInstancePrivateNIC_Tags","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"049f2263-f596-4861-9ee1-dd8134efdc26","default_route_propagation_enabled":false}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1108 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 84ed1226-428e-4f53-a0b6-df4116a6bf5c - status: 200 OK - code: 200 - duration: 618.776296ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c0b88e63-53f0-4129-a832-aa096304ea35 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1108 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d220ab8b-31d7-4927-9067-e264ee774504 - status: 200 OK - code: 200 - duration: 25.193008ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 240 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1796 - uncompressed: false - 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: - - "1796" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:24 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 839b28b2-344b-4505-9c4b-c2fea9e6284f - status: 201 Created - code: 201 - duration: 1.077950564s - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 1796 - uncompressed: false - 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: - - "1796" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2df93e6b-e19b-43d2-b8bb-475a160bf020 - status: 200 OK - code: 200 - duration: 148.374605ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1796 - uncompressed: false - 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: - - "1796" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 562aa666-7317-4d02-ac7c-3119d10fcefb - status: 200 OK - code: 200 - duration: 130.536639ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1796 - uncompressed: false - 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: - - "1796" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b1c1f32d-87c7-4f24-b4b5-cf1f80809e04 - status: 200 OK - code: 200 - duration: 147.191733ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e - 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": "447bf1db-5e8c-4d79-999e-68acbcb9196e"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - efd48451-991d-4cb9-aade-bb232291777b - status: 404 Not Found - code: 404 - duration: 33.966044ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4697da19-676d-4f71-9d45-186a7840a5bd - status: 200 OK - code: 200 - duration: 92.659925ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/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:54:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 47d0ed06-234d-4ef3-801d-3ff9d3adcc5e - status: 200 OK - code: 200 - duration: 110.805685ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/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:54:25 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 40120871-31b1-42b4-9e97-9af9ada1cbb4 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 96.439352ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1750 - uncompressed: false - 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: - - "1750" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d201d96f-c18b-46c7-842a-af8edc29fc0c - status: 200 OK - code: 200 - duration: 129.960603ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 61 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"private_network_id":"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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8970332b-a860-4fc7-a6a3-c2b3e7c10cb0 - status: 201 Created - code: 201 - duration: 587.806228ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a7f03ae7-f725-46ff-9170-ee57f4be622a - status: 200 OK - code: 200 - duration: 112.336528ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4aa82dd3-9a77-4d41-8c7a-7cdbac89e990 - status: 200 OK - code: 200 - duration: 95.665505ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2208 - uncompressed: false - 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: - - "2208" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8043d4d7-330a-407c-8d62-dbbf7231741d - status: 200 OK - code: 200 - duration: 131.430472ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8b607abb-b42a-4e99-8c41-0ab468162362 - status: 200 OK - code: 200 - duration: 44.329111ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cdfe7997-ef12-420e-a7bc-df032ec7f6ab - status: 200 OK - code: 200 - duration: 101.824992ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/049f2263-f596-4861-9ee1-dd8134efdc26 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 420 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 40df8f15-c40f-447f-8de1-54d3dae15e67 - status: 200 OK - code: 200 - duration: 28.280812ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c0b88e63-53f0-4129-a832-aa096304ea35 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1108 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6fb24fe3-b2dc-458d-b84a-434acbcfc4a3 - status: 200 OK - code: 200 - duration: 29.59491ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2254 - uncompressed: false - 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: - - "2254" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e6a3c054-857d-4735-9048-857801b22819 - status: 200 OK - code: 200 - duration: 151.905409ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e - 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": "447bf1db-5e8c-4d79-999e-68acbcb9196e"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 96bfeffe-b291-4fbd-9ac1-857fc745036e - status: 404 Not Found - code: 404 - duration: 33.665812ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 46fce9ed-532a-4feb-9f06-536ed396a26b - status: 200 OK - code: 200 - duration: 97.828689ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/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:54:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d28421c3-b08b-47f3-b34c-d31331839b63 - status: 200 OK - code: 200 - duration: 92.270928ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:27 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5adb68fc-96b5-42d6-83ea-33542911af5d - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 91.835364ms - - 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: - 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=8845a971-e19e-46fe-be89-b7da8cd97ea2&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 82d6d2bb-268a-42a5-ab8f-43ed4d76d92c - status: 200 OK - code: 200 - duration: 31.485394ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8377e169-d85c-4e9e-b2be-e8f78732da91 - status: 200 OK - code: 200 - duration: 90.495057ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2208 - uncompressed: false - 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: - - "2208" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8948ffc1-4f7c-4f4e-a0d5-23ea675c55cf - status: 200 OK - code: 200 - duration: 136.581334ms - - 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: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e951968a-bde1-49c7-883a-e87cf006dd70 - status: 200 OK - code: 200 - duration: 64.537629ms - - 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/vpc/v2/regions/fr-par/vpcs/049f2263-f596-4861-9ee1-dd8134efdc26 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 420 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3e3b8f39-f3a1-45eb-b9e9-d33a6cba3147 - status: 200 OK - code: 200 - duration: 28.165106ms - - 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/c0b88e63-53f0-4129-a832-aa096304ea35 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1108 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e921a3e5-6111-418d-8a2c-b729ad2a3494 - status: 200 OK - code: 200 - duration: 29.149286ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2254 - uncompressed: false - 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: - - "2254" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - db8c5cf4-4087-47b3-9466-53c9097f9bf0 - status: 200 OK - code: 200 - duration: 144.015324ms - - 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/447bf1db-5e8c-4d79-999e-68acbcb9196e - 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": "447bf1db-5e8c-4d79-999e-68acbcb9196e"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ea19df52-0bde-4503-85db-6ba4920c9c52 - status: 404 Not Found - code: 404 - duration: 36.011338ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5d13194f-d475-43d7-8e76-cfcce5652207 - status: 200 OK - code: 200 - duration: 96.950377ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/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:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ee848c92-8cf3-4bf2-ae40-45aa31fd39f7 - status: 200 OK - code: 200 - duration: 91.510006ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5ac25889-3ec1-428b-b9ed-fed596510ad3 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 92.085661ms - - 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: - 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=8845a971-e19e-46fe-be89-b7da8cd97ea2&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0595df2f-7489-4585-898a-cd974150a6b6 - status: 200 OK - code: 200 - duration: 48.026365ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ad6827a7-449f-4a19-9448-9e1c76a7c566 - status: 200 OK - code: 200 - duration: 122.171199ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2254 - uncompressed: false - 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: - - "2254" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 915670fe-b232-4e88-9652-9490be914959 - status: 200 OK - code: 200 - duration: 144.912854ms - - 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: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 962a3d61-eafb-4079-b2e1-fb2b5bfa69da - status: 200 OK - code: 200 - duration: 49.4358ms - - id: 44 - 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: '{"tags":["tag1","tag2"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 489 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3154597d-e6b6-441d-946d-1940b224e189 - status: 200 OK - code: 200 - duration: 167.06156ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 489 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8b6844ac-5559-4841-b48c-bd040944554c - status: 200 OK - code: 200 - duration: 116.046376ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2222 - uncompressed: false - 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: - - "2222" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0500ea33-107a-4e30-b2f1-a28013961e20 - status: 200 OK - code: 200 - duration: 148.222493ms - - 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: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bcde6c74-0f84-4282-af12-686e6dafddc7 - status: 200 OK - code: 200 - duration: 44.664448ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 489 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 213701b2-2f43-474a-b261-eb5ed8375d65 - status: 200 OK - code: 200 - duration: 114.809904ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/049f2263-f596-4861-9ee1-dd8134efdc26 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 420 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 09874dc6-caeb-4c32-968c-4eb0370caca1 - status: 200 OK - code: 200 - duration: 30.697512ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c0b88e63-53f0-4129-a832-aa096304ea35 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1108 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0433b522-3777-4e91-83ca-fbc5c893c682 - status: 200 OK - code: 200 - duration: 29.622091ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2268 - uncompressed: false - 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: - - "2268" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f70c1875-4fa4-4be8-956a-24b5f3f3227e - status: 200 OK - code: 200 - duration: 131.961917ms - - 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/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e - 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": "447bf1db-5e8c-4d79-999e-68acbcb9196e"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 557ccce2-e474-4212-be9a-62aee47b995a - status: 404 Not Found - code: 404 - duration: 26.411517ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e311eb2c-2fc7-4159-90e7-0513e68c3596 - status: 200 OK - code: 200 - duration: 86.04653ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/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:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 552da1bc-6ac1-4bc9-a114-8aa6549a3c4c - status: 200 OK - code: 200 - duration: 96.816919ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 492 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9de137b3-a509-4b63-a106-3a1cc7ce6674 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 105.448229ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=8845a971-e19e-46fe-be89-b7da8cd97ea2&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fb511bcf-38eb-46cc-b543-8b4e7c06cfb6 - status: 200 OK - code: 200 - duration: 24.679459ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 489 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1e1ddf4d-34ba-491c-89fd-6bcd3d489843 - status: 200 OK - code: 200 - duration: 86.558988ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2268 - uncompressed: false - 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: - - "2268" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 47ba2d43-d004-4b8b-8de2-8f6200c578ba - status: 200 OK - code: 200 - duration: 163.513777ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 36435691-8f42-40d3-a36e-50f8c2307318 - status: 200 OK - code: 200 - duration: 50.11962ms - - 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/vpc/v2/regions/fr-par/vpcs/049f2263-f596-4861-9ee1-dd8134efdc26 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 420 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e36e40f8-941e-40df-be80-42d1264dc655 - status: 200 OK - code: 200 - duration: 31.352186ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c0b88e63-53f0-4129-a832-aa096304ea35 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1108 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f051fd78-33fa-4aac-9d81-4b59df9644a8 - status: 200 OK - code: 200 - duration: 26.084005ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2268 - uncompressed: false - 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: - - "2268" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f1c1f85f-8234-4916-ba38-1f4f1391ea74 - status: 200 OK - code: 200 - duration: 269.76656ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e - 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": "447bf1db-5e8c-4d79-999e-68acbcb9196e"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 981c12fb-6e65-4104-8f7e-466a138b9e99 - status: 404 Not Found - code: 404 - duration: 28.728841ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9f6b9a6b-99c4-477d-934f-469607d81ee2 - status: 200 OK - code: 200 - duration: 177.313432ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/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:54:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e80aeec8-5853-40bb-892c-8c0871da9345 - status: 200 OK - code: 200 - duration: 91.816109ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 492 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:31 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 933813fd-3bb9-4c1c-a156-ed7c6d6ec5c9 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 176.446901ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=8845a971-e19e-46fe-be89-b7da8cd97ea2&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6d68c326-f922-4497-be5e-e01defbe8b39 - status: 200 OK - code: 200 - duration: 61.770215ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 489 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9e8d0f42-5a43-4763-b036-732412ec2d18 - status: 200 OK - code: 200 - duration: 200.184188ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2268 - uncompressed: false - 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: - - "2268" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 932b151d-c53a-4405-9ca2-1e11e15f52c4 - status: 200 OK - code: 200 - duration: 144.667095ms - - 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: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 677c5139-c870-4fbe-98c2-2e516288820c - status: 200 OK - code: 200 - duration: 162.130059ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 11 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 25a64a56-fbe6-46c9-9cf2-fe816ca4e8ac - status: 200 OK - code: 200 - duration: 367.866732ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6dade40e-d5bf-47ce-aad0-b2d63de8e2cc - status: 200 OK - code: 200 - duration: 89.869579ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2208 - uncompressed: false - 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: - - "2208" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9e883ca6-535d-4235-b89e-72f4b9f4e93b - status: 200 OK - code: 200 - duration: 182.667203ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 643004b5-995f-4b3b-aa19-926838de3351 - status: 200 OK - code: 200 - duration: 54.649039ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9c87b2f6-b211-4310-8a9e-7b02555a66b4 - status: 200 OK - code: 200 - duration: 214.557175ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/049f2263-f596-4861-9ee1-dd8134efdc26 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 420 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9376813a-3197-47c6-a60f-69060bded898 - status: 200 OK - code: 200 - duration: 27.785207ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c0b88e63-53f0-4129-a832-aa096304ea35 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1108 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3e627eb5-ca80-4ff8-b0ba-7bba586099a7 - status: 200 OK - code: 200 - duration: 173.337507ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2208 - uncompressed: false - 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: - - "2208" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 505a1545-21fb-4718-b395-c4fe38c9be32 - status: 200 OK - code: 200 - duration: 206.531608ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e - 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": "447bf1db-5e8c-4d79-999e-68acbcb9196e"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ea4daafd-aef5-4b5f-a6f3-2e244cdd6e92 - status: 404 Not Found - code: 404 - duration: 35.577447ms - - id: 80 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9b1dc5fc-fa06-429f-83c3-d9b3831f8061 - status: 200 OK - code: 200 - duration: 87.13724ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/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:54:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d010f61f-1e61-41cd-8cf3-9fc8535e2ec3 - status: 200 OK - code: 200 - duration: 255.817789ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:34 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8acbf7ae-4baf-41e3-95e2-b6aab461f8fd - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 275.286605ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=8845a971-e19e-46fe-be89-b7da8cd97ea2&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 33125098-8b7e-4bad-8ec3-e225b1d1580e - status: 200 OK - code: 200 - duration: 28.837404ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fe41029d-25ec-4a9c-91b4-fbd6a384fc55 - status: 200 OK - code: 200 - duration: 235.037983ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2254 - uncompressed: false - 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: - - "2254" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 52589f05-39e5-4163-9555-5b7d9b9d3b64 - status: 200 OK - code: 200 - duration: 274.446985ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9236222c-ea24-41b6-9728-641a7d397818 - status: 200 OK - code: 200 - duration: 45.0127ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f71a3151-4f63-419c-b6b2-54abd53a00ba - status: 200 OK - code: 200 - duration: 238.597841ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 - 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:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0831e260-12f0-424d-99db-18d03eaddc11 - status: 204 No Content - code: 204 - duration: 329.599648ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 148 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8f4f1802-c41c-4c31-acac-c23e0effeca4 - status: 404 Not Found - code: 404 - duration: 218.314692ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1750 - uncompressed: false - 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: - - "1750" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7bafe5d5-82df-4e87-a452-f5480673f4fb - status: 200 OK - code: 200 - duration: 263.157736ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1796 - uncompressed: false - 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: - - "1796" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 446f6dad-6752-4b87-8747-322bd44ca865 - status: 200 OK - code: 200 - duration: 273.156814ms - - id: 92 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fd01d873-b593-4a1a-87f4-0903ae28266e - status: 200 OK - code: 200 - duration: 79.2916ms - - id: 93 - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:36 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/17ca0294-f4dd-48b3-95af-e68815b36783 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e67ea1b2-026e-4f78-8ae9-77951636898d - status: 202 Accepted - code: 202 - duration: 295.546521ms - - 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/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: 0 - uncompressed: false - body: "" - headers: - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 423aec09-5923-409a-84cb-7cb43e445462 - status: 204 No Content - code: 204 - duration: 1.085481173s - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1772 - uncompressed: false - 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-Length: - - "1772" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 98729ce1-350e-44a9-a516-80826df7db5c - status: 200 OK - code: 200 - duration: 170.815764ms - - 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/vpc/v2/regions/fr-par/vpcs/049f2263-f596-4861-9ee1-dd8134efdc26 - 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:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5d6b56a4-7a40-401c-a81f-ea31e944d3b2 - status: 204 No Content - code: 204 - duration: 264.056348ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1952 - uncompressed: false - 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: - - "1952" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 40f3a1af-96d6-460f-a2fe-d6131730f177 - status: 200 OK - code: 200 - duration: 201.116988ms - - id: 98 - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:42 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ed2064a3-2be0-4431-9a0f-f5743b42ba6e - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 74562e8a-1cf6-43e7-97c6-7a9a95546548 - status: 202 Accepted - code: 202 - duration: 306.617528ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1915 - uncompressed: false - 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: - - "1915" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 21226c7b-8e78-4724-a04d-877d238d8bbf - status: 200 OK - code: 200 - duration: 190.146634ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01 - 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": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b2039ba0-eb6c-42a2-889e-6db82e6b6b2e - status: 404 Not Found - code: 404 - duration: 47.436604ms - - 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/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e - 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": "447bf1db-5e8c-4d79-999e-68acbcb9196e"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8c68b17f-2926-4b57-b31d-2a6a2c5a82d7 - status: 404 Not Found - code: 404 - duration: 32.848265ms - - id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 498 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e73c0546-2694-4656-b634-f04325e4efd7 - status: 200 OK - code: 200 - duration: 81.011649ms - - id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/447bf1db-5e8c-4d79-999e-68acbcb9196e - 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:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7d2b4d8b-e000-4285-b19c-95a8793abf2f - status: 204 No Content - code: 204 - duration: 157.114257ms - - 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/1a7fb0bd-00f2-4b44-ab1d-e60352b08e01/private_nics/8845a971-e19e-46fe-be89-b7da8cd97ea2 - 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": "1a7fb0bd-00f2-4b44-ab1d-e60352b08e01"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ce272b38-9c88-4ba5-a755-f845f11e90f4 - status: 404 Not Found - code: 404 - duration: 26.629616ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + host: api.scaleway.com + body: "{\"name\":\"TestAccPrivateNIC_Tags\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"enable_routing\":false}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: "{\"id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\", \"name\":\"TestAccPrivateNIC_Tags\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:54.998472Z\", \"updated_at\":\"2025-10-30T15:42:54.998472Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fe21ff35-e56e-4a93-b643-c6e1070ec92e + status: 200 OK + code: 200 + duration: 117.833274ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c490cd57-ae1f-4a6f-8e71-40c2fc60a91b + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 132.803075ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/75c5c9e8-829c-4d2d-ab39-a2e98cff2b35 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: "{\"id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\", \"name\":\"TestAccPrivateNIC_Tags\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:54.998472Z\", \"updated_at\":\"2025-10-30T15:42:54.998472Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f4097bf4-2859-4548-96dc-c0471f85dc1f + status: 200 OK + code: 200 + duration: 30.556198ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cbcb5165-9678-4a39-b9d0-f3bfe2fbdff7 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 53.653765ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/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 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 161be4bb-2e3f-4c4d-9e90-488c5009aa13 + status: 200 OK + code: 200 + duration: 45.120779ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 216 + host: api.scaleway.com + body: "{\"name\":\"TestAccScalewayInstancePrivateNIC_Tags\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"subnets\":null,\"vpc_id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\",\"default_route_propagation_enabled\":false}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1108 + body: "{\"id\":\"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"name\":\"TestAccScalewayInstancePrivateNIC_Tags\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:55.114386Z\", \"updated_at\":\"2025-10-30T15:42:55.114386Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"99866c75-a6ab-4705-a5cd-c6b5e2ec7c89\", \"created_at\":\"2025-10-30T15:42:55.114386Z\", \"updated_at\":\"2025-10-30T15:42:55.114386Z\", \"subnet\":\"172.18.44.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"vpc_id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\"}, {\"id\":\"959394ea-8de3-45bd-a156-a2e9a7f160f5\", \"created_at\":\"2025-10-30T15:42:55.114386Z\", \"updated_at\":\"2025-10-30T15:42:55.114386Z\", \"subnet\":\"fd5f:519c:6d46:488d::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"vpc_id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\"}], \"vpc_id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1108" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 27dc3fc6-204c-4184-9377-287b2e240183 + status: 200 OK + code: 200 + duration: 747.751367ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/f262364f-4013-4ddb-9b6b-32ab3ab58f6a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1108 + body: "{\"id\":\"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"name\":\"TestAccScalewayInstancePrivateNIC_Tags\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:55.114386Z\", \"updated_at\":\"2025-10-30T15:42:55.114386Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"99866c75-a6ab-4705-a5cd-c6b5e2ec7c89\", \"created_at\":\"2025-10-30T15:42:55.114386Z\", \"updated_at\":\"2025-10-30T15:42:55.114386Z\", \"subnet\":\"172.18.44.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"vpc_id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\"}, {\"id\":\"959394ea-8de3-45bd-a156-a2e9a7f160f5\", \"created_at\":\"2025-10-30T15:42:55.114386Z\", \"updated_at\":\"2025-10-30T15:42:55.114386Z\", \"subnet\":\"fd5f:519c:6d46:488d::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"vpc_id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\"}], \"vpc_id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1108" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 73dd800d-da5f-413e-89eb-fdb20e9e5740 + status: 200 OK + code: 200 + duration: 23.129697ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 241 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-beautiful-davinci\",\"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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1752 + body: "{\"server\": {\"id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"name\": \"tf-srv-beautiful-davinci\", \"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-davinci\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:55.726317+00:00\", \"modification_date\": \"2025-10-30T15:42:55.726317+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8b69d65a-c294-4403-a4d7-ad0235b1bce1 + status: 201 Created + code: 201 + duration: 1.170534422s +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1752 + body: "{\"server\": {\"id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"name\": \"tf-srv-beautiful-davinci\", \"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-davinci\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:55.726317+00:00\", \"modification_date\": \"2025-10-30T15:42:55.726317+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 403fb642-03df-48b2-8663-28cfa0828320 + status: 200 OK + code: 200 + duration: 154.221001ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1752 + body: "{\"server\": {\"id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"name\": \"tf-srv-beautiful-davinci\", \"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-davinci\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:55.726317+00:00\", \"modification_date\": \"2025-10-30T15:42:55.726317+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b014987c-d85b-477a-83b1-d9c69d0e0067 + status: 200 OK + code: 200 + duration: 145.399263ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1752 + body: "{\"server\": {\"id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"name\": \"tf-srv-beautiful-davinci\", \"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-davinci\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:55.726317+00:00\", \"modification_date\": \"2025-10-30T15:42:55.726317+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6b580661-f2d9-4567-a6af-13f75d74ea32 + status: 200 OK + code: 200 + duration: 131.159001ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f9b32321-4598-4161-97a9-260bc21c91f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fdb90a19-4d25-4d0e-a13e-7fb1d59c6e15 + status: 404 Not Found + code: 404 + duration: 28.833096ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f9b32321-4598-4161-97a9-260bc21c91f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"f9b32321-4598-4161-97a9-260bc21c91f9\", \"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-30T15:42:55.877320Z\", \"updated_at\":\"2025-10-30T15:42:55.877320Z\", \"references\":[{\"id\":\"f7346edb-c529-4edc-a67e-0119660c77ed\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"created_at\":\"2025-10-30T15:42:55.877320Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 14426c8c-bd19-419f-ad66-84d893cb8e63 + status: 200 OK + code: 200 + duration: 94.03314ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bbd44c21-8101-47fe-8568-e72d8f2d7d96 + status: 200 OK + code: 200 + duration: 90.927484ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aecf144b-7e7c-4dda-8fc1-8ce769890a0e + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 89.575027ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1752 + body: "{\"server\": {\"id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"name\": \"tf-srv-beautiful-davinci\", \"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-davinci\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:55.726317+00:00\", \"modification_date\": \"2025-10-30T15:42:55.726317+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fa459d11-0c74-40b6-97e9-ff7823e1b1c5 + status: 200 OK + code: 200 + duration: 142.666788ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 61 + host: api.scaleway.com + body: "{\"private_network_id\":\"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:42:57.491531+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a2aeff3f-a943-4de3-a7b0-51bbd6a70d57 + status: 201 Created + code: 201 + duration: 621.420495ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics/30edfb61-a792-42fc-b1a5-779774061f59 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:42:57.491531+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e2f1b3a2-d5f2-4cf6-a687-4966664db702 + status: 200 OK + code: 200 + duration: 121.915872ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics/30edfb61-a792-42fc-b1a5-779774061f59 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:42:57.491531+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 331783ff-b7ee-45f6-9e64-3fb3ffef9e83 + status: 200 OK + code: 200 + duration: 96.699421ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2256 + body: "{\"server\": {\"id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"name\": \"tf-srv-beautiful-davinci\", \"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-davinci\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:55.726317+00:00\", \"modification_date\": \"2025-10-30T15:42:55.726317+00:00\", \"bootscript\": null, \"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\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:42:57.491531+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2256" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - badbd3e2-f119-436e-abd1-aa37ff90f8db + status: 200 OK + code: 200 + duration: 139.358752ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - f262364f-4013-4ddb-9b6b-32ab3ab58f6a + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 30edfb61-a792-42fc-b1a5-779774061f59 + 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=f262364f-4013-4ddb-9b6b-32ab3ab58f6a&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=30edfb61-a792-42fc-b1a5-779774061f59&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1078 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"3c91e721-bcbb-4967-ba96-bff8bcaaf357\", \"address\":\"fd5f:519c:6d46:488d:4213:aa15:f437:d2d1/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:42:57.728131Z\", \"updated_at\":\"2025-10-30T15:42:57.728131Z\", \"source\":{\"subnet_id\":\"959394ea-8de3-45bd-a156-a2e9a7f160f5\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"76318f62-91d5-4416-a956-deeeb391b3da\", \"address\":\"172.18.44.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:57.572742Z\", \"updated_at\":\"2025-10-30T15:42:57.572742Z\", \"source\":{\"subnet_id\":\"99866c75-a6ab-4705-a5cd-c6b5e2ec7c89\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1078" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 913c447c-b9c8-4bdc-ac08-e3be7c16927b + status: 200 OK + code: 200 + duration: 51.138206ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics/30edfb61-a792-42fc-b1a5-779774061f59 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:42:57.491531+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b553eac5-1cf0-4cb6-aac5-6b893411b099 + status: 200 OK + code: 200 + duration: 107.29127ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/75c5c9e8-829c-4d2d-ab39-a2e98cff2b35 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: "{\"id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\", \"name\":\"TestAccPrivateNIC_Tags\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:54.998472Z\", \"updated_at\":\"2025-10-30T15:42:54.998472Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 89cddce2-5017-4214-8a54-1d0babb6a5f0 + status: 200 OK + code: 200 + duration: 23.521222ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/f262364f-4013-4ddb-9b6b-32ab3ab58f6a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1108 + body: "{\"id\":\"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"name\":\"TestAccScalewayInstancePrivateNIC_Tags\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:55.114386Z\", \"updated_at\":\"2025-10-30T15:42:55.114386Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"99866c75-a6ab-4705-a5cd-c6b5e2ec7c89\", \"created_at\":\"2025-10-30T15:42:55.114386Z\", \"updated_at\":\"2025-10-30T15:42:55.114386Z\", \"subnet\":\"172.18.44.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"vpc_id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\"}, {\"id\":\"959394ea-8de3-45bd-a156-a2e9a7f160f5\", \"created_at\":\"2025-10-30T15:42:55.114386Z\", \"updated_at\":\"2025-10-30T15:42:55.114386Z\", \"subnet\":\"fd5f:519c:6d46:488d::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"vpc_id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\"}], \"vpc_id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1108" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a438f8e9-4014-47ed-81ef-b6ac3b386e43 + status: 200 OK + code: 200 + duration: 29.451215ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2210 + body: "{\"server\": {\"id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"name\": \"tf-srv-beautiful-davinci\", \"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-davinci\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:55.726317+00:00\", \"modification_date\": \"2025-10-30T15:42:55.726317+00:00\", \"bootscript\": null, \"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\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:42:57.491531+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2210" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8d28897c-49b7-4437-99a1-9dfd459070b6 + status: 200 OK + code: 200 + duration: 157.219757ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f9b32321-4598-4161-97a9-260bc21c91f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6afcce86-e9c2-4004-a989-747bb7be96ec + status: 404 Not Found + code: 404 + duration: 36.544541ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f9b32321-4598-4161-97a9-260bc21c91f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"f9b32321-4598-4161-97a9-260bc21c91f9\", \"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-30T15:42:55.877320Z\", \"updated_at\":\"2025-10-30T15:42:55.877320Z\", \"references\":[{\"id\":\"f7346edb-c529-4edc-a67e-0119660c77ed\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"created_at\":\"2025-10-30T15:42:55.877320Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5961863e-183c-4be9-9eda-3f8462edd9f8 + status: 200 OK + code: 200 + duration: 109.529979ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 07927e9c-5e4f-4df6-b648-23e7ad33faf8 + status: 200 OK + code: 200 + duration: 104.313975ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:42:57.491531+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 885a3ba0-f80b-4e7a-a3b5-b44ea9e8adef + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 134.278503ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 30edfb61-a792-42fc-b1a5-779774061f59 + 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=30edfb61-a792-42fc-b1a5-779774061f59&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1078 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"3c91e721-bcbb-4967-ba96-bff8bcaaf357\", \"address\":\"fd5f:519c:6d46:488d:4213:aa15:f437:d2d1/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:42:57.728131Z\", \"updated_at\":\"2025-10-30T15:42:57.728131Z\", \"source\":{\"subnet_id\":\"959394ea-8de3-45bd-a156-a2e9a7f160f5\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"76318f62-91d5-4416-a956-deeeb391b3da\", \"address\":\"172.18.44.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:57.572742Z\", \"updated_at\":\"2025-10-30T15:42:57.572742Z\", \"source\":{\"subnet_id\":\"99866c75-a6ab-4705-a5cd-c6b5e2ec7c89\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1078" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a8879d93-700a-4858-919c-5a4427babd52 + status: 200 OK + code: 200 + duration: 24.613952ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics/30edfb61-a792-42fc-b1a5-779774061f59 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:42:57.491531+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 407ecea1-1ab9-4e1f-9fa7-c9ed4d262e02 + status: 200 OK + code: 200 + duration: 121.456922ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2256 + body: "{\"server\": {\"id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"name\": \"tf-srv-beautiful-davinci\", \"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-davinci\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:55.726317+00:00\", \"modification_date\": \"2025-10-30T15:42:55.726317+00:00\", \"bootscript\": null, \"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\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:42:57.491531+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2256" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5580403f-4f4b-4157-b57f-13387ec6de40 + status: 200 OK + code: 200 + duration: 131.349289ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - f262364f-4013-4ddb-9b6b-32ab3ab58f6a + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 30edfb61-a792-42fc-b1a5-779774061f59 + 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=f262364f-4013-4ddb-9b6b-32ab3ab58f6a&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=30edfb61-a792-42fc-b1a5-779774061f59&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1078 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"3c91e721-bcbb-4967-ba96-bff8bcaaf357\", \"address\":\"fd5f:519c:6d46:488d:4213:aa15:f437:d2d1/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:42:57.728131Z\", \"updated_at\":\"2025-10-30T15:42:57.728131Z\", \"source\":{\"subnet_id\":\"959394ea-8de3-45bd-a156-a2e9a7f160f5\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"76318f62-91d5-4416-a956-deeeb391b3da\", \"address\":\"172.18.44.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:57.572742Z\", \"updated_at\":\"2025-10-30T15:42:57.572742Z\", \"source\":{\"subnet_id\":\"99866c75-a6ab-4705-a5cd-c6b5e2ec7c89\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1078" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 32d46730-292f-4bcb-8dad-3cf8b451bbbb + status: 200 OK + code: 200 + duration: 61.98897ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/75c5c9e8-829c-4d2d-ab39-a2e98cff2b35 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: "{\"id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\", \"name\":\"TestAccPrivateNIC_Tags\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:54.998472Z\", \"updated_at\":\"2025-10-30T15:42:54.998472Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a9318ee9-ba3c-415f-bf30-bd893ea683c3 + status: 200 OK + code: 200 + duration: 33.418808ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/f262364f-4013-4ddb-9b6b-32ab3ab58f6a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1108 + body: "{\"id\":\"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"name\":\"TestAccScalewayInstancePrivateNIC_Tags\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:55.114386Z\", \"updated_at\":\"2025-10-30T15:42:55.114386Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"99866c75-a6ab-4705-a5cd-c6b5e2ec7c89\", \"created_at\":\"2025-10-30T15:42:55.114386Z\", \"updated_at\":\"2025-10-30T15:42:55.114386Z\", \"subnet\":\"172.18.44.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"vpc_id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\"}, {\"id\":\"959394ea-8de3-45bd-a156-a2e9a7f160f5\", \"created_at\":\"2025-10-30T15:42:55.114386Z\", \"updated_at\":\"2025-10-30T15:42:55.114386Z\", \"subnet\":\"fd5f:519c:6d46:488d::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"vpc_id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\"}], \"vpc_id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1108" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 02901c66-79b4-443f-92b4-cebe12ed5042 + status: 200 OK + code: 200 + duration: 22.812092ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2210 + body: "{\"server\": {\"id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"name\": \"tf-srv-beautiful-davinci\", \"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-davinci\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:55.726317+00:00\", \"modification_date\": \"2025-10-30T15:42:55.726317+00:00\", \"bootscript\": null, \"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\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:42:57.491531+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2210" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d2b84e83-b41b-4bab-b7b1-2b14401600aa + status: 200 OK + code: 200 + duration: 195.710359ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f9b32321-4598-4161-97a9-260bc21c91f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 099266b0-30fc-43c6-ad26-8ab6960420d1 + status: 404 Not Found + code: 404 + duration: 31.338235ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f9b32321-4598-4161-97a9-260bc21c91f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"f9b32321-4598-4161-97a9-260bc21c91f9\", \"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-30T15:42:55.877320Z\", \"updated_at\":\"2025-10-30T15:42:55.877320Z\", \"references\":[{\"id\":\"f7346edb-c529-4edc-a67e-0119660c77ed\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"created_at\":\"2025-10-30T15:42:55.877320Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9929d97b-0445-4c64-ae17-3c2ba94490fb + status: 200 OK + code: 200 + duration: 96.335298ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d1ea7037-5ae7-408d-9223-d240c14320eb + status: 200 OK + code: 200 + duration: 107.961497ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:42:57.491531+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4d2ad4a4-cbce-432e-8225-a4a818ade632 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 103.227528ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 30edfb61-a792-42fc-b1a5-779774061f59 + 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=30edfb61-a792-42fc-b1a5-779774061f59&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1078 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"3c91e721-bcbb-4967-ba96-bff8bcaaf357\", \"address\":\"fd5f:519c:6d46:488d:4213:aa15:f437:d2d1/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:42:57.728131Z\", \"updated_at\":\"2025-10-30T15:42:57.728131Z\", \"source\":{\"subnet_id\":\"959394ea-8de3-45bd-a156-a2e9a7f160f5\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"76318f62-91d5-4416-a956-deeeb391b3da\", \"address\":\"172.18.44.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:57.572742Z\", \"updated_at\":\"2025-10-30T15:42:57.572742Z\", \"source\":{\"subnet_id\":\"99866c75-a6ab-4705-a5cd-c6b5e2ec7c89\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1078" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 557c4099-50c4-4e85-af15-b9a23e9890b4 + status: 200 OK + code: 200 + duration: 29.88582ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics/30edfb61-a792-42fc-b1a5-779774061f59 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:42:57.491531+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7a92abd8-4430-43b6-80e1-85d5f54da26b + status: 200 OK + code: 200 + duration: 106.485539ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2256 + body: "{\"server\": {\"id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"name\": \"tf-srv-beautiful-davinci\", \"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-davinci\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:55.726317+00:00\", \"modification_date\": \"2025-10-30T15:42:55.726317+00:00\", \"bootscript\": null, \"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\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:42:57.491531+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2256" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8bfd66ef-2363-4868-96d0-f71a89102ef7 + status: 200 OK + code: 200 + duration: 155.875155ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - f262364f-4013-4ddb-9b6b-32ab3ab58f6a + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 30edfb61-a792-42fc-b1a5-779774061f59 + 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=f262364f-4013-4ddb-9b6b-32ab3ab58f6a&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=30edfb61-a792-42fc-b1a5-779774061f59&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1078 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"3c91e721-bcbb-4967-ba96-bff8bcaaf357\", \"address\":\"fd5f:519c:6d46:488d:4213:aa15:f437:d2d1/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:42:57.728131Z\", \"updated_at\":\"2025-10-30T15:42:57.728131Z\", \"source\":{\"subnet_id\":\"959394ea-8de3-45bd-a156-a2e9a7f160f5\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"76318f62-91d5-4416-a956-deeeb391b3da\", \"address\":\"172.18.44.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:57.572742Z\", \"updated_at\":\"2025-10-30T15:42:57.572742Z\", \"source\":{\"subnet_id\":\"99866c75-a6ab-4705-a5cd-c6b5e2ec7c89\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1078" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d00e77c3-0e39-4a25-9bd1-35af063943bf + status: 200 OK + code: 200 + duration: 48.49609ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 24 + host: api.scaleway.com + body: "{\"tags\":[\"tag1\",\"tag2\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics/30edfb61-a792-42fc-b1a5-779774061f59 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 489 + body: "{\"private_nic\": {\"id\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:43:00.693890+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"tag1\", \"tag2\"], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}}" + headers: + Content-Length: + - "489" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 030f0843-8c74-4d91-83a6-f05e9a9bd418 + status: 200 OK + code: 200 + duration: 187.406974ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics/30edfb61-a792-42fc-b1a5-779774061f59 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 489 + body: "{\"private_nic\": {\"id\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:43:00.693890+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"tag1\", \"tag2\"], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}}" + headers: + Content-Length: + - "489" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5086508c-ac8c-405b-b17c-1586f97a5103 + status: 200 OK + code: 200 + duration: 92.863736ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2224 + body: "{\"server\": {\"id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"name\": \"tf-srv-beautiful-davinci\", \"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-davinci\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:55.726317+00:00\", \"modification_date\": \"2025-10-30T15:42:55.726317+00:00\", \"bootscript\": null, \"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\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:43:00.693890+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"tag1\", \"tag2\"], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2224" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 776ec426-6755-40ae-bf56-f4877be23191 + status: 200 OK + code: 200 + duration: 161.510406ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - f262364f-4013-4ddb-9b6b-32ab3ab58f6a + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 30edfb61-a792-42fc-b1a5-779774061f59 + 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=f262364f-4013-4ddb-9b6b-32ab3ab58f6a&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=30edfb61-a792-42fc-b1a5-779774061f59&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1078 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"3c91e721-bcbb-4967-ba96-bff8bcaaf357\", \"address\":\"fd5f:519c:6d46:488d:4213:aa15:f437:d2d1/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:42:57.728131Z\", \"updated_at\":\"2025-10-30T15:42:57.728131Z\", \"source\":{\"subnet_id\":\"959394ea-8de3-45bd-a156-a2e9a7f160f5\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"76318f62-91d5-4416-a956-deeeb391b3da\", \"address\":\"172.18.44.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:57.572742Z\", \"updated_at\":\"2025-10-30T15:42:57.572742Z\", \"source\":{\"subnet_id\":\"99866c75-a6ab-4705-a5cd-c6b5e2ec7c89\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1078" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5e85d6d1-ceed-4153-b3e6-a136e8a389e7 + status: 200 OK + code: 200 + duration: 52.097326ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics/30edfb61-a792-42fc-b1a5-779774061f59 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 489 + body: "{\"private_nic\": {\"id\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:43:00.693890+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"tag1\", \"tag2\"], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}}" + headers: + Content-Length: + - "489" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1a9b8024-ecf6-4705-add0-6097fdd593b8 + status: 200 OK + code: 200 + duration: 104.841716ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/75c5c9e8-829c-4d2d-ab39-a2e98cff2b35 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: "{\"id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\", \"name\":\"TestAccPrivateNIC_Tags\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:54.998472Z\", \"updated_at\":\"2025-10-30T15:42:54.998472Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 34b8e315-7d84-4339-a93f-cf41433093f0 + status: 200 OK + code: 200 + duration: 25.955819ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/f262364f-4013-4ddb-9b6b-32ab3ab58f6a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1108 + body: "{\"id\":\"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"name\":\"TestAccScalewayInstancePrivateNIC_Tags\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:55.114386Z\", \"updated_at\":\"2025-10-30T15:42:55.114386Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"99866c75-a6ab-4705-a5cd-c6b5e2ec7c89\", \"created_at\":\"2025-10-30T15:42:55.114386Z\", \"updated_at\":\"2025-10-30T15:42:55.114386Z\", \"subnet\":\"172.18.44.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"vpc_id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\"}, {\"id\":\"959394ea-8de3-45bd-a156-a2e9a7f160f5\", \"created_at\":\"2025-10-30T15:42:55.114386Z\", \"updated_at\":\"2025-10-30T15:42:55.114386Z\", \"subnet\":\"fd5f:519c:6d46:488d::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"vpc_id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\"}], \"vpc_id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1108" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d3ade8c5-5003-4b74-8ac6-1c95dbdf9927 + status: 200 OK + code: 200 + duration: 24.523662ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2270 + body: "{\"server\": {\"id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"name\": \"tf-srv-beautiful-davinci\", \"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-davinci\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:55.726317+00:00\", \"modification_date\": \"2025-10-30T15:42:55.726317+00:00\", \"bootscript\": null, \"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\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:43:00.693890+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"tag1\", \"tag2\"], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2270" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 96ae0ed1-5ff8-4723-b68c-d5ec3f024ddd + status: 200 OK + code: 200 + duration: 164.605311ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f9b32321-4598-4161-97a9-260bc21c91f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c2fa5c68-af16-4631-a29c-0634c68f8e63 + status: 404 Not Found + code: 404 + duration: 39.475159ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f9b32321-4598-4161-97a9-260bc21c91f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"f9b32321-4598-4161-97a9-260bc21c91f9\", \"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-30T15:42:55.877320Z\", \"updated_at\":\"2025-10-30T15:42:55.877320Z\", \"references\":[{\"id\":\"f7346edb-c529-4edc-a67e-0119660c77ed\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"created_at\":\"2025-10-30T15:42:55.877320Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c7dbcffe-db71-4a6d-9d42-a8bf6978d3af + status: 200 OK + code: 200 + duration: 87.453458ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 40f40343-9903-4ed5-8850-57394eaf5cee + status: 200 OK + code: 200 + duration: 109.614899ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 492 + body: "{\"private_nics\": [{\"id\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:43:00.693890+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"tag1\", \"tag2\"], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}]}" + headers: + Content-Length: + - "492" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3b0ad277-c09c-4230-8016-8dfe92290c1b + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 104.292385ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 30edfb61-a792-42fc-b1a5-779774061f59 + 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=30edfb61-a792-42fc-b1a5-779774061f59&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1078 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"3c91e721-bcbb-4967-ba96-bff8bcaaf357\", \"address\":\"fd5f:519c:6d46:488d:4213:aa15:f437:d2d1/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:42:57.728131Z\", \"updated_at\":\"2025-10-30T15:42:57.728131Z\", \"source\":{\"subnet_id\":\"959394ea-8de3-45bd-a156-a2e9a7f160f5\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"76318f62-91d5-4416-a956-deeeb391b3da\", \"address\":\"172.18.44.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:57.572742Z\", \"updated_at\":\"2025-10-30T15:42:57.572742Z\", \"source\":{\"subnet_id\":\"99866c75-a6ab-4705-a5cd-c6b5e2ec7c89\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1078" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ba848071-fe17-47d3-88c3-ef5ed1d3e641 + status: 200 OK + code: 200 + duration: 25.408241ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics/30edfb61-a792-42fc-b1a5-779774061f59 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 489 + body: "{\"private_nic\": {\"id\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:43:00.693890+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"tag1\", \"tag2\"], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}}" + headers: + Content-Length: + - "489" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c13ca630-c20f-4ec8-8c53-6f7762249e67 + status: 200 OK + code: 200 + duration: 104.925834ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2270 + body: "{\"server\": {\"id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"name\": \"tf-srv-beautiful-davinci\", \"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-davinci\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:55.726317+00:00\", \"modification_date\": \"2025-10-30T15:42:55.726317+00:00\", \"bootscript\": null, \"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\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:43:00.693890+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"tag1\", \"tag2\"], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2270" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ba3e8175-b318-4e08-838d-00568af1b96f + status: 200 OK + code: 200 + duration: 135.042597ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - f262364f-4013-4ddb-9b6b-32ab3ab58f6a + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 30edfb61-a792-42fc-b1a5-779774061f59 + 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=f262364f-4013-4ddb-9b6b-32ab3ab58f6a&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=30edfb61-a792-42fc-b1a5-779774061f59&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1078 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"3c91e721-bcbb-4967-ba96-bff8bcaaf357\", \"address\":\"fd5f:519c:6d46:488d:4213:aa15:f437:d2d1/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:42:57.728131Z\", \"updated_at\":\"2025-10-30T15:42:57.728131Z\", \"source\":{\"subnet_id\":\"959394ea-8de3-45bd-a156-a2e9a7f160f5\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"76318f62-91d5-4416-a956-deeeb391b3da\", \"address\":\"172.18.44.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:57.572742Z\", \"updated_at\":\"2025-10-30T15:42:57.572742Z\", \"source\":{\"subnet_id\":\"99866c75-a6ab-4705-a5cd-c6b5e2ec7c89\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1078" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4a25f947-ee61-4265-bb44-e110793a6bc6 + status: 200 OK + code: 200 + duration: 49.224266ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/75c5c9e8-829c-4d2d-ab39-a2e98cff2b35 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: "{\"id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\", \"name\":\"TestAccPrivateNIC_Tags\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:54.998472Z\", \"updated_at\":\"2025-10-30T15:42:54.998472Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2c0c5dd5-3f4a-4541-bdb6-2cb485f62d98 + status: 200 OK + code: 200 + duration: 58.077143ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/f262364f-4013-4ddb-9b6b-32ab3ab58f6a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1108 + body: "{\"id\":\"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"name\":\"TestAccScalewayInstancePrivateNIC_Tags\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:55.114386Z\", \"updated_at\":\"2025-10-30T15:42:55.114386Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"99866c75-a6ab-4705-a5cd-c6b5e2ec7c89\", \"created_at\":\"2025-10-30T15:42:55.114386Z\", \"updated_at\":\"2025-10-30T15:42:55.114386Z\", \"subnet\":\"172.18.44.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"vpc_id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\"}, {\"id\":\"959394ea-8de3-45bd-a156-a2e9a7f160f5\", \"created_at\":\"2025-10-30T15:42:55.114386Z\", \"updated_at\":\"2025-10-30T15:42:55.114386Z\", \"subnet\":\"fd5f:519c:6d46:488d::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"vpc_id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\"}], \"vpc_id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1108" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a2b54355-3477-4235-b29d-bffd713cfa1d + status: 200 OK + code: 200 + duration: 25.017869ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2224 + body: "{\"server\": {\"id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"name\": \"tf-srv-beautiful-davinci\", \"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-davinci\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:55.726317+00:00\", \"modification_date\": \"2025-10-30T15:42:55.726317+00:00\", \"bootscript\": null, \"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\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:43:00.693890+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"tag1\", \"tag2\"], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2224" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1bb8b0a9-5960-44e9-b7b5-a45b795120f4 + status: 200 OK + code: 200 + duration: 163.510559ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f9b32321-4598-4161-97a9-260bc21c91f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b29989de-dad3-4500-87c1-9f6abd79bad9 + status: 404 Not Found + code: 404 + duration: 67.572525ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f9b32321-4598-4161-97a9-260bc21c91f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"f9b32321-4598-4161-97a9-260bc21c91f9\", \"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-30T15:42:55.877320Z\", \"updated_at\":\"2025-10-30T15:42:55.877320Z\", \"references\":[{\"id\":\"f7346edb-c529-4edc-a67e-0119660c77ed\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"created_at\":\"2025-10-30T15:42:55.877320Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2adbd49f-1971-4ae3-88cf-3f96fbc91cb1 + status: 200 OK + code: 200 + duration: 99.704929ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 67ba88c6-8193-46d5-9bae-237c9de6aeea + status: 200 OK + code: 200 + duration: 100.410313ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 492 + body: "{\"private_nics\": [{\"id\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:43:00.693890+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"tag1\", \"tag2\"], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}]}" + headers: + Content-Length: + - "492" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7a094e89-28e3-486f-8662-f3ce52ca0689 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 104.118399ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 30edfb61-a792-42fc-b1a5-779774061f59 + 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=30edfb61-a792-42fc-b1a5-779774061f59&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1078 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"3c91e721-bcbb-4967-ba96-bff8bcaaf357\", \"address\":\"fd5f:519c:6d46:488d:4213:aa15:f437:d2d1/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:42:57.728131Z\", \"updated_at\":\"2025-10-30T15:42:57.728131Z\", \"source\":{\"subnet_id\":\"959394ea-8de3-45bd-a156-a2e9a7f160f5\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"76318f62-91d5-4416-a956-deeeb391b3da\", \"address\":\"172.18.44.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:57.572742Z\", \"updated_at\":\"2025-10-30T15:42:57.572742Z\", \"source\":{\"subnet_id\":\"99866c75-a6ab-4705-a5cd-c6b5e2ec7c89\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1078" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5fa850a8-db2e-4946-84b0-6c0390691a98 + status: 200 OK + code: 200 + duration: 25.719726ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics/30edfb61-a792-42fc-b1a5-779774061f59 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 489 + body: "{\"private_nic\": {\"id\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:43:00.693890+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"tag1\", \"tag2\"], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}}" + headers: + Content-Length: + - "489" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d2bd346e-ea33-4c82-a31b-1f63a508fe88 + status: 200 OK + code: 200 + duration: 114.283958ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2270 + body: "{\"server\": {\"id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"name\": \"tf-srv-beautiful-davinci\", \"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-davinci\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:55.726317+00:00\", \"modification_date\": \"2025-10-30T15:42:55.726317+00:00\", \"bootscript\": null, \"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\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:43:00.693890+00:00\", \"zone\": \"fr-par-1\", \"tags\": [\"tag1\", \"tag2\"], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2270" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 779aeae4-8a5f-4005-89f2-ac19ac1e488c + status: 200 OK + code: 200 + duration: 147.056975ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - f262364f-4013-4ddb-9b6b-32ab3ab58f6a + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 30edfb61-a792-42fc-b1a5-779774061f59 + 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=f262364f-4013-4ddb-9b6b-32ab3ab58f6a&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=30edfb61-a792-42fc-b1a5-779774061f59&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1078 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"3c91e721-bcbb-4967-ba96-bff8bcaaf357\", \"address\":\"fd5f:519c:6d46:488d:4213:aa15:f437:d2d1/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:42:57.728131Z\", \"updated_at\":\"2025-10-30T15:42:57.728131Z\", \"source\":{\"subnet_id\":\"959394ea-8de3-45bd-a156-a2e9a7f160f5\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"76318f62-91d5-4416-a956-deeeb391b3da\", \"address\":\"172.18.44.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:57.572742Z\", \"updated_at\":\"2025-10-30T15:42:57.572742Z\", \"source\":{\"subnet_id\":\"99866c75-a6ab-4705-a5cd-c6b5e2ec7c89\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1078" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d6284348-7c43-42c1-b28b-78500393be66 + status: 200 OK + code: 200 + duration: 49.727731ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 11 + host: api.scaleway.com + body: "{\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics/30edfb61-a792-42fc-b1a5-779774061f59 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:43:03.542781+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 90c16921-fd3e-49b3-9bbf-11d03d6eece5 + status: 200 OK + code: 200 + duration: 176.346687ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics/30edfb61-a792-42fc-b1a5-779774061f59 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:43:03.542781+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1ec4eb6a-00ae-4a05-9d10-c8fce0f7f58d + status: 200 OK + code: 200 + duration: 254.39913ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2256 + body: "{\"server\": {\"id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"name\": \"tf-srv-beautiful-davinci\", \"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-davinci\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:55.726317+00:00\", \"modification_date\": \"2025-10-30T15:42:55.726317+00:00\", \"bootscript\": null, \"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\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:43:03.542781+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2256" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 55fd7d59-c233-4f1b-819b-2818f08a729f + status: 200 OK + code: 200 + duration: 189.388934ms +- id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - f262364f-4013-4ddb-9b6b-32ab3ab58f6a + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 30edfb61-a792-42fc-b1a5-779774061f59 + 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=f262364f-4013-4ddb-9b6b-32ab3ab58f6a&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=30edfb61-a792-42fc-b1a5-779774061f59&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1078 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"3c91e721-bcbb-4967-ba96-bff8bcaaf357\", \"address\":\"fd5f:519c:6d46:488d:4213:aa15:f437:d2d1/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:42:57.728131Z\", \"updated_at\":\"2025-10-30T15:42:57.728131Z\", \"source\":{\"subnet_id\":\"959394ea-8de3-45bd-a156-a2e9a7f160f5\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"76318f62-91d5-4416-a956-deeeb391b3da\", \"address\":\"172.18.44.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:57.572742Z\", \"updated_at\":\"2025-10-30T15:42:57.572742Z\", \"source\":{\"subnet_id\":\"99866c75-a6ab-4705-a5cd-c6b5e2ec7c89\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1078" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4856a385-85eb-4a83-a648-b280bf158acf + status: 200 OK + code: 200 + duration: 47.825432ms +- id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics/30edfb61-a792-42fc-b1a5-779774061f59 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:43:03.542781+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 244b941b-4e09-4eca-8b15-45e12367b6a7 + status: 200 OK + code: 200 + duration: 115.028244ms +- id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/75c5c9e8-829c-4d2d-ab39-a2e98cff2b35 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: "{\"id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\", \"name\":\"TestAccPrivateNIC_Tags\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:54.998472Z\", \"updated_at\":\"2025-10-30T15:42:54.998472Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3c10838a-652b-4db7-89e3-f7eb09cdeed1 + status: 200 OK + code: 200 + duration: 27.675805ms +- id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/f262364f-4013-4ddb-9b6b-32ab3ab58f6a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1108 + body: "{\"id\":\"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"name\":\"TestAccScalewayInstancePrivateNIC_Tags\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:55.114386Z\", \"updated_at\":\"2025-10-30T15:42:55.114386Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"99866c75-a6ab-4705-a5cd-c6b5e2ec7c89\", \"created_at\":\"2025-10-30T15:42:55.114386Z\", \"updated_at\":\"2025-10-30T15:42:55.114386Z\", \"subnet\":\"172.18.44.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"vpc_id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\"}, {\"id\":\"959394ea-8de3-45bd-a156-a2e9a7f160f5\", \"created_at\":\"2025-10-30T15:42:55.114386Z\", \"updated_at\":\"2025-10-30T15:42:55.114386Z\", \"subnet\":\"fd5f:519c:6d46:488d::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"vpc_id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\"}], \"vpc_id\":\"75c5c9e8-829c-4d2d-ab39-a2e98cff2b35\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1108" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5bdf8168-0b00-4696-8c86-bd31f7facb26 + status: 200 OK + code: 200 + duration: 39.890689ms +- id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2210 + body: "{\"server\": {\"id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"name\": \"tf-srv-beautiful-davinci\", \"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-davinci\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:55.726317+00:00\", \"modification_date\": \"2025-10-30T15:42:55.726317+00:00\", \"bootscript\": null, \"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\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:43:03.542781+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2210" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 47a47406-1409-4dc7-9c69-9fbf4144c641 + status: 200 OK + code: 200 + duration: 171.850714ms +- id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f9b32321-4598-4161-97a9-260bc21c91f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dd9f07fe-0ffd-4156-bf98-56ef9ed948de + status: 404 Not Found + code: 404 + duration: 29.007723ms +- id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f9b32321-4598-4161-97a9-260bc21c91f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"f9b32321-4598-4161-97a9-260bc21c91f9\", \"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-30T15:42:55.877320Z\", \"updated_at\":\"2025-10-30T15:42:55.877320Z\", \"references\":[{\"id\":\"f7346edb-c529-4edc-a67e-0119660c77ed\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"created_at\":\"2025-10-30T15:42:55.877320Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2e67cf6c-6bf4-4a3d-b9ff-e1c021e04883 + status: 200 OK + code: 200 + duration: 99.242272ms +- id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b574a75f-cf75-4fe2-abbb-be8dbb948a11 + status: 200 OK + code: 200 + duration: 96.430288ms +- id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:43:03.542781+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 976d774b-020a-44f7-ace4-1efcbb831665 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 105.774997ms +- id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 30edfb61-a792-42fc-b1a5-779774061f59 + 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=30edfb61-a792-42fc-b1a5-779774061f59&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1078 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"3c91e721-bcbb-4967-ba96-bff8bcaaf357\", \"address\":\"fd5f:519c:6d46:488d:4213:aa15:f437:d2d1/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:42:57.728131Z\", \"updated_at\":\"2025-10-30T15:42:57.728131Z\", \"source\":{\"subnet_id\":\"959394ea-8de3-45bd-a156-a2e9a7f160f5\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"76318f62-91d5-4416-a956-deeeb391b3da\", \"address\":\"172.18.44.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:57.572742Z\", \"updated_at\":\"2025-10-30T15:42:57.572742Z\", \"source\":{\"subnet_id\":\"99866c75-a6ab-4705-a5cd-c6b5e2ec7c89\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1078" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 12c868e3-9da2-498c-907a-31a61ac41749 + status: 200 OK + code: 200 + duration: 34.19242ms +- id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics/30edfb61-a792-42fc-b1a5-779774061f59 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:43:03.542781+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e04a8421-8813-4880-ba86-5393fa3a1c44 + status: 200 OK + code: 200 + duration: 104.530984ms +- id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2210 + body: "{\"server\": {\"id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"name\": \"tf-srv-beautiful-davinci\", \"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-davinci\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:55.726317+00:00\", \"modification_date\": \"2025-10-30T15:42:55.726317+00:00\", \"bootscript\": null, \"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\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:43:03.542781+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2210" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 67093d3b-1421-4e54-b775-1282e523b56b + status: 200 OK + code: 200 + duration: 145.45466ms +- id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - f262364f-4013-4ddb-9b6b-32ab3ab58f6a + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 30edfb61-a792-42fc-b1a5-779774061f59 + 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=f262364f-4013-4ddb-9b6b-32ab3ab58f6a&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=30edfb61-a792-42fc-b1a5-779774061f59&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1078 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"3c91e721-bcbb-4967-ba96-bff8bcaaf357\", \"address\":\"fd5f:519c:6d46:488d:4213:aa15:f437:d2d1/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:42:57.728131Z\", \"updated_at\":\"2025-10-30T15:42:57.728131Z\", \"source\":{\"subnet_id\":\"959394ea-8de3-45bd-a156-a2e9a7f160f5\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"76318f62-91d5-4416-a956-deeeb391b3da\", \"address\":\"172.18.44.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:57.572742Z\", \"updated_at\":\"2025-10-30T15:42:57.572742Z\", \"source\":{\"subnet_id\":\"99866c75-a6ab-4705-a5cd-c6b5e2ec7c89\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"30edfb61-a792-42fc-b1a5-779774061f59\", \"mac_address\":\"02:00:00:1E:5E:5A\", \"name\":\"tf-srv-beautiful-davinci\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1078" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4dcae882-a63c-46f0-82dd-d072e6e5f171 + status: 200 OK + code: 200 + duration: 70.44835ms +- id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics/30edfb61-a792-42fc-b1a5-779774061f59 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"30edfb61-a792-42fc-b1a5-779774061f59\", \"private_network_id\": \"f262364f-4013-4ddb-9b6b-32ab3ab58f6a\", \"server_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"mac_address\": \"02:00:00:1e:5e:5a\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.232316+00:00\", \"modification_date\": \"2025-10-30T15:43:03.542781+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"76318f62-91d5-4416-a956-deeeb391b3da\", \"3c91e721-bcbb-4967-ba96-bff8bcaaf357\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a2acac3c-94db-4c51-aefd-cfb508dee9ac + status: 200 OK + code: 200 + duration: 96.202971ms +- id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics/30edfb61-a792-42fc-b1a5-779774061f59 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2e540463-cbbd-47a7-86e2-cad06f0d2251 + status: 204 No Content + code: 204 + duration: 325.069628ms +- id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics/30edfb61-a792-42fc-b1a5-779774061f59 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 148 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_private_nic\", \"resource_id\": \"30edfb61-a792-42fc-b1a5-779774061f59\"}" + headers: + Content-Length: + - "148" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 60a67163-ad4f-4c5d-8cbe-8ec0ed56f413 + status: 404 Not Found + code: 404 + duration: 96.002716ms +- id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1798 + body: "{\"server\": {\"id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"name\": \"tf-srv-beautiful-davinci\", \"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-davinci\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:55.726317+00:00\", \"modification_date\": \"2025-10-30T15:42:55.726317+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1798" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 548703d0-f3a3-47d0-b88c-32b4e871d6c0 + status: 200 OK + code: 200 + duration: 137.292709ms +- id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1798 + body: "{\"server\": {\"id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"name\": \"tf-srv-beautiful-davinci\", \"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-davinci\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:55.726317+00:00\", \"modification_date\": \"2025-10-30T15:42:55.726317+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1798" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 231b5609-ac67-4bb7-b36d-0dafe733a3e3 + status: 200 OK + code: 200 + duration: 123.400821ms +- id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f9b32321-4598-4161-97a9-260bc21c91f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"f9b32321-4598-4161-97a9-260bc21c91f9\", \"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-30T15:42:55.877320Z\", \"updated_at\":\"2025-10-30T15:42:55.877320Z\", \"references\":[{\"id\":\"f7346edb-c529-4edc-a67e-0119660c77ed\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"created_at\":\"2025-10-30T15:42:55.877320Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4170ab0c-4eaf-4258-b2d2-b8816337f41d + status: 200 OK + code: 200 + duration: 90.11983ms +- id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"05a76130-f67e-4d3b-9abd-51ad5fb6faf2\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/action\", \"href_result\": \"/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"started_at\": \"2025-10-30T15:43:06.766879+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:06 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/05a76130-f67e-4d3b-9abd-51ad5fb6faf2 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4f06aff7-d372-4ebd-8700-eb56dde0e2c1 + status: 202 Accepted + code: 202 + duration: 252.426522ms +- id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1820 + body: "{\"server\": {\"id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"name\": \"tf-srv-beautiful-davinci\", \"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-davinci\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\", \"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:6c:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:55.726317+00:00\", \"modification_date\": \"2025-10-30T15:43:06.563489+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: + - "1820" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 41443e0c-df5b-40f5-9912-4909d70779d2 + status: 200 OK + code: 200 + duration: 143.478022ms +- id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/f262364f-4013-4ddb-9b6b-32ab3ab58f6a + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6cc672f3-8a74-4caa-97e6-f3e6ff137d8b + status: 204 No Content + code: 204 + duration: 1.660996737s +- id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/75c5c9e8-829c-4d2d-ab39-a2e98cff2b35 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3062e8af-de30-4d52-b225-9e0bb8cf4d44 + status: 204 No Content + code: 204 + duration: 117.454576ms +- id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1908 + body: "{\"server\": {\"id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"name\": \"tf-srv-beautiful-davinci\", \"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-davinci\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\", \"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:6c:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:55.726317+00:00\", \"modification_date\": \"2025-10-30T15:43:09.688013+00:00\", \"bootscript\": 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: + - "1908" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - db48d710-5051-4b20-8eef-1629b38ac8e2 + status: 200 OK + code: 200 + duration: 120.345801ms +- id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"0caee62d-75bd-4ff9-b21c-52061a47c5b2\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/action\", \"href_result\": \"/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"started_at\": \"2025-10-30T15:43:12.303644+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0caee62d-75bd-4ff9-b21c-52061a47c5b2 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 41418353-034e-4ff4-914c-cfe6f1c7d4ad + status: 202 Accepted + code: 202 + duration: 277.239811ms +- id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1917 + body: "{\"server\": {\"id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\", \"name\": \"tf-srv-beautiful-davinci\", \"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-davinci\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\", \"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:6c:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:55.726317+00:00\", \"modification_date\": \"2025-10-30T15:43:12.082245+00:00\", \"bootscript\": 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: + - "1917" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4f09327e-ebe1-449c-bcbd-a4b7c91c212b + status: 200 OK + code: 200 + duration: 158.296691ms +- id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 62712edc-c747-418b-8c8a-854117f3bf29 + status: 404 Not Found + code: 404 + duration: 67.043414ms +- id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f9b32321-4598-4161-97a9-260bc21c91f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"f9b32321-4598-4161-97a9-260bc21c91f9\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0125c5d0-d70e-4c8b-ad9a-0878167a49bb + status: 404 Not Found + code: 404 + duration: 27.829645ms +- id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f9b32321-4598-4161-97a9-260bc21c91f9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 498 + body: "{\"id\":\"f9b32321-4598-4161-97a9-260bc21c91f9\", \"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-30T15:42:55.877320Z\", \"updated_at\":\"2025-10-30T15:43:14.109810Z\", \"references\":[], \"parent_snapshot_id\":\"36b4ce54-c67a-4f68-ab74-839515834352\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:43:14.109810Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "498" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9c5e0567-22c4-43cf-accf-28b959f0f31f + status: 200 OK + code: 200 + duration: 75.428844ms +- id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f9b32321-4598-4161-97a9-260bc21c91f9 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eb4e553a-691e-4d4d-8cae-d6e3e53897be + status: 204 No Content + code: 204 + duration: 172.86427ms +- id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/70c6f1f3-9025-4fba-9acb-b9e9bc4c451b/private_nics/30edfb61-a792-42fc-b1a5-779774061f59 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"70c6f1f3-9025-4fba-9acb-b9e9bc4c451b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 041939d1-45ef-4bc4-9d20-704a2e9cdb31 + status: 404 Not Found + code: 404 + duration: 26.412306ms 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 caefcff85..176c7744e 100644 --- a/internal/services/instance/testdata/private-nic-with-ipam.cassette.yaml +++ b/internal/services/instance/testdata/private-nic-with-ipam.cassette.yaml @@ -1,2971 +1,2390 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d9e64ec9-afa4-4bdc-b61e-fc104a81e8f3 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 38.19741ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 134 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"TestAccScalewayInstancePrivateNIC_IPAM","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 436 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 549e37de-6470-4362-b2d5-0f68cf79bbf6 - status: 200 OK - code: 200 - duration: 84.146093ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2abbfca1-8bd7-4df6-b165-193393029736 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 436 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b0ac081f-0f36-45f2-b4c7-b17456d04181 - status: 200 OK - code: 200 - duration: 25.109088ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 27af9078-87a2-42f7-a063-e8b4848e1640 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 102.1413ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 53161cb1-76aa-44d7-a555-0be874603d32 - status: 200 OK - code: 200 - duration: 55.49374ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 230 - transfer_encoding: [] - trailer: {} - 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":"2abbfca1-8bd7-4df6-b165-193393029736","default_route_propagation_enabled":false}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1108 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9ce4256f-d786-4e84-9f0a-22913af00a5f - status: 200 OK - code: 200 - duration: 620.248586ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2cf19cd2-6dd5-426d-9862-81553bcc7c44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1108 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0c77fbd3-bfd8-4df6-9cb4-74d20e055e86 - status: 200 OK - code: 200 - duration: 23.864671ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 174 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 369 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bf87bc1c-2371-4c9b-a11c-ece73023d08b - status: 200 OK - code: 200 - duration: 186.005726ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/30e95f88-9a23-441c-acb7-520fc93698d0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 369 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fd94d20b-e884-4512-8b60-5d5f36f922b6 - status: 200 OK - code: 200 - duration: 30.168287ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2cf19cd2-6dd5-426d-9862-81553bcc7c44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1108 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 501f90b9-4fe7-4507-85f1-784cc5827dba - status: 200 OK - code: 200 - duration: 24.486113ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 256 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"TestAccScalewayInstancePrivateNIC_IPAM","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1777 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b27cdde5-04b3-443e-a008-f1eef80d26af - status: 201 Created - code: 201 - duration: 1.679929758s - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1777 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f2ea2345-4cc5-45e7-8a3c-6196ce9c8272 - status: 200 OK - code: 200 - duration: 355.158783ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1823 - 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": "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: - - "1823" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a4239815-874d-4bee-bde5-cd7aad9b3cf3 - status: 200 OK - code: 200 - duration: 143.866807ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/9aa594db-ae68-4848-a017-1f48e4fc8b3a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d86f14a9-efd1-4dcd-b4a1-57bc1f1836b2 - status: 200 OK - code: 200 - duration: 85.214732ms - - id: 14 - 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/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7d5a289b-2887-4422-9288-a66ecbcd214d - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b5d6a152-a898-4c26-ab41-7325b5d4b7d1 - status: 202 Accepted - code: 202 - duration: 261.662518ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1845 - 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": "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: - - "1845" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 417963b5-c52f-45e5-9d0d-f412942018c2 - status: 200 OK - code: 200 - duration: 128.494224ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1979 - 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": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' - headers: - Content-Length: - - "1979" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - db1b6a43-e1e1-465e-962e-b2d810500dc6 - status: 200 OK - code: 200 - duration: 152.001239ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1979 - 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": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' - headers: - Content-Length: - - "1979" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a1df2849-6e0e-45a9-a2b0-0ee6ccf004b1 - status: 200 OK - code: 200 - duration: 161.410092ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9aa594db-ae68-4848-a017-1f48e4fc8b3a - 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": "9aa594db-ae68-4848-a017-1f48e4fc8b3a"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 05c7b409-f3ff-48d9-aa1d-254f351c73b7 - status: 404 Not Found - code: 404 - duration: 30.722114ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9aa594db-ae68-4848-a017-1f48e4fc8b3a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cf34de05-d2f0-4d5e-ac1b-c1d53ad4cae3 - status: 200 OK - code: 200 - duration: 73.259669ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/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:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f3c6cb06-129d-42ae-8d4e-fbd56b81a7ea - status: 200 OK - code: 200 - duration: 104.538334ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/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:46 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7cbde819-a553-4480-b739-740ae5492bbd - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 96.082324ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1979 - 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": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' - headers: - Content-Length: - - "1979" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - daf83874-5097-48a0-9026-79346eaf5250 - status: 200 OK - code: 200 - duration: 157.792237ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 116 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/private_nics - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 433 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d46a8557-09b8-449e-b73d-33f7e09fbfd7 - status: 201 Created - code: 201 - duration: 644.230061ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 433 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 65561d7b-2907-426f-abce-034c04bd61ce - status: 200 OK - code: 200 - duration: 99.511996ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 433 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6f6a8c37-a2ef-4b48-92ab-adf1bca5546c - status: 200 OK - code: 200 - duration: 117.614116ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 433 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f61294ab-62a0-4c18-bf3f-9434dcf45eb9 - status: 200 OK - code: 200 - duration: 97.036591ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 433 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 82ffc8f4-11a7-4b5f-8072-26a682e0aa00 - status: 200 OK - code: 200 - duration: 94.464242ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 433 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9d1ad71e-aa1e-4229-9b50-522b4f3a362e - status: 200 OK - code: 200 - duration: 106.781284ms - - 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/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: 433 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 878722cd-dbc6-422d-8f31-5d19b68c4b1f - status: 200 OK - code: 200 - duration: 90.410866ms - - 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/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: 433 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4f8e226a-6f59-4730-8635-db6b8823909c - status: 200 OK - code: 200 - duration: 95.815092ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 433 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 825deac7-82bd-4293-8f39-0e20c5a5a7e2 - status: 200 OK - code: 200 - duration: 107.655434ms - - 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/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: - - 9055b3fc-6f86-4cbb-b768-e051dfde4ce6 - status: 200 OK - code: 200 - duration: 106.903619ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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 - 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: - - 02f00db7-233c-417e-9d1e-664f2e5d264c - status: 200 OK - code: 200 - 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 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+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/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:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f2fcdaa2-ff2e-416e-8c9e-0aa68436a876 - status: 200 OK - code: 200 - duration: 89.450865ms - - 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: - 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: - - 9cdd851d-d3c7-46b1-a3be-29f448d39c5b - status: 200 OK - code: 200 - duration: 105.326571ms - - 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/vpc/v2/regions/fr-par/vpcs/2abbfca1-8bd7-4df6-b165-193393029736 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 436 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bee62d71-a35d-49a0-b671-ed302a7a39c3 - status: 200 OK - code: 200 - duration: 25.432807ms - - 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/vpc/v2/regions/fr-par/private-networks/2cf19cd2-6dd5-426d-9862-81553bcc7c44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1108 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c3f4caf9-6f7e-4b5b-bb8c-031ce2065aa7 - status: 200 OK - code: 200 - duration: 21.853274ms - - 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/ipam/v1/regions/fr-par/ips/30e95f88-9a23-441c-acb7-520fc93698d0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 525 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7bb334e0-3cfb-40d5-86a2-58179ec0b8c9 - status: 200 OK - code: 200 - duration: 29.935417ms - - 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/vpc/v2/regions/fr-par/private-networks/2cf19cd2-6dd5-426d-9862-81553bcc7c44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1108 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 615a70bd-aca9-4fad-a73b-119a6a95c74f - status: 200 OK - code: 200 - duration: 27.139248ms - - 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/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2351 - 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}}' - headers: - Content-Length: - - "2351" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - abea152c-21d3-43f0-a18c-17644da72ea8 - status: 200 OK - code: 200 - duration: 131.564253ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9aa594db-ae68-4848-a017-1f48e4fc8b3a - 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": "9aa594db-ae68-4848-a017-1f48e4fc8b3a"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c217bf3d-2ec9-447a-ad37-66cc997e0cdb - status: 404 Not Found - code: 404 - duration: 28.924567ms - - id: 45 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9aa594db-ae68-4848-a017-1f48e4fc8b3a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f31fb644-bd4a-491d-992b-f172db42cdf3 - status: 200 OK - code: 200 - duration: 96.091001ms - - 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/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/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:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7a5ffc9d-7257-49e7-9000-03284ce8c3f8 - status: 200 OK - code: 200 - duration: 104.20233ms - - 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/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 438 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8a28cc1a-117c-47f5-9ce4-6aa9aa79b235 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 109.900935ms - - 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: - 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=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:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b4bdd5ba-28bf-4302-9a55-a72e907c5710 - status: 200 OK - code: 200 - duration: 23.261306ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e3eef4cf-82bb-4e03-92a3-08ee86038eab - status: 200 OK - code: 200 - duration: 96.067237ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2351 - 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}}' - headers: - Content-Length: - - "2351" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9f531937-c408-44cc-9a3c-095a74fa193b - status: 200 OK - code: 200 - duration: 173.734828ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - 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:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fc8f8414-71b0-4b66-9ad2-0f1781c7a81d - status: 200 OK - code: 200 - duration: 47.388011ms - - 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: - 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:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 05dfe3aa-ed77-4277-a465-1d6fb671b8d2 - status: 200 OK - code: 200 - duration: 93.391174ms - - 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/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:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1cf18402-ee5a-4c2b-8a1b-475c841ca99e - status: 200 OK - code: 200 - duration: 102.974844ms - - 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/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/private_nics/6017c538-2898-4ce7-871d-bf79de68f23f - 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:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 74ee5e59-46e6-40ac-979c-3fc528ad29a5 - status: 204 No Content - code: 204 - duration: 322.326253ms - - 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/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: 148 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f33f1919-3e60-4832-971b-a168e0a7d543 - status: 404 Not Found - code: 404 - duration: 102.613658ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 2 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/30e95f88-9a23-441c-acb7-520fc93698d0 - 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:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9cc57fd8-dda0-4ee1-9b27-62d2fa860e50 - status: 204 No Content - code: 204 - duration: 47.30189ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1979 - 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": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' - headers: - Content-Length: - - "1979" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6e5360c3-4981-4023-9da5-76ce31180810 - status: 200 OK - code: 200 - duration: 174.533293ms - - 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/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1979 - 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": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' - headers: - Content-Length: - - "1979" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - adb6fa28-fb14-49f7-b13c-503418117208 - status: 200 OK - code: 200 - duration: 177.603353ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 22 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"terminate"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:31 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d8164589-2587-441d-8537-d1e5c290ecee - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f8ee4a41-c6d6-4b9f-8b05-0a448b4960db - status: 202 Accepted - code: 202 - duration: 289.608303ms - - 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/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1896 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0991df97-b4ba-4ed2-adb7-424703b2520e - status: 200 OK - code: 200 - duration: 185.914925ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2cf19cd2-6dd5-426d-9862-81553bcc7c44 - 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:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 901f709d-3326-490f-8157-2fa901721baf - status: 204 No Content - code: 204 - duration: 1.128186423s - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2abbfca1-8bd7-4df6-b165-193393029736 - 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:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f951c038-46ce-4de0-9802-810083f53eb5 - status: 204 No Content - code: 204 - duration: 223.918007ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1942 - 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": "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: - - "1942" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 04126af2-6d82-4bca-bf54-638e9d01de20 - status: 200 OK - code: 200 - duration: 343.561496ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1942 - 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": "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: - - "1942" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ee8a533a-ba68-40f9-b51e-ac0abfa54b6b - status: 200 OK - code: 200 - duration: 178.725276ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a - 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": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 302ff5fe-5b1e-4854-a799-113bd036a69d - status: 404 Not Found - code: 404 - duration: 38.714444ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9aa594db-ae68-4848-a017-1f48e4fc8b3a - 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": "9aa594db-ae68-4848-a017-1f48e4fc8b3a"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 32d77952-e56a-4a5a-b5ff-883010aeaf99 - status: 404 Not Found - code: 404 - duration: 28.391591ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9aa594db-ae68-4848-a017-1f48e4fc8b3a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0ad6abb8-7dad-4f6c-918c-2064a385d69a - status: 200 OK - code: 200 - duration: 86.491756ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9aa594db-ae68-4848-a017-1f48e4fc8b3a - 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:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c4818fa9-07be-4eba-975b-728ff614896b - status: 204 No Content - code: 204 - duration: 167.572203ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 143 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "b54a6bf1-751f-4d6d-ae4a-a67c16d4b78a"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a659fd00-d28f-4bb1-a720-6ba3d658c199 - status: 404 Not Found - code: 404 - duration: 27.891976ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 558000dd-4743-431f-bac9-46c8f563c0da + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 64.283414ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 134 + host: api.scaleway.com + body: "{\"name\":\"TestAccScalewayInstancePrivateNIC_IPAM\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"enable_routing\":false}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 436 + body: "{\"id\":\"48de50d3-1c11-4cb6-b5de-d11821c2ff22\", \"name\":\"TestAccScalewayInstancePrivateNIC_IPAM\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:54.301490Z\", \"updated_at\":\"2025-10-30T15:42:54.301490Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6321e464-923c-47be-8040-b969a5d689bf + status: 200 OK + code: 200 + duration: 107.95824ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3664aac4-e1e3-4fd2-8cf3-6520a150a788 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 44.701001ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/48de50d3-1c11-4cb6-b5de-d11821c2ff22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 436 + body: "{\"id\":\"48de50d3-1c11-4cb6-b5de-d11821c2ff22\", \"name\":\"TestAccScalewayInstancePrivateNIC_IPAM\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:54.301490Z\", \"updated_at\":\"2025-10-30T15:42:54.301490Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ea159f0c-98fe-4e64-a119-b137a1ea0d9e + status: 200 OK + code: 200 + duration: 27.116185ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 26ac225e-169f-462f-ba30-29c73494a102 + status: 200 OK + code: 200 + duration: 48.785583ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 230 + host: api.scaleway.com + body: "{\"name\":\"TestAccScalewayInstancePrivateNIC_IPAM\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"subnets\":[\"172.16.64.0/22\"],\"vpc_id\":\"48de50d3-1c11-4cb6-b5de-d11821c2ff22\",\"default_route_propagation_enabled\":false}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1108 + body: "{\"id\":\"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"name\":\"TestAccScalewayInstancePrivateNIC_IPAM\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:54.436217Z\", \"updated_at\":\"2025-10-30T15:42:54.436217Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"21659d0c-a546-4aff-a15a-70d80e70b08c\", \"created_at\":\"2025-10-30T15:42:54.436217Z\", \"updated_at\":\"2025-10-30T15:42:54.436217Z\", \"subnet\":\"172.16.64.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"vpc_id\":\"48de50d3-1c11-4cb6-b5de-d11821c2ff22\"}, {\"id\":\"9c3d586e-7f21-4be0-94ee-d28a683f81d3\", \"created_at\":\"2025-10-30T15:42:54.436217Z\", \"updated_at\":\"2025-10-30T15:42:54.436217Z\", \"subnet\":\"fd5f:519c:6d46:3c2f::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"vpc_id\":\"48de50d3-1c11-4cb6-b5de-d11821c2ff22\"}], \"vpc_id\":\"48de50d3-1c11-4cb6-b5de-d11821c2ff22\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1108" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3ad79713-52d8-4527-ad2b-29f9ae8e6f49 + status: 200 OK + code: 200 + duration: 544.981065ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/85da76b0-8e38-4fed-8047-9bb9e09b18d3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1108 + body: "{\"id\":\"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"name\":\"TestAccScalewayInstancePrivateNIC_IPAM\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:54.436217Z\", \"updated_at\":\"2025-10-30T15:42:54.436217Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"21659d0c-a546-4aff-a15a-70d80e70b08c\", \"created_at\":\"2025-10-30T15:42:54.436217Z\", \"updated_at\":\"2025-10-30T15:42:54.436217Z\", \"subnet\":\"172.16.64.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"vpc_id\":\"48de50d3-1c11-4cb6-b5de-d11821c2ff22\"}, {\"id\":\"9c3d586e-7f21-4be0-94ee-d28a683f81d3\", \"created_at\":\"2025-10-30T15:42:54.436217Z\", \"updated_at\":\"2025-10-30T15:42:54.436217Z\", \"subnet\":\"fd5f:519c:6d46:3c2f::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"vpc_id\":\"48de50d3-1c11-4cb6-b5de-d11821c2ff22\"}], \"vpc_id\":\"48de50d3-1c11-4cb6-b5de-d11821c2ff22\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1108" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bcb9257c-c507-4053-b84a-634ed8c6f347 + status: 200 OK + code: 200 + duration: 29.613059ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 174 + host: api.scaleway.com + body: "{\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"source\":{\"private_network_id\":\"85da76b0-8e38-4fed-8047-9bb9e09b18d3\"},\"is_ipv6\":false,\"address\":\"172.16.64.7\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 369 + body: "{\"id\":\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\", \"address\":\"172.16.64.7/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:55.077273Z\", \"updated_at\":\"2025-10-30T15:42:55.077273Z\", \"source\":{\"subnet_id\":\"21659d0c-a546-4aff-a15a-70d80e70b08c\"}, \"resource\":null, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}" + headers: + Content-Length: + - "369" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8744b473-8e37-4f99-8402-a84da3f2cd5b + status: 200 OK + code: 200 + duration: 183.752686ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 369 + body: "{\"id\":\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\", \"address\":\"172.16.64.7/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:55.077273Z\", \"updated_at\":\"2025-10-30T15:42:55.077273Z\", \"source\":{\"subnet_id\":\"21659d0c-a546-4aff-a15a-70d80e70b08c\"}, \"resource\":null, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}" + headers: + Content-Length: + - "369" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dde83abd-f7cc-4e30-9bae-b2230260182d + status: 200 OK + code: 200 + duration: 26.154ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/85da76b0-8e38-4fed-8047-9bb9e09b18d3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1108 + body: "{\"id\":\"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"name\":\"TestAccScalewayInstancePrivateNIC_IPAM\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:54.436217Z\", \"updated_at\":\"2025-10-30T15:42:54.436217Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"21659d0c-a546-4aff-a15a-70d80e70b08c\", \"created_at\":\"2025-10-30T15:42:54.436217Z\", \"updated_at\":\"2025-10-30T15:42:54.436217Z\", \"subnet\":\"172.16.64.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"vpc_id\":\"48de50d3-1c11-4cb6-b5de-d11821c2ff22\"}, {\"id\":\"9c3d586e-7f21-4be0-94ee-d28a683f81d3\", \"created_at\":\"2025-10-30T15:42:54.436217Z\", \"updated_at\":\"2025-10-30T15:42:54.436217Z\", \"subnet\":\"fd5f:519c:6d46:3c2f::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"vpc_id\":\"48de50d3-1c11-4cb6-b5de-d11821c2ff22\"}], \"vpc_id\":\"48de50d3-1c11-4cb6-b5de-d11821c2ff22\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1108" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b2c533e2-67f6-467c-8fad-4c003893abc0 + status: 200 OK + code: 200 + duration: 46.569616ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 256 + host: api.scaleway.com + body: "{\"name\":\"TestAccScalewayInstancePrivateNIC_IPAM\",\"dynamic_ip_required\":false,\"commercial_type\":\"PLAY2-MICRO\",\"image\":\"8ac1fe52-01dc-4dc1-8578-73ec5d126648\",\"volumes\":{\"0\":{\"boot\":false}},\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1823 + body: "{\"server\": {\"id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"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\": \"7f359bf7-85ef-49a3-967d-f6c2db48dfbd\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ed\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:54.962569+00:00\", \"modification_date\": \"2025-10-30T15:42:54.962569+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1823" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0f8d09b2-bc03-4bc4-8132-b9f52bbf0e87 + status: 201 Created + code: 201 + duration: 1.334431291s +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1823 + body: "{\"server\": {\"id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"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\": \"7f359bf7-85ef-49a3-967d-f6c2db48dfbd\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ed\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:54.962569+00:00\", \"modification_date\": \"2025-10-30T15:42:54.962569+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1823" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a9dc6084-b35a-4fe5-a5db-8d51e06c8ce0 + status: 200 OK + code: 200 + duration: 179.208503ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1777 + body: "{\"server\": {\"id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"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\": \"7f359bf7-85ef-49a3-967d-f6c2db48dfbd\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ed\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:54.962569+00:00\", \"modification_date\": \"2025-10-30T15:42:54.962569+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 95eea945-14c1-4601-9919-3c526188d335 + status: 200 OK + code: 200 + duration: 172.434376ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7f359bf7-85ef-49a3-967d-f6c2db48dfbd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"7f359bf7-85ef-49a3-967d-f6c2db48dfbd\", \"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-30T15:42:55.094109Z\", \"updated_at\":\"2025-10-30T15:42:55.094109Z\", \"references\":[{\"id\":\"3ad10316-2d56-4009-86d3-d24c4fd1696a\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"d3928c50-db4c-4eba-bd21-d864e0983146\", \"created_at\":\"2025-10-30T15:42:55.094109Z\", \"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: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 24587d41-a63b-4f2a-8431-38e8780cdeda + status: 200 OK + code: 200 + duration: 92.321358ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"9196cfee-0662-4702-9aaf-0619600d892b\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/d3928c50-db4c-4eba-bd21-d864e0983146/action\", \"href_result\": \"/servers/d3928c50-db4c-4eba-bd21-d864e0983146\", \"started_at\": \"2025-10-30T15:42:56.394771+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9196cfee-0662-4702-9aaf-0619600d892b + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bf477c56-cf77-4ace-9829-773a857fea35 + status: 202 Accepted + code: 202 + duration: 279.939737ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1799 + body: "{\"server\": {\"id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"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\": \"7f359bf7-85ef-49a3-967d-f6c2db48dfbd\", \"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:6c:ed\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:54.962569+00:00\", \"modification_date\": \"2025-10-30T15:42:56.177421+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: + - "1799" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f904f5b9-9454-4f97-9f01-f905bcc1e4cc + status: 200 OK + code: 200 + duration: 203.079922ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1978 + body: "{\"server\": {\"id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"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\": \"7f359bf7-85ef-49a3-967d-f6c2db48dfbd\", \"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:6c:ed\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:54.962569+00:00\", \"modification_date\": \"2025-10-30T15:42:58.720524+00:00\", \"bootscript\": 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\": \"97\"}, \"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: + - "1978" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9b414d3c-56e7-4774-b59f-99528654a7b0 + status: 200 OK + code: 200 + duration: 147.41726ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1932 + body: "{\"server\": {\"id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"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\": \"7f359bf7-85ef-49a3-967d-f6c2db48dfbd\", \"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:6c:ed\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:54.962569+00:00\", \"modification_date\": \"2025-10-30T15:42:58.720524+00:00\", \"bootscript\": 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\": \"97\"}, \"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: + - "1932" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - da1db072-4656-4e91-a383-5e82e5333fa4 + status: 200 OK + code: 200 + duration: 135.260847ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7f359bf7-85ef-49a3-967d-f6c2db48dfbd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"7f359bf7-85ef-49a3-967d-f6c2db48dfbd\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5214218a-1266-4047-802e-a27b024fadf8 + status: 404 Not Found + code: 404 + duration: 30.585634ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7f359bf7-85ef-49a3-967d-f6c2db48dfbd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"7f359bf7-85ef-49a3-967d-f6c2db48dfbd\", \"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-30T15:42:55.094109Z\", \"updated_at\":\"2025-10-30T15:42:55.094109Z\", \"references\":[{\"id\":\"3ad10316-2d56-4009-86d3-d24c4fd1696a\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"d3928c50-db4c-4eba-bd21-d864e0983146\", \"created_at\":\"2025-10-30T15:42:55.094109Z\", \"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: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8d85cc5b-3b21-491c-9ad4-d1693a4d834f + status: 200 OK + code: 200 + duration: 93.759868ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a9d81c89-546c-4051-86c6-54bc2e5765c9 + status: 200 OK + code: 200 + duration: 108.067968ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 001b1147-ee9d-44fc-b596-11b522b50d90 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 112.97386ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1978 + body: "{\"server\": {\"id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"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\": \"7f359bf7-85ef-49a3-967d-f6c2db48dfbd\", \"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:6c:ed\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:54.962569+00:00\", \"modification_date\": \"2025-10-30T15:42:58.720524+00:00\", \"bootscript\": 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\": \"97\"}, \"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: + - "1978" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8ce9e83a-ec7d-40e6-830f-16b2f91d7d9b + status: 200 OK + code: 200 + duration: 168.667532ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 116 + host: api.scaleway.com + body: "{\"private_network_id\":\"85da76b0-8e38-4fed-8047-9bb9e09b18d3\",\"ipam_ip_ids\":[\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/private_nics + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 433 + body: "{\"private_nic\": {\"id\": \"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"private_network_id\": \"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"server_id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"mac_address\": \"02:00:00:12:a7:17\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:02.496070+00:00\", \"modification_date\": \"2025-10-30T15:43:02.496070+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\"]}}" + headers: + Content-Length: + - "433" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d3dc1e81-bbf5-4562-b2ac-7214dad9c46c + status: 201 Created + code: 201 + duration: 651.926174ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/private_nics/70b252e1-599e-47b6-ad35-85d23b6d6eb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 433 + body: "{\"private_nic\": {\"id\": \"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"private_network_id\": \"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"server_id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"mac_address\": \"02:00:00:12:a7:17\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:02.496070+00:00\", \"modification_date\": \"2025-10-30T15:43:02.496070+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\"]}}" + headers: + Content-Length: + - "433" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2975f0d1-1a74-4c01-a6e3-9f0a4c6e2c2b + status: 200 OK + code: 200 + duration: 77.423223ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/private_nics/70b252e1-599e-47b6-ad35-85d23b6d6eb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 433 + body: "{\"private_nic\": {\"id\": \"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"private_network_id\": \"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"server_id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"mac_address\": \"02:00:00:12:a7:17\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:02.496070+00:00\", \"modification_date\": \"2025-10-30T15:43:02.496070+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\"]}}" + headers: + Content-Length: + - "433" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9f5ecc09-61c7-4768-aaca-4f9527c68983 + status: 200 OK + code: 200 + duration: 92.179845ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/private_nics/70b252e1-599e-47b6-ad35-85d23b6d6eb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 433 + body: "{\"private_nic\": {\"id\": \"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"private_network_id\": \"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"server_id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"mac_address\": \"02:00:00:12:a7:17\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:02.496070+00:00\", \"modification_date\": \"2025-10-30T15:43:02.496070+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\"]}}" + headers: + Content-Length: + - "433" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3dcd1028-2254-49bd-a330-d750eb0c364e + status: 200 OK + code: 200 + duration: 89.98554ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/private_nics/70b252e1-599e-47b6-ad35-85d23b6d6eb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 433 + body: "{\"private_nic\": {\"id\": \"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"private_network_id\": \"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"server_id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"mac_address\": \"02:00:00:12:a7:17\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:02.496070+00:00\", \"modification_date\": \"2025-10-30T15:43:02.496070+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\"]}}" + headers: + Content-Length: + - "433" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 88f49d94-154e-47b8-aea1-3565bc27a2cb + status: 200 OK + code: 200 + duration: 104.608682ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/private_nics/70b252e1-599e-47b6-ad35-85d23b6d6eb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 433 + body: "{\"private_nic\": {\"id\": \"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"private_network_id\": \"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"server_id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"mac_address\": \"02:00:00:12:a7:17\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:02.496070+00:00\", \"modification_date\": \"2025-10-30T15:43:02.496070+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\"]}}" + headers: + Content-Length: + - "433" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2686e7aa-9ef8-40cd-9e5a-6e0be8b220c6 + status: 200 OK + code: 200 + duration: 85.228949ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/private_nics/70b252e1-599e-47b6-ad35-85d23b6d6eb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 433 + body: "{\"private_nic\": {\"id\": \"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"private_network_id\": \"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"server_id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"mac_address\": \"02:00:00:12:a7:17\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:02.496070+00:00\", \"modification_date\": \"2025-10-30T15:43:02.496070+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\"]}}" + headers: + Content-Length: + - "433" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2a31bcd3-bf77-4daa-81dc-3acf2546591a + status: 200 OK + code: 200 + duration: 91.114199ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/private_nics/70b252e1-599e-47b6-ad35-85d23b6d6eb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 433 + body: "{\"private_nic\": {\"id\": \"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"private_network_id\": \"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"server_id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"mac_address\": \"02:00:00:12:a7:17\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:02.496070+00:00\", \"modification_date\": \"2025-10-30T15:43:02.496070+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\"]}}" + headers: + Content-Length: + - "433" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a70cef5b-3ef3-4f68-a8d8-2a0121e29d43 + status: 200 OK + code: 200 + duration: 108.804105ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/private_nics/70b252e1-599e-47b6-ad35-85d23b6d6eb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 433 + body: "{\"private_nic\": {\"id\": \"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"private_network_id\": \"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"server_id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"mac_address\": \"02:00:00:12:a7:17\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:02.496070+00:00\", \"modification_date\": \"2025-10-30T15:43:02.496070+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\"]}}" + headers: + Content-Length: + - "433" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 31cd7526-e7c1-4b7c-8cea-d78eea6f6f77 + status: 200 OK + code: 200 + duration: 108.783778ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/private_nics/70b252e1-599e-47b6-ad35-85d23b6d6eb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 433 + body: "{\"private_nic\": {\"id\": \"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"private_network_id\": \"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"server_id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"mac_address\": \"02:00:00:12:a7:17\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:02.496070+00:00\", \"modification_date\": \"2025-10-30T15:43:02.496070+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\"]}}" + headers: + Content-Length: + - "433" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0ed6d9bc-6ac7-4380-a614-06d23d8c0854 + status: 200 OK + code: 200 + duration: 113.135032ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/private_nics/70b252e1-599e-47b6-ad35-85d23b6d6eb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 435 + body: "{\"private_nic\": {\"id\": \"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"private_network_id\": \"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"server_id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"mac_address\": \"02:00:00:12:a7:17\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.496070+00:00\", \"modification_date\": \"2025-10-30T15:43:44.397805+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\"]}}" + headers: + Content-Length: + - "435" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dfebda53-e399-4b3d-ba64-1acfaf2e98d3 + status: 200 OK + code: 200 + duration: 100.808178ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/private_nics/70b252e1-599e-47b6-ad35-85d23b6d6eb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 435 + body: "{\"private_nic\": {\"id\": \"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"private_network_id\": \"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"server_id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"mac_address\": \"02:00:00:12:a7:17\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.496070+00:00\", \"modification_date\": \"2025-10-30T15:43:44.397805+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\"]}}" + headers: + Content-Length: + - "435" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d71383c6-83c2-4431-b511-b8510f41b871 + status: 200 OK + code: 200 + duration: 104.450371ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2350 + body: "{\"server\": {\"id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"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\": \"7f359bf7-85ef-49a3-967d-f6c2db48dfbd\", \"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:6c:ed\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:54.962569+00:00\", \"modification_date\": \"2025-10-30T15:42:58.720524+00:00\", \"bootscript\": 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\": \"97\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"private_network_id\": \"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"server_id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"mac_address\": \"02:00:00:12:a7:17\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.496070+00:00\", \"modification_date\": \"2025-10-30T15:43:44.397805+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2350" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 481362db-2143-4131-bfcf-64b3ce23e061 + status: 200 OK + code: 200 + duration: 154.437733ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - 85da76b0-8e38-4fed-8047-9bb9e09b18d3 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 70b252e1-599e-47b6-ad35-85d23b6d6eb8 + 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=85da76b0-8e38-4fed-8047-9bb9e09b18d3&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=70b252e1-599e-47b6-ad35-85d23b6d6eb8&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 552 + body: "{\"total_count\":1, \"ips\":[{\"id\":\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\", \"address\":\"172.16.64.7/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:55.077273Z\", \"updated_at\":\"2025-10-30T15:43:02.972109Z\", \"source\":{\"subnet_id\":\"21659d0c-a546-4aff-a15a-70d80e70b08c\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"mac_address\":\"02:00:00:12:A7:17\", \"name\":\"TestAccScalewayInstancePrivateNIC_IPAM\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "552" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 28335843-c4c4-4b40-966c-6eab28601687 + status: 200 OK + code: 200 + duration: 53.105261ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + is_ipv6: + - "false" + order_by: + - created_at_desc + page: + - "1" + resource_id: + - 70b252e1-599e-47b6-ad35-85d23b6d6eb8 + 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=70b252e1-599e-47b6-ad35-85d23b6d6eb8&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 552 + body: "{\"total_count\":1, \"ips\":[{\"id\":\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\", \"address\":\"172.16.64.7/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:55.077273Z\", \"updated_at\":\"2025-10-30T15:43:02.972109Z\", \"source\":{\"subnet_id\":\"21659d0c-a546-4aff-a15a-70d80e70b08c\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"mac_address\":\"02:00:00:12:A7:17\", \"name\":\"TestAccScalewayInstancePrivateNIC_IPAM\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "552" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 73dd168e-df5a-4a4b-8326-ae43ccdccd2a + status: 200 OK + code: 200 + duration: 114.709345ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/private_nics/70b252e1-599e-47b6-ad35-85d23b6d6eb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 435 + body: "{\"private_nic\": {\"id\": \"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"private_network_id\": \"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"server_id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"mac_address\": \"02:00:00:12:a7:17\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.496070+00:00\", \"modification_date\": \"2025-10-30T15:43:44.397805+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\"]}}" + headers: + Content-Length: + - "435" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e2a1e2f7-6e27-4105-8797-ce9210d6d33b + status: 200 OK + code: 200 + duration: 96.893003ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + is_ipv6: + - "false" + order_by: + - created_at_desc + page: + - "1" + resource_id: + - 70b252e1-599e-47b6-ad35-85d23b6d6eb8 + 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=70b252e1-599e-47b6-ad35-85d23b6d6eb8&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 552 + body: "{\"total_count\":1, \"ips\":[{\"id\":\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\", \"address\":\"172.16.64.7/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:55.077273Z\", \"updated_at\":\"2025-10-30T15:43:02.972109Z\", \"source\":{\"subnet_id\":\"21659d0c-a546-4aff-a15a-70d80e70b08c\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"mac_address\":\"02:00:00:12:A7:17\", \"name\":\"TestAccScalewayInstancePrivateNIC_IPAM\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "552" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 89a8ff57-5231-4ab2-a755-e6fbddb9270b + status: 200 OK + code: 200 + duration: 85.277324ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/48de50d3-1c11-4cb6-b5de-d11821c2ff22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 436 + body: "{\"id\":\"48de50d3-1c11-4cb6-b5de-d11821c2ff22\", \"name\":\"TestAccScalewayInstancePrivateNIC_IPAM\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:54.301490Z\", \"updated_at\":\"2025-10-30T15:42:54.301490Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5fb2c56d-d23d-44bc-80ff-9a74655e887c + status: 200 OK + code: 200 + duration: 25.3792ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/85da76b0-8e38-4fed-8047-9bb9e09b18d3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1108 + body: "{\"id\":\"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"name\":\"TestAccScalewayInstancePrivateNIC_IPAM\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:54.436217Z\", \"updated_at\":\"2025-10-30T15:42:54.436217Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"21659d0c-a546-4aff-a15a-70d80e70b08c\", \"created_at\":\"2025-10-30T15:42:54.436217Z\", \"updated_at\":\"2025-10-30T15:42:54.436217Z\", \"subnet\":\"172.16.64.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"vpc_id\":\"48de50d3-1c11-4cb6-b5de-d11821c2ff22\"}, {\"id\":\"9c3d586e-7f21-4be0-94ee-d28a683f81d3\", \"created_at\":\"2025-10-30T15:42:54.436217Z\", \"updated_at\":\"2025-10-30T15:42:54.436217Z\", \"subnet\":\"fd5f:519c:6d46:3c2f::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"vpc_id\":\"48de50d3-1c11-4cb6-b5de-d11821c2ff22\"}], \"vpc_id\":\"48de50d3-1c11-4cb6-b5de-d11821c2ff22\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1108" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a78f740e-7e75-47b5-b92b-e2bb13a03ae5 + status: 200 OK + code: 200 + duration: 24.241636ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 525 + body: "{\"id\":\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\", \"address\":\"172.16.64.7/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:55.077273Z\", \"updated_at\":\"2025-10-30T15:43:02.972109Z\", \"source\":{\"subnet_id\":\"21659d0c-a546-4aff-a15a-70d80e70b08c\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"mac_address\":\"02:00:00:12:A7:17\", \"name\":\"TestAccScalewayInstancePrivateNIC_IPAM\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}" + headers: + Content-Length: + - "525" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9b42fa3b-3bca-4ffa-959a-8b0dba0e805f + status: 200 OK + code: 200 + duration: 29.912514ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/85da76b0-8e38-4fed-8047-9bb9e09b18d3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1108 + body: "{\"id\":\"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"name\":\"TestAccScalewayInstancePrivateNIC_IPAM\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:54.436217Z\", \"updated_at\":\"2025-10-30T15:42:54.436217Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"21659d0c-a546-4aff-a15a-70d80e70b08c\", \"created_at\":\"2025-10-30T15:42:54.436217Z\", \"updated_at\":\"2025-10-30T15:42:54.436217Z\", \"subnet\":\"172.16.64.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"vpc_id\":\"48de50d3-1c11-4cb6-b5de-d11821c2ff22\"}, {\"id\":\"9c3d586e-7f21-4be0-94ee-d28a683f81d3\", \"created_at\":\"2025-10-30T15:42:54.436217Z\", \"updated_at\":\"2025-10-30T15:42:54.436217Z\", \"subnet\":\"fd5f:519c:6d46:3c2f::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"vpc_id\":\"48de50d3-1c11-4cb6-b5de-d11821c2ff22\"}], \"vpc_id\":\"48de50d3-1c11-4cb6-b5de-d11821c2ff22\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1108" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 696d336b-1b0a-460c-a0d3-4617aa415d28 + status: 200 OK + code: 200 + duration: 21.947081ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2350 + body: "{\"server\": {\"id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"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\": \"7f359bf7-85ef-49a3-967d-f6c2db48dfbd\", \"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:6c:ed\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:54.962569+00:00\", \"modification_date\": \"2025-10-30T15:42:58.720524+00:00\", \"bootscript\": 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\": \"97\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"private_network_id\": \"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"server_id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"mac_address\": \"02:00:00:12:a7:17\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.496070+00:00\", \"modification_date\": \"2025-10-30T15:43:44.397805+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2350" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 58d4a66d-8b38-499a-afb1-e5391aec81da + status: 200 OK + code: 200 + duration: 159.120618ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7f359bf7-85ef-49a3-967d-f6c2db48dfbd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"7f359bf7-85ef-49a3-967d-f6c2db48dfbd\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fb1b5927-f229-4ec8-b208-ac3d829f17fb + status: 404 Not Found + code: 404 + duration: 26.730855ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7f359bf7-85ef-49a3-967d-f6c2db48dfbd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"7f359bf7-85ef-49a3-967d-f6c2db48dfbd\", \"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-30T15:42:55.094109Z\", \"updated_at\":\"2025-10-30T15:42:55.094109Z\", \"references\":[{\"id\":\"3ad10316-2d56-4009-86d3-d24c4fd1696a\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"d3928c50-db4c-4eba-bd21-d864e0983146\", \"created_at\":\"2025-10-30T15:42:55.094109Z\", \"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: + - Thu, 30 Oct 2025 15:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d97e0521-bd24-42d6-8583-f17f502dffa2 + status: 200 OK + code: 200 + duration: 75.907557ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4e73a934-afbf-410e-ba97-8ca506f13d88 + status: 200 OK + code: 200 + duration: 90.714223ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 438 + body: "{\"private_nics\": [{\"id\": \"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"private_network_id\": \"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"server_id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"mac_address\": \"02:00:00:12:a7:17\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.496070+00:00\", \"modification_date\": \"2025-10-30T15:43:44.397805+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\"]}]}" + headers: + Content-Length: + - "438" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:50 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - afce1235-12db-4c94-8423-155cf405626c + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 122.095491ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 70b252e1-599e-47b6-ad35-85d23b6d6eb8 + 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=70b252e1-599e-47b6-ad35-85d23b6d6eb8&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 552 + body: "{\"total_count\":1, \"ips\":[{\"id\":\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\", \"address\":\"172.16.64.7/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:55.077273Z\", \"updated_at\":\"2025-10-30T15:43:02.972109Z\", \"source\":{\"subnet_id\":\"21659d0c-a546-4aff-a15a-70d80e70b08c\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"mac_address\":\"02:00:00:12:A7:17\", \"name\":\"TestAccScalewayInstancePrivateNIC_IPAM\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "552" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fa65ea67-27e0-442c-b795-4c98fdda50f3 + status: 200 OK + code: 200 + duration: 27.408215ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/private_nics/70b252e1-599e-47b6-ad35-85d23b6d6eb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 435 + body: "{\"private_nic\": {\"id\": \"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"private_network_id\": \"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"server_id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"mac_address\": \"02:00:00:12:a7:17\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.496070+00:00\", \"modification_date\": \"2025-10-30T15:43:44.397805+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\"]}}" + headers: + Content-Length: + - "435" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 633efa38-7bdc-4386-bfb8-b9f7012477e6 + status: 200 OK + code: 200 + duration: 104.992518ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2350 + body: "{\"server\": {\"id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"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\": \"7f359bf7-85ef-49a3-967d-f6c2db48dfbd\", \"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:6c:ed\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:54.962569+00:00\", \"modification_date\": \"2025-10-30T15:42:58.720524+00:00\", \"bootscript\": 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\": \"97\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"private_network_id\": \"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"server_id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"mac_address\": \"02:00:00:12:a7:17\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.496070+00:00\", \"modification_date\": \"2025-10-30T15:43:44.397805+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2350" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f0d20b98-9959-417d-8e03-efa650af62fa + status: 200 OK + code: 200 + duration: 163.7485ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - 85da76b0-8e38-4fed-8047-9bb9e09b18d3 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 70b252e1-599e-47b6-ad35-85d23b6d6eb8 + 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=85da76b0-8e38-4fed-8047-9bb9e09b18d3&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=70b252e1-599e-47b6-ad35-85d23b6d6eb8&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 552 + body: "{\"total_count\":1, \"ips\":[{\"id\":\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\", \"address\":\"172.16.64.7/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:55.077273Z\", \"updated_at\":\"2025-10-30T15:43:02.972109Z\", \"source\":{\"subnet_id\":\"21659d0c-a546-4aff-a15a-70d80e70b08c\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"mac_address\":\"02:00:00:12:A7:17\", \"name\":\"TestAccScalewayInstancePrivateNIC_IPAM\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "552" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d3d6d2b7-cbbb-4b5f-8e75-3c32f72fda4e + status: 200 OK + code: 200 + duration: 55.294508ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + is_ipv6: + - "false" + order_by: + - created_at_desc + page: + - "1" + resource_id: + - 70b252e1-599e-47b6-ad35-85d23b6d6eb8 + 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=70b252e1-599e-47b6-ad35-85d23b6d6eb8&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 552 + body: "{\"total_count\":1, \"ips\":[{\"id\":\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\", \"address\":\"172.16.64.7/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:55.077273Z\", \"updated_at\":\"2025-10-30T15:43:02.972109Z\", \"source\":{\"subnet_id\":\"21659d0c-a546-4aff-a15a-70d80e70b08c\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"mac_address\":\"02:00:00:12:A7:17\", \"name\":\"TestAccScalewayInstancePrivateNIC_IPAM\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "552" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5f65f154-5088-4ee8-aabf-5070e2072858 + status: 200 OK + code: 200 + duration: 92.017197ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/private_nics/70b252e1-599e-47b6-ad35-85d23b6d6eb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 435 + body: "{\"private_nic\": {\"id\": \"70b252e1-599e-47b6-ad35-85d23b6d6eb8\", \"private_network_id\": \"85da76b0-8e38-4fed-8047-9bb9e09b18d3\", \"server_id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"mac_address\": \"02:00:00:12:a7:17\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:02.496070+00:00\", \"modification_date\": \"2025-10-30T15:43:44.397805+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8\"]}}" + headers: + Content-Length: + - "435" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 44241b02-f774-42d8-8d43-96c828c6927a + status: 200 OK + code: 200 + duration: 91.643005ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/private_nics/70b252e1-599e-47b6-ad35-85d23b6d6eb8 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - af4cc38c-9c76-41e1-82df-4c9deb6a44cc + status: 204 No Content + code: 204 + duration: 309.363963ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/private_nics/70b252e1-599e-47b6-ad35-85d23b6d6eb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 148 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_private_nic\", \"resource_id\": \"70b252e1-599e-47b6-ad35-85d23b6d6eb8\"}" + headers: + Content-Length: + - "148" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f4eb3b3d-43a8-48d6-9ba2-0c14a212b3a3 + status: 404 Not Found + code: 404 + duration: 108.339476ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + host: api.scaleway.com + body: "{}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/75391a6b-7a7d-4d1b-8f61-46f1ec7f17f8 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bc03d2f9-ccf2-4cef-97aa-1f263a5d973f + status: 204 No Content + code: 204 + duration: 123.136966ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1978 + body: "{\"server\": {\"id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"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\": \"7f359bf7-85ef-49a3-967d-f6c2db48dfbd\", \"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:6c:ed\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:54.962569+00:00\", \"modification_date\": \"2025-10-30T15:42:58.720524+00:00\", \"bootscript\": 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\": \"97\"}, \"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: + - "1978" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1ad0ddc9-4030-4841-b2f9-d49f6f048763 + status: 200 OK + code: 200 + duration: 129.176775ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1978 + body: "{\"server\": {\"id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"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\": \"7f359bf7-85ef-49a3-967d-f6c2db48dfbd\", \"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:6c:ed\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:54.962569+00:00\", \"modification_date\": \"2025-10-30T15:42:58.720524+00:00\", \"bootscript\": 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\": \"97\"}, \"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: + - "1978" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3a993a6b-86d9-4c1e-864c-85c247cbadfd + status: 200 OK + code: 200 + duration: 135.182402ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"8df7bd12-c8f6-4870-83a7-74b4b7a8b32d\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/d3928c50-db4c-4eba-bd21-d864e0983146/action\", \"href_result\": \"/servers/d3928c50-db4c-4eba-bd21-d864e0983146\", \"started_at\": \"2025-10-30T15:43:52.133384+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:52 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8df7bd12-c8f6-4870-83a7-74b4b7a8b32d + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4fe092cf-e014-480c-bb7a-21a22a13298f + status: 202 Accepted + code: 202 + duration: 264.418178ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1941 + body: "{\"server\": {\"id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"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\": \"7f359bf7-85ef-49a3-967d-f6c2db48dfbd\", \"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:6c:ed\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:54.962569+00:00\", \"modification_date\": \"2025-10-30T15:43:51.918759+00:00\", \"bootscript\": 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\": \"97\"}, \"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: + - "1941" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d79adc3f-2050-4d68-ae2a-67d9c83fd816 + status: 200 OK + code: 200 + duration: 141.400347ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/85da76b0-8e38-4fed-8047-9bb9e09b18d3 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cb38972c-7f7a-472b-a026-7391925126e0 + status: 204 No Content + code: 204 + duration: 1.277676075s +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/48de50d3-1c11-4cb6-b5de-d11821c2ff22 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b5f03b50-6571-441d-ae68-f48af18e544e + status: 204 No Content + code: 204 + duration: 140.976901ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1895 + body: "{\"server\": {\"id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"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\": \"7f359bf7-85ef-49a3-967d-f6c2db48dfbd\", \"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:6c:ed\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:54.962569+00:00\", \"modification_date\": \"2025-10-30T15:43:51.918759+00:00\", \"bootscript\": 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\": \"97\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1895" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 57402a43-08ae-4901-8bb0-8fbeb19546cb + status: 200 OK + code: 200 + duration: 133.037319ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1895 + body: "{\"server\": {\"id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\", \"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\": \"7f359bf7-85ef-49a3-967d-f6c2db48dfbd\", \"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:6c:ed\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:54.962569+00:00\", \"modification_date\": \"2025-10-30T15:43:51.918759+00:00\", \"bootscript\": 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\": \"97\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1895" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 47a3b772-ab74-4443-9bbc-28eedb0faf39 + status: 200 OK + code: 200 + duration: 129.844772ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a197b460-1120-4142-a597-4537d5c1a452 + status: 404 Not Found + code: 404 + duration: 45.881762ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7f359bf7-85ef-49a3-967d-f6c2db48dfbd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"7f359bf7-85ef-49a3-967d-f6c2db48dfbd\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0df996f1-1f2a-4b3e-bded-8f33a085ba20 + status: 404 Not Found + code: 404 + duration: 28.448758ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7f359bf7-85ef-49a3-967d-f6c2db48dfbd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"7f359bf7-85ef-49a3-967d-f6c2db48dfbd\", \"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-30T15:42:55.094109Z\", \"updated_at\":\"2025-10-30T15:44:03.988807Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:44:03.988807Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1064e53b-5c87-42ff-a185-a8f102e37b69 + status: 200 OK + code: 200 + duration: 81.787309ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7f359bf7-85ef-49a3-967d-f6c2db48dfbd + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2fda8b57-c15c-4157-a747-ad2bc5c7eb73 + status: 204 No Content + code: 204 + duration: 175.396766ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d3928c50-db4c-4eba-bd21-d864e0983146/private_nics/70b252e1-599e-47b6-ad35-85d23b6d6eb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"d3928c50-db4c-4eba-bd21-d864e0983146\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - de0cb61f-72b8-483f-a03a-8c1c60b20740 + status: 404 Not Found + code: 404 + duration: 26.571718ms diff --git a/internal/services/instance/testdata/security-group-any.cassette.yaml b/internal/services/instance/testdata/security-group-any.cassette.yaml index ceb452650..c6624b5e0 100644 --- a/internal/services/instance/testdata/security-group-any.cassette.yaml +++ b/internal/services/instance/testdata/security-group-any.cassette.yaml @@ -1,382 +1,306 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 225 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 605 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0fc59d56-e4bf-478e-8f9b-94b8514e61c4 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0c1be0df-2a38-48f9-9fc7-0c2ec4f28074 - status: 201 Created - code: 201 - duration: 180.025214ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 143 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"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/0fc59d56-e4bf-478e-8f9b-94b8514e61c4 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 605 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5d31f2c5-6b86-4e6c-91cf-da80d7191b23 - status: 200 OK - code: 200 - duration: 148.550143ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 551 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[{"id":null,"action":"drop","protocol":"ANY","direction":"inbound","ip_range":"1.1.1.1/32","dest_port_from":null,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"drop","protocol":"ANY","direction":"inbound","ip_range":"2.2.2.2/32","dest_port_from":null,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"drop","protocol":"ANY","direction":"inbound","ip_range":"3.3.3.3/32","dest_port_from":null,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"}]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2298 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a7a53339-44f7-4e93-bed3-dea5d3e1b7d2 - status: 200 OK - code: 200 - duration: 552.603035ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0fc59d56-e4bf-478e-8f9b-94b8514e61c4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 605 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 01fd9f5f-816e-493a-bdf4-59320993ee6a - status: 200 OK - code: 200 - duration: 84.313726ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/0fc59d56-e4bf-478e-8f9b-94b8514e61c4/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2298 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4226c37b-48d6-47d2-87f4-9e159db05c0b - status: 200 OK - code: 200 - duration: 95.843274ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 605 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4b77af20-d2e2-4e5d-b643-71f78d5b211c - status: 200 OK - code: 200 - duration: 410.799077ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/0fc59d56-e4bf-478e-8f9b-94b8514e61c4/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2298 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2ff04b0e-d28c-4365-8a37-de873aef1640 - status: 200 OK - code: 200 - duration: 288.952372ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0fc59d56-e4bf-478e-8f9b-94b8514e61c4 - 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:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ee5e985b-2c3e-4ad2-b203-bd30edf63f08 - status: 204 No Content - code: 204 - duration: 152.573847ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0fc59d56-e4bf-478e-8f9b-94b8514e61c4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 151 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2d944d55-f2cb-4c29-9e97-2f47c6b207e4 - status: 404 Not Found - code: 404 - duration: 29.022896ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 223 + host: api.scaleway.com + body: "{\"name\":\"tf-sg-confident-allen\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[\"test-terraform\"],\"stateful\":true,\"inbound_default_policy\":\"accept\",\"outbound_default_policy\":\"accept\",\"enable_default_security\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 603 + body: "{\"security_group\": {\"id\": \"3de9e9ab-4f91-4d4e-bc92-0e13bfdb767f\", \"creation_date\": \"2025-10-30T15:42:33.936034+00:00\", \"modification_date\": \"2025-10-30T15:42:33.936034+00:00\", \"name\": \"tf-sg-confident-allen\", \"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: + - "603" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/3de9e9ab-4f91-4d4e-bc92-0e13bfdb767f + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b40a72cb-f7df-474e-aff0-f777b9c8c4bb + status: 201 Created + code: 201 + duration: 237.192359ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 143 + host: api.scaleway.com + body: "{\"enable_default_security\":true,\"inbound_default_policy\":\"accept\",\"tags\":[\"test-terraform\"],\"outbound_default_policy\":\"accept\",\"stateful\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/3de9e9ab-4f91-4d4e-bc92-0e13bfdb767f + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 603 + body: "{\"security_group\": {\"id\": \"3de9e9ab-4f91-4d4e-bc92-0e13bfdb767f\", \"creation_date\": \"2025-10-30T15:42:33.936034+00:00\", \"modification_date\": \"2025-10-30T15:42:33.936034+00:00\", \"name\": \"tf-sg-confident-allen\", \"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: + - "603" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dd8ef9b2-64e2-4109-8ac5-3ffedeeb103e + status: 200 OK + code: 200 + duration: 156.674276ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 551 + host: api.scaleway.com + body: "{\"rules\":[{\"id\":null,\"action\":\"drop\",\"protocol\":\"ANY\",\"direction\":\"inbound\",\"ip_range\":\"1.1.1.1/32\",\"dest_port_from\":null,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"},{\"id\":null,\"action\":\"drop\",\"protocol\":\"ANY\",\"direction\":\"inbound\",\"ip_range\":\"2.2.2.2/32\",\"dest_port_from\":null,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"},{\"id\":null,\"action\":\"drop\",\"protocol\":\"ANY\",\"direction\":\"inbound\",\"ip_range\":\"3.3.3.3/32\",\"dest_port_from\":null,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"}]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/3de9e9ab-4f91-4d4e-bc92-0e13bfdb767f/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2298 + 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\": \"8acfe28e-6d73-4749-acbd-7c162ccd35ca\", \"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\": \"8eed20d4-91f1-4af5-9905-672281821697\", \"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\": \"c90b3da3-0d3f-4331-b5c7-e0f7a56f8e99\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7f48b153-3918-40f1-83af-72963a45fbcc + status: 200 OK + code: 200 + duration: 297.712251ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/3de9e9ab-4f91-4d4e-bc92-0e13bfdb767f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 603 + body: "{\"security_group\": {\"id\": \"3de9e9ab-4f91-4d4e-bc92-0e13bfdb767f\", \"creation_date\": \"2025-10-30T15:42:33.936034+00:00\", \"modification_date\": \"2025-10-30T15:42:34.418891+00:00\", \"name\": \"tf-sg-confident-allen\", \"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: + - "603" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9df2fad8-7c97-4c2c-8654-62a6df7b2750 + status: 200 OK + code: 200 + duration: 112.79608ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/3de9e9ab-4f91-4d4e-bc92-0e13bfdb767f/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2298 + 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\": \"8acfe28e-6d73-4749-acbd-7c162ccd35ca\", \"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\": \"8eed20d4-91f1-4af5-9905-672281821697\", \"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\": \"c90b3da3-0d3f-4331-b5c7-e0f7a56f8e99\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 19caac9d-1253-4778-aac3-4bf9f540bc17 + status: 200 OK + code: 200 + duration: 113.955134ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/3de9e9ab-4f91-4d4e-bc92-0e13bfdb767f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 603 + body: "{\"security_group\": {\"id\": \"3de9e9ab-4f91-4d4e-bc92-0e13bfdb767f\", \"creation_date\": \"2025-10-30T15:42:33.936034+00:00\", \"modification_date\": \"2025-10-30T15:42:34.418891+00:00\", \"name\": \"tf-sg-confident-allen\", \"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: + - "603" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6a1faa5e-0d65-4397-929b-be4e81444ed6 + status: 200 OK + code: 200 + duration: 96.619627ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/3de9e9ab-4f91-4d4e-bc92-0e13bfdb767f/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2298 + 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\": \"8acfe28e-6d73-4749-acbd-7c162ccd35ca\", \"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\": \"8eed20d4-91f1-4af5-9905-672281821697\", \"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\": \"c90b3da3-0d3f-4331-b5c7-e0f7a56f8e99\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f8c1d590-5463-4137-b542-b7fbca3d3589 + status: 200 OK + code: 200 + duration: 101.958342ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/3de9e9ab-4f91-4d4e-bc92-0e13bfdb767f + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9f639264-7b5d-40c1-8d4d-3106d61ea596 + status: 204 No Content + code: 204 + duration: 146.016034ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/3de9e9ab-4f91-4d4e-bc92-0e13bfdb767f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 151 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_security_group\", \"resource_id\": \"3de9e9ab-4f91-4d4e-bc92-0e13bfdb767f\"}" + headers: + Content-Length: + - "151" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eea3487e-42ca-4679-85c5-a692b12ad531 + status: 404 Not Found + code: 404 + duration: 31.27748ms diff --git a/internal/services/instance/testdata/security-group-basic.cassette.yaml b/internal/services/instance/testdata/security-group-basic.cassette.yaml index 1ed2d033d..275c64f4c 100644 --- a/internal/services/instance/testdata/security-group-basic.cassette.yaml +++ b/internal/services/instance/testdata/security-group-basic.cassette.yaml @@ -1,1355 +1,1087 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 181 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"sg-name","project":"105bdce1-64c0-48ab-899d-868455867ecf","stateful":true,"inbound_default_policy":"drop","outbound_default_policy":"accept","enable_default_security":true}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 571 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:06 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c6cdcc42-4bd1-4fa6-95ab-40cb4880c06b - status: 201 Created - code: 201 - duration: 193.713164ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 142 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"sg-name","enable_default_security":true,"inbound_default_policy":"drop","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/4220679b-35d4-4b52-be87-00485e99df06 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 571 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 68b9d94b-e588-493f-bdfc-a00a7d189318 - status: 200 OK - code: 200 - duration: 153.335123ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 370 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[{"id":null,"action":"accept","protocol":"TCP","direction":"inbound","ip_range":"0.0.0.0/0","dest_port_from":80,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"accept","protocol":"TCP","direction":"inbound","ip_range":"1.1.1.1/32","dest_port_from":22,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"}]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2046 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a911b550-6bd8-400e-ba59-85eac79b0df6 - status: 200 OK - code: 200 - duration: 733.665663ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 569 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 22a9711a-dea9-47e5-a3b3-6dafbc5f5088 - status: 200 OK - code: 200 - duration: 98.984225ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2046 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ab2c1b9b-194c-4a65-b0ea-f06d04b00174 - status: 200 OK - code: 200 - duration: 106.788899ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 571 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d8c109ae-18b4-4964-8590-3428ca056fc3 - status: 200 OK - code: 200 - duration: 114.776234ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2046 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c635139c-5385-4633-8562-1f193521eecc - status: 200 OK - code: 200 - duration: 90.779163ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2046 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 81075f60-67a0-4801-9b21-531e55f84937 - status: 200 OK - code: 200 - duration: 90.690207ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 571 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 02623cb8-2c3f-49ad-ae56-e4cab5f57c44 - status: 200 OK - code: 200 - duration: 133.503933ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2046 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a8e84b01-7778-4ef8-ac8e-b30fe157f368 - status: 200 OK - code: 200 - duration: 89.919707ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 571 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d3b10671-013a-4465-bbeb-3f800c68991d - status: 200 OK - code: 200 - duration: 103.063413ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2046 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9ad16370-23d0-4cd3-94f7-ad434778f7f6 - status: 200 OK - code: 200 - duration: 95.659188ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 129 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"sg-name","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/4220679b-35d4-4b52-be87-00485e99df06 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 587 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 016bdb49-9f12-4598-8426-8ae88cb17c05 - status: 200 OK - code: 200 - duration: 260.724176ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 548 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[{"id":null,"action":"drop","protocol":"TCP","direction":"inbound","ip_range":"8.8.8.8/32","dest_port_from":80,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"accept","protocol":"TCP","direction":"inbound","ip_range":"0.0.0.0/0","dest_port_from":80,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"accept","protocol":"TCP","direction":"inbound","ip_range":"1.1.1.1/32","dest_port_from":22,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"}]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2298 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8096393a-cef3-45fd-a797-760672e27fe7 - status: 200 OK - code: 200 - duration: 249.989544ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 589 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 87c3457a-df00-4cf6-b1cf-4b44f6d05682 - status: 200 OK - code: 200 - duration: 97.360681ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2298 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0b1375e9-028f-4c05-a9ad-52e1d0349daa - status: 200 OK - code: 200 - duration: 100.106535ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 589 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5badd436-b3d2-4490-b0ca-e2a292dc65ef - status: 200 OK - code: 200 - duration: 95.877817ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2298 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a265382e-2e9d-4dd4-b523-5e32a23d7772 - status: 200 OK - code: 200 - duration: 108.989024ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2298 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7804d654-e3de-4008-889a-b0ddf6ab8a4f - status: 200 OK - code: 200 - duration: 104.253599ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2298 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2cf7bbd7-1899-412d-b98b-9f5615f75798 - status: 200 OK - code: 200 - duration: 109.963255ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 589 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f7abc7f2-a36c-4b25-8466-1df337d1d2b0 - status: 200 OK - code: 200 - duration: 101.381709ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2298 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6ef4bb62-a1d0-48e4-b9d7-7c2bdb896792 - status: 200 OK - code: 200 - duration: 100.64949ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 589 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 64d48cf2-8f8a-4327-929a-ef08e219e55c - status: 200 OK - code: 200 - duration: 89.288998ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2298 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ab3e4c3c-81d8-4816-a958-90505bac3fb8 - status: 200 OK - code: 200 - duration: 108.690817ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 113 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"sg-name","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/4220679b-35d4-4b52-be87-00485e99df06 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 571 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d2f778cf-ca58-41f6-948d-a34c013cbcc8 - status: 200 OK - code: 200 - duration: 248.318871ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 12 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 16a6db9b-f01a-4f72-bfd3-e1fa28596f1b - status: 200 OK - code: 200 - duration: 245.476446ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 571 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6b26067c-b3d7-4860-8317-f6dd67f3abf4 - status: 200 OK - code: 200 - duration: 86.75002ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 66037ef7-4c7f-423b-a8b2-ce9bca9f0280 - status: 200 OK - code: 200 - duration: 107.480834ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/4220679b-35d4-4b52-be87-00485e99df06 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 573 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 11c2f230-9bb2-498d-9003-a86bc312ceff - status: 200 OK - code: 200 - duration: 79.449751ms - - 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: - 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/4220679b-35d4-4b52-be87-00485e99df06/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3f98bee7-4354-46c0-9500-4f712f2a140d - status: 200 OK - code: 200 - duration: 105.1738ms - - 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/security_groups/4220679b-35d4-4b52-be87-00485e99df06 - 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:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b20cb099-c4e5-4d3c-8f80-d718bc789d07 - status: 204 No Content - code: 204 - duration: 148.63665ms - - 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/security_groups/4220679b-35d4-4b52-be87-00485e99df06 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 151 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 59ed8407-cc65-4490-9e68-fd3af40585ac - status: 404 Not Found - code: 404 - duration: 29.335153ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 181 + host: api.scaleway.com + body: "{\"name\":\"sg-name\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"stateful\":true,\"inbound_default_policy\":\"drop\",\"outbound_default_policy\":\"accept\",\"enable_default_security\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 571 + body: "{\"security_group\": {\"id\": \"cfea612c-4837-4dce-ba3b-073f5bc4a2e8\", \"creation_date\": \"2025-10-30T15:42:39.908766+00:00\", \"modification_date\": \"2025-10-30T15:42:39.908766+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/cfea612c-4837-4dce-ba3b-073f5bc4a2e8 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1691fb14-4a75-4e08-90c2-7a80fb14197f + status: 201 Created + code: 201 + duration: 182.192554ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 142 + host: api.scaleway.com + body: "{\"name\":\"sg-name\",\"enable_default_security\":true,\"inbound_default_policy\":\"drop\",\"tags\":[],\"outbound_default_policy\":\"accept\",\"stateful\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/cfea612c-4837-4dce-ba3b-073f5bc4a2e8 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 571 + body: "{\"security_group\": {\"id\": \"cfea612c-4837-4dce-ba3b-073f5bc4a2e8\", \"creation_date\": \"2025-10-30T15:42:39.908766+00:00\", \"modification_date\": \"2025-10-30T15:42:39.908766+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fe4c3720-0833-47a3-9546-75a798081699 + status: 200 OK + code: 200 + duration: 125.160405ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 370 + host: api.scaleway.com + body: "{\"rules\":[{\"id\":null,\"action\":\"accept\",\"protocol\":\"TCP\",\"direction\":\"inbound\",\"ip_range\":\"0.0.0.0/0\",\"dest_port_from\":80,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"},{\"id\":null,\"action\":\"accept\",\"protocol\":\"TCP\",\"direction\":\"inbound\",\"ip_range\":\"1.1.1.1/32\",\"dest_port_from\":22,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"}]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/cfea612c-4837-4dce-ba3b-073f5bc4a2e8/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2046 + 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\": \"cf7feeb8-2db7-4e79-984c-05084ecfd268\", \"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\": \"a9585ff1-9617-4552-b976-c0777f1390a4\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b47459b5-2e80-410b-a1c5-2a774ff26d29 + status: 200 OK + code: 200 + duration: 241.787993ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/cfea612c-4837-4dce-ba3b-073f5bc4a2e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 569 + body: "{\"security_group\": {\"id\": \"cfea612c-4837-4dce-ba3b-073f5bc4a2e8\", \"creation_date\": \"2025-10-30T15:42:39.908766+00:00\", \"modification_date\": \"2025-10-30T15:42:40.082837+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2f259bf3-e1dc-4c1e-8c25-3d00040344f9 + status: 200 OK + code: 200 + duration: 122.169515ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/cfea612c-4837-4dce-ba3b-073f5bc4a2e8/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2046 + 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\": \"cf7feeb8-2db7-4e79-984c-05084ecfd268\", \"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\": \"a9585ff1-9617-4552-b976-c0777f1390a4\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f4be4dd0-7208-4ffc-a30f-131fa413cb85 + status: 200 OK + code: 200 + duration: 101.804533ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/cfea612c-4837-4dce-ba3b-073f5bc4a2e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 571 + body: "{\"security_group\": {\"id\": \"cfea612c-4837-4dce-ba3b-073f5bc4a2e8\", \"creation_date\": \"2025-10-30T15:42:39.908766+00:00\", \"modification_date\": \"2025-10-30T15:42:40.310219+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 38b83623-1e43-45a3-9805-f93b913fd5d9 + status: 200 OK + code: 200 + duration: 93.93901ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/cfea612c-4837-4dce-ba3b-073f5bc4a2e8/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2046 + 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\": \"cf7feeb8-2db7-4e79-984c-05084ecfd268\", \"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\": \"a9585ff1-9617-4552-b976-c0777f1390a4\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 252c8b9c-1e09-40b3-94e0-992a1bbf91b7 + status: 200 OK + code: 200 + duration: 92.409821ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/cfea612c-4837-4dce-ba3b-073f5bc4a2e8/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2046 + 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\": \"cf7feeb8-2db7-4e79-984c-05084ecfd268\", \"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\": \"a9585ff1-9617-4552-b976-c0777f1390a4\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4ae4a812-5878-4bc5-ae2e-08cf8d3366e9 + status: 200 OK + code: 200 + duration: 106.324031ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/cfea612c-4837-4dce-ba3b-073f5bc4a2e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 571 + body: "{\"security_group\": {\"id\": \"cfea612c-4837-4dce-ba3b-073f5bc4a2e8\", \"creation_date\": \"2025-10-30T15:42:39.908766+00:00\", \"modification_date\": \"2025-10-30T15:42:40.310219+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 42b207e2-6b88-4347-ad38-618134c53aa5 + status: 200 OK + code: 200 + duration: 101.846734ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/cfea612c-4837-4dce-ba3b-073f5bc4a2e8/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2046 + 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\": \"cf7feeb8-2db7-4e79-984c-05084ecfd268\", \"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\": \"a9585ff1-9617-4552-b976-c0777f1390a4\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 49cd99dd-531e-4193-b9da-7cfcc3f694ff + status: 200 OK + code: 200 + duration: 106.12018ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/cfea612c-4837-4dce-ba3b-073f5bc4a2e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 571 + body: "{\"security_group\": {\"id\": \"cfea612c-4837-4dce-ba3b-073f5bc4a2e8\", \"creation_date\": \"2025-10-30T15:42:39.908766+00:00\", \"modification_date\": \"2025-10-30T15:42:40.310219+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4cb56585-d318-4bbd-a030-231a52704b2f + status: 200 OK + code: 200 + duration: 100.5016ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/cfea612c-4837-4dce-ba3b-073f5bc4a2e8/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2046 + 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\": \"cf7feeb8-2db7-4e79-984c-05084ecfd268\", \"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\": \"a9585ff1-9617-4552-b976-c0777f1390a4\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4eb08bf0-02ae-4f62-834e-32c4fba4dd94 + status: 200 OK + code: 200 + duration: 91.143857ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 129 + host: api.scaleway.com + body: "{\"name\":\"sg-name\",\"inbound_default_policy\":\"accept\",\"tags\":[\"test-terraform\"],\"outbound_default_policy\":\"accept\",\"stateful\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/cfea612c-4837-4dce-ba3b-073f5bc4a2e8 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 587 + body: "{\"security_group\": {\"id\": \"cfea612c-4837-4dce-ba3b-073f5bc4a2e8\", \"creation_date\": \"2025-10-30T15:42:39.908766+00:00\", \"modification_date\": \"2025-10-30T15:42:41.833273+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5701fbb7-bb5a-4ea3-bd9c-ccb80c01649d + status: 200 OK + code: 200 + duration: 240.413195ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 548 + host: api.scaleway.com + body: "{\"rules\":[{\"id\":null,\"action\":\"drop\",\"protocol\":\"TCP\",\"direction\":\"inbound\",\"ip_range\":\"8.8.8.8/32\",\"dest_port_from\":80,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"},{\"id\":null,\"action\":\"accept\",\"protocol\":\"TCP\",\"direction\":\"inbound\",\"ip_range\":\"0.0.0.0/0\",\"dest_port_from\":80,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"},{\"id\":null,\"action\":\"accept\",\"protocol\":\"TCP\",\"direction\":\"inbound\",\"ip_range\":\"1.1.1.1/32\",\"dest_port_from\":22,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"}]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/cfea612c-4837-4dce-ba3b-073f5bc4a2e8/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2298 + 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\": \"737a2049-80d4-4bbb-bfba-e0c7c3fabc52\", \"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\": \"b66a71da-fccd-4bb3-9858-4a11bd93e07b\", \"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\": \"11f0e5e5-52a6-46d4-bb09-fb91b8299e9a\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f37c794f-01db-4b71-bf12-92698d1295a4 + status: 200 OK + code: 200 + duration: 294.726747ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/cfea612c-4837-4dce-ba3b-073f5bc4a2e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 589 + body: "{\"security_group\": {\"id\": \"cfea612c-4837-4dce-ba3b-073f5bc4a2e8\", \"creation_date\": \"2025-10-30T15:42:39.908766+00:00\", \"modification_date\": \"2025-10-30T15:42:42.075190+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 62a35f90-f91d-4d3b-a6a6-0d1102a929c6 + status: 200 OK + code: 200 + duration: 96.978111ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/cfea612c-4837-4dce-ba3b-073f5bc4a2e8/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2298 + 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\": \"737a2049-80d4-4bbb-bfba-e0c7c3fabc52\", \"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\": \"b66a71da-fccd-4bb3-9858-4a11bd93e07b\", \"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\": \"11f0e5e5-52a6-46d4-bb09-fb91b8299e9a\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d1bbf766-1812-46e0-856c-c16002397d8f + status: 200 OK + code: 200 + duration: 129.9446ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/cfea612c-4837-4dce-ba3b-073f5bc4a2e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 589 + body: "{\"security_group\": {\"id\": \"cfea612c-4837-4dce-ba3b-073f5bc4a2e8\", \"creation_date\": \"2025-10-30T15:42:39.908766+00:00\", \"modification_date\": \"2025-10-30T15:42:42.075190+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7dc93222-5565-48aa-bff6-6a2a878552ae + status: 200 OK + code: 200 + duration: 92.852903ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/cfea612c-4837-4dce-ba3b-073f5bc4a2e8/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2298 + 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\": \"737a2049-80d4-4bbb-bfba-e0c7c3fabc52\", \"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\": \"b66a71da-fccd-4bb3-9858-4a11bd93e07b\", \"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\": \"11f0e5e5-52a6-46d4-bb09-fb91b8299e9a\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ae98a28a-b871-4131-b197-50cedeadd758 + status: 200 OK + code: 200 + duration: 92.113506ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/cfea612c-4837-4dce-ba3b-073f5bc4a2e8/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2298 + 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\": \"737a2049-80d4-4bbb-bfba-e0c7c3fabc52\", \"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\": \"b66a71da-fccd-4bb3-9858-4a11bd93e07b\", \"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\": \"11f0e5e5-52a6-46d4-bb09-fb91b8299e9a\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 34b0fb72-ce9e-435b-90a8-48cbbee091d9 + status: 200 OK + code: 200 + duration: 93.743764ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/cfea612c-4837-4dce-ba3b-073f5bc4a2e8/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2298 + 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\": \"737a2049-80d4-4bbb-bfba-e0c7c3fabc52\", \"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\": \"b66a71da-fccd-4bb3-9858-4a11bd93e07b\", \"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\": \"11f0e5e5-52a6-46d4-bb09-fb91b8299e9a\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 53665eb0-c9b4-4a52-8534-f8fa4175287e + status: 200 OK + code: 200 + duration: 105.625171ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/cfea612c-4837-4dce-ba3b-073f5bc4a2e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 589 + body: "{\"security_group\": {\"id\": \"cfea612c-4837-4dce-ba3b-073f5bc4a2e8\", \"creation_date\": \"2025-10-30T15:42:39.908766+00:00\", \"modification_date\": \"2025-10-30T15:42:42.075190+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7fddac99-0e7d-45a3-b730-95f07389712d + status: 200 OK + code: 200 + duration: 91.982921ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/cfea612c-4837-4dce-ba3b-073f5bc4a2e8/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2298 + 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\": \"737a2049-80d4-4bbb-bfba-e0c7c3fabc52\", \"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\": \"b66a71da-fccd-4bb3-9858-4a11bd93e07b\", \"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\": \"11f0e5e5-52a6-46d4-bb09-fb91b8299e9a\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fff4007b-72b9-4390-bfd8-600fba155ed7 + status: 200 OK + code: 200 + duration: 97.131649ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/cfea612c-4837-4dce-ba3b-073f5bc4a2e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 589 + body: "{\"security_group\": {\"id\": \"cfea612c-4837-4dce-ba3b-073f5bc4a2e8\", \"creation_date\": \"2025-10-30T15:42:39.908766+00:00\", \"modification_date\": \"2025-10-30T15:42:42.075190+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bbadc235-4615-4768-a631-fd6270bf7a62 + status: 200 OK + code: 200 + duration: 90.10094ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/cfea612c-4837-4dce-ba3b-073f5bc4a2e8/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2298 + 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\": \"737a2049-80d4-4bbb-bfba-e0c7c3fabc52\", \"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\": \"b66a71da-fccd-4bb3-9858-4a11bd93e07b\", \"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\": \"11f0e5e5-52a6-46d4-bb09-fb91b8299e9a\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dea82c8c-499c-4ab2-bbc0-7367c5c8a0e8 + status: 200 OK + code: 200 + duration: 91.09157ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 113 + host: api.scaleway.com + body: "{\"name\":\"sg-name\",\"inbound_default_policy\":\"accept\",\"tags\":[],\"outbound_default_policy\":\"accept\",\"stateful\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/cfea612c-4837-4dce-ba3b-073f5bc4a2e8 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 571 + body: "{\"security_group\": {\"id\": \"cfea612c-4837-4dce-ba3b-073f5bc4a2e8\", \"creation_date\": \"2025-10-30T15:42:39.908766+00:00\", \"modification_date\": \"2025-10-30T15:42:43.900689+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b9c9de8e-6ce6-40f4-be5f-af2e1eefff30 + status: 200 OK + code: 200 + duration: 456.944895ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 12 + host: api.scaleway.com + body: "{\"rules\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/cfea612c-4837-4dce-ba3b-073f5bc4a2e8/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b92d1497-bb96-47de-98f0-5f413f1ea3c1 + status: 200 OK + code: 200 + duration: 323.125178ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/cfea612c-4837-4dce-ba3b-073f5bc4a2e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 573 + body: "{\"security_group\": {\"id\": \"cfea612c-4837-4dce-ba3b-073f5bc4a2e8\", \"creation_date\": \"2025-10-30T15:42:39.908766+00:00\", \"modification_date\": \"2025-10-30T15:42:44.359260+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f50ddad9-6b97-4e23-9e09-68ea01da12b9 + status: 200 OK + code: 200 + duration: 102.519556ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/cfea612c-4837-4dce-ba3b-073f5bc4a2e8/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7b923397-6329-4a0f-b0e3-d95fece7d8ad + status: 200 OK + code: 200 + duration: 97.305245ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/cfea612c-4837-4dce-ba3b-073f5bc4a2e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 573 + body: "{\"security_group\": {\"id\": \"cfea612c-4837-4dce-ba3b-073f5bc4a2e8\", \"creation_date\": \"2025-10-30T15:42:39.908766+00:00\", \"modification_date\": \"2025-10-30T15:42:44.359260+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - af399579-b56e-4bdc-8922-d4aee10e201c + status: 200 OK + code: 200 + duration: 114.077627ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/cfea612c-4837-4dce-ba3b-073f5bc4a2e8/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4a4bac7e-ecd3-4815-b292-b7924b871109 + status: 200 OK + code: 200 + duration: 99.194499ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/cfea612c-4837-4dce-ba3b-073f5bc4a2e8 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5b9a2678-64b1-43a5-aab0-1e8d4ee3a848 + status: 204 No Content + code: 204 + duration: 156.725576ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/cfea612c-4837-4dce-ba3b-073f5bc4a2e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 151 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_security_group\", \"resource_id\": \"cfea612c-4837-4dce-ba3b-073f5bc4a2e8\"}" + headers: + Content-Length: + - "151" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fa07ad79-6173-43d2-ac63-a7d27faa48e8 + status: 404 Not Found + code: 404 + duration: 35.48348ms 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 38c98288c..4ba4fdfe0 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 @@ -1,720 +1,577 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 218 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 598 - uncompressed: false - 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: - - "598" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4969d1ca-f7fa-4fbb-9434-6318d13ffbe1 - status: 201 Created - code: 201 - duration: 208.854026ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 112 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"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/18411c7f-77ed-474a-bb90-49ca3c8482a6 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 598 - uncompressed: false - 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: - - "598" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a9f1b99c-9ac3-4b52-a1ed-ca34985bfb2f - status: 200 OK - code: 200 - duration: 165.579434ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 12 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 13 - uncompressed: false - body: '{"rules": []}' - headers: - Content-Length: - - "13" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9081d211-25ea-461c-8a65-cca09e39d82d - status: 200 OK - code: 200 - duration: 143.80978ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 598 - uncompressed: false - 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: - - "598" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a9ef33e1-13a2-4491-8f76-4e2541debd65 - status: 200 OK - code: 200 - duration: 92.430422ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/18411c7f-77ed-474a-bb90-49ca3c8482a6/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 13 - uncompressed: false - body: '{"rules": []}' - headers: - Content-Length: - - "13" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 19418fa0-f963-44d4-bd73-7f05adfa2282 - status: 200 OK - code: 200 - duration: 82.866431ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 598 - uncompressed: false - 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: - - "598" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 900ea928-8c43-43e0-8abf-9a3ca76ea154 - status: 200 OK - code: 200 - duration: 95.256356ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/18411c7f-77ed-474a-bb90-49ca3c8482a6/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 13 - uncompressed: false - body: '{"rules": []}' - headers: - Content-Length: - - "13" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d3c240a5-ee12-44ed-a09d-0e5012a3220b - status: 200 OK - code: 200 - duration: 84.777865ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 598 - uncompressed: false - 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: - - "598" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 525b2513-475d-429d-ac31-fdf4fa9f89c1 - status: 200 OK - code: 200 - duration: 442.064687ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/18411c7f-77ed-474a-bb90-49ca3c8482a6/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 13 - uncompressed: false - body: '{"rules": []}' - headers: - Content-Length: - - "13" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f2a72764-2367-46de-9afb-2e7756fd84d5 - status: 200 OK - code: 200 - duration: 211.158146ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 168 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/18411c7f-77ed-474a-bb90-49ca3c8482a6 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 595 - uncompressed: false - 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: - - "595" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4713b360-6b14-4848-86f0-1e8b276a4dfb - status: 200 OK - code: 200 - duration: 292.361057ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 12 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 02e83855-0d04-4442-897f-50aeec47a258 - status: 200 OK - code: 200 - duration: 194.717436ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 597 - uncompressed: false - 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: - - "597" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 561addd5-3315-4023-9fb7-6b8cbb807566 - status: 200 OK - code: 200 - duration: 92.486699ms - - 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: - 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/18411c7f-77ed-474a-bb90-49ca3c8482a6/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cd76afdc-f2bc-4b8d-8671-e473f07bebea - status: 200 OK - code: 200 - duration: 79.975145ms - - 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/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 597 - uncompressed: false - 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: - - "597" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 615b657c-5547-43b8-9101-17e724158a46 - status: 200 OK - code: 200 - duration: 90.332752ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/18411c7f-77ed-474a-bb90-49ca3c8482a6/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bd27b1ef-b973-4915-89ce-2da623de6cc3 - status: 200 OK - code: 200 - duration: 108.1473ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6 - 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:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a0b47724-49e7-4cfa-b339-4f1c6a9dbf73 - status: 204 No Content - code: 204 - duration: 155.375286ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/18411c7f-77ed-474a-bb90-49ca3c8482a6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 151 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 116e12d6-c57e-41d2-8cf1-a98918ef34bb - status: 404 Not Found - code: 404 - duration: 31.065265ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 227 + host: api.scaleway.com + body: "{\"name\":\"tf-sg-quizzical-mahavira\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[\"test-terraform\"],\"stateful\":true,\"inbound_default_policy\":\"accept\",\"outbound_default_policy\":\"accept\",\"enable_default_security\":false}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 607 + body: "{\"security_group\": {\"id\": \"ee639b7e-4d91-4276-8fa7-851e0b654c52\", \"creation_date\": \"2025-10-30T15:41:46.887154+00:00\", \"modification_date\": \"2025-10-30T15:41:46.887154+00:00\", \"name\": \"tf-sg-quizzical-mahavira\", \"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: + - "607" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ee639b7e-4d91-4276-8fa7-851e0b654c52 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9c769402-6e0b-4fab-9985-fc947a25ba09 + status: 201 Created + code: 201 + duration: 208.176942ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 112 + host: api.scaleway.com + body: "{\"inbound_default_policy\":\"accept\",\"tags\":[\"test-terraform\"],\"outbound_default_policy\":\"accept\",\"stateful\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ee639b7e-4d91-4276-8fa7-851e0b654c52 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 607 + body: "{\"security_group\": {\"id\": \"ee639b7e-4d91-4276-8fa7-851e0b654c52\", \"creation_date\": \"2025-10-30T15:41:46.887154+00:00\", \"modification_date\": \"2025-10-30T15:41:46.887154+00:00\", \"name\": \"tf-sg-quizzical-mahavira\", \"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: + - "607" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a1e5fb1d-3ab7-459f-a1ac-5b64fd3ae085 + status: 200 OK + code: 200 + duration: 153.025236ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 12 + host: api.scaleway.com + body: "{\"rules\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ee639b7e-4d91-4276-8fa7-851e0b654c52/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 13 + body: "{\"rules\": []}" + headers: + Content-Length: + - "13" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 13f08908-c6db-4d6c-908a-291ca8af7811 + status: 200 OK + code: 200 + duration: 214.805636ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ee639b7e-4d91-4276-8fa7-851e0b654c52 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 607 + body: "{\"security_group\": {\"id\": \"ee639b7e-4d91-4276-8fa7-851e0b654c52\", \"creation_date\": \"2025-10-30T15:41:46.887154+00:00\", \"modification_date\": \"2025-10-30T15:41:46.887154+00:00\", \"name\": \"tf-sg-quizzical-mahavira\", \"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: + - "607" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4f895b63-3170-41d8-9380-e5c53f178ac7 + status: 200 OK + code: 200 + duration: 147.31197ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/ee639b7e-4d91-4276-8fa7-851e0b654c52/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 13 + body: "{\"rules\": []}" + headers: + Content-Length: + - "13" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7d2e2473-0c01-4e12-804e-c62f8ea5d1d4 + status: 200 OK + code: 200 + duration: 122.933083ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ee639b7e-4d91-4276-8fa7-851e0b654c52 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 607 + body: "{\"security_group\": {\"id\": \"ee639b7e-4d91-4276-8fa7-851e0b654c52\", \"creation_date\": \"2025-10-30T15:41:46.887154+00:00\", \"modification_date\": \"2025-10-30T15:41:46.887154+00:00\", \"name\": \"tf-sg-quizzical-mahavira\", \"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: + - "607" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 053eed0d-c0cc-469a-91f4-f755a34ddb55 + status: 200 OK + code: 200 + duration: 96.825324ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/ee639b7e-4d91-4276-8fa7-851e0b654c52/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 13 + body: "{\"rules\": []}" + headers: + Content-Length: + - "13" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 18981887-29e3-442b-a4a3-cd39fc4d89bd + status: 200 OK + code: 200 + duration: 130.664464ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ee639b7e-4d91-4276-8fa7-851e0b654c52 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 607 + body: "{\"security_group\": {\"id\": \"ee639b7e-4d91-4276-8fa7-851e0b654c52\", \"creation_date\": \"2025-10-30T15:41:46.887154+00:00\", \"modification_date\": \"2025-10-30T15:41:46.887154+00:00\", \"name\": \"tf-sg-quizzical-mahavira\", \"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: + - "607" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 229bd5e7-8867-4f95-a988-44c641210362 + status: 200 OK + code: 200 + duration: 106.666953ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/ee639b7e-4d91-4276-8fa7-851e0b654c52/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 13 + body: "{\"rules\": []}" + headers: + Content-Length: + - "13" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2dcbb253-fede-47c9-87cd-200a7c5f0017 + status: 200 OK + code: 200 + duration: 92.940196ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 177 + host: api.scaleway.com + body: "{\"name\":\"tf-sg-quizzical-mahavira\",\"enable_default_security\":true,\"inbound_default_policy\":\"accept\",\"tags\":[\"test-terraform\"],\"outbound_default_policy\":\"accept\",\"stateful\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ee639b7e-4d91-4276-8fa7-851e0b654c52 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 604 + body: "{\"security_group\": {\"id\": \"ee639b7e-4d91-4276-8fa7-851e0b654c52\", \"creation_date\": \"2025-10-30T15:41:46.887154+00:00\", \"modification_date\": \"2025-10-30T15:41:48.585104+00:00\", \"name\": \"tf-sg-quizzical-mahavira\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3c3b749d-72f0-420c-8a02-cb06a6ce5e2a + status: 200 OK + code: 200 + duration: 244.161097ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 12 + host: api.scaleway.com + body: "{\"rules\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ee639b7e-4d91-4276-8fa7-851e0b654c52/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 620eb022-73d5-47b0-9dea-df704e093ede + status: 200 OK + code: 200 + duration: 166.510229ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ee639b7e-4d91-4276-8fa7-851e0b654c52 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 606 + body: "{\"security_group\": {\"id\": \"ee639b7e-4d91-4276-8fa7-851e0b654c52\", \"creation_date\": \"2025-10-30T15:41:46.887154+00:00\", \"modification_date\": \"2025-10-30T15:41:48.810849+00:00\", \"name\": \"tf-sg-quizzical-mahavira\", \"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: + - "606" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dfb3a804-ee65-481a-b527-ea62948bdd30 + status: 200 OK + code: 200 + duration: 108.327168ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/ee639b7e-4d91-4276-8fa7-851e0b654c52/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 835d827d-d1df-4162-81ac-04774bdb5358 + status: 200 OK + code: 200 + duration: 104.64523ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ee639b7e-4d91-4276-8fa7-851e0b654c52 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 606 + body: "{\"security_group\": {\"id\": \"ee639b7e-4d91-4276-8fa7-851e0b654c52\", \"creation_date\": \"2025-10-30T15:41:46.887154+00:00\", \"modification_date\": \"2025-10-30T15:41:48.810849+00:00\", \"name\": \"tf-sg-quizzical-mahavira\", \"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: + - "606" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b268278c-7f64-421e-92cd-6d4c6e783d85 + status: 200 OK + code: 200 + duration: 98.655867ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/ee639b7e-4d91-4276-8fa7-851e0b654c52/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6d34d5aa-7dbb-489d-b800-100b5202829c + status: 200 OK + code: 200 + duration: 92.809411ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ee639b7e-4d91-4276-8fa7-851e0b654c52 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3689ce14-7313-4b4b-bd2d-1b7ed34a4647 + status: 204 No Content + code: 204 + duration: 118.958038ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ee639b7e-4d91-4276-8fa7-851e0b654c52 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 151 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_security_group\", \"resource_id\": \"ee639b7e-4d91-4276-8fa7-851e0b654c52\"}" + headers: + Content-Length: + - "151" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bfd0ca87-e812-46a6-85f0-3180a9de4291 + status: 404 Not Found + code: 404 + duration: 24.46574ms diff --git a/internal/services/instance/testdata/security-group-icmp.cassette.yaml b/internal/services/instance/testdata/security-group-icmp.cassette.yaml index e0259cf78..18d8b68fa 100644 --- a/internal/services/instance/testdata/security-group-icmp.cassette.yaml +++ b/internal/services/instance/testdata/security-group-icmp.cassette.yaml @@ -1,806 +1,647 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 225 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 605 - uncompressed: false - 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: - - "605" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 93d19f62-e80e-4843-b4bd-941f0222e05f - status: 201 Created - code: 201 - duration: 170.784669ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 143 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"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/f4f59684-ceb6-4dd8-8194-4282821b76ce - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 605 - uncompressed: false - 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: - - "605" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e95bc6e5-a0ff-4932-8a32-e2d05b8387ed - status: 200 OK - code: 200 - duration: 193.883379ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 190 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[{"id":null,"action":"accept","protocol":"TCP","direction":"inbound","ip_range":"0.0.0.0/0","dest_port_from":80,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"}]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1792 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cc68ae9f-6250-4126-95c1-38df425ca88b - status: 200 OK - code: 200 - duration: 241.634783ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 605 - uncompressed: false - 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: - - "605" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 237a43b6-614d-468d-b721-dd94211d8a46 - status: 200 OK - code: 200 - duration: 106.249863ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/f4f59684-ceb6-4dd8-8194-4282821b76ce/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1792 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9324d9aa-b2df-4255-9f85-a4c66353de40 - status: 200 OK - code: 200 - duration: 142.489834ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/f4f59684-ceb6-4dd8-8194-4282821b76ce/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1792 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a4c87ff5-cde9-45c0-b510-588dd3c67baa - status: 200 OK - code: 200 - duration: 104.244654ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 605 - uncompressed: false - 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: - - "605" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2d0fc4a9-5b83-4920-bcdb-14b019bec9f4 - status: 200 OK - code: 200 - duration: 94.80807ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/f4f59684-ceb6-4dd8-8194-4282821b76ce/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1792 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4e00fe99-5a2f-4e89-927c-0fb88c8af3ad - status: 200 OK - code: 200 - duration: 96.779767ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 605 - uncompressed: false - 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: - - "605" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9dfd011b-f2a3-44f5-b6b5-44f162749350 - status: 200 OK - code: 200 - duration: 120.650189ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/f4f59684-ceb6-4dd8-8194-4282821b76ce/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1792 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dd621627-a0dc-4d2c-b074-a2521ff02339 - status: 200 OK - code: 200 - duration: 95.664362ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 145 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/f4f59684-ceb6-4dd8-8194-4282821b76ce - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 605 - uncompressed: false - 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: - - "605" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 75405db4-c06b-4294-9cba-a6dacae39af7 - status: 200 OK - code: 200 - duration: 174.28803ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 192 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[{"id":null,"action":"drop","protocol":"ICMP","direction":"inbound","ip_range":"8.8.8.8/32","dest_port_from":null,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"}]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1791 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 27a44010-02e2-4225-86fc-d3e95bc21ee7 - status: 200 OK - code: 200 - duration: 302.058063ms - - 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/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 605 - uncompressed: false - 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: - - "605" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4c8e6f56-c295-4152-a479-14c5ecb476ec - status: 200 OK - code: 200 - duration: 97.622563ms - - 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: - 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/f4f59684-ceb6-4dd8-8194-4282821b76ce/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1791 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - be357415-9b9e-4ec8-b71e-06de6a3a92c6 - status: 200 OK - code: 200 - duration: 120.118095ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/f4f59684-ceb6-4dd8-8194-4282821b76ce/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1791 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1a3972da-9586-4dbd-922a-08b2e8f44534 - status: 200 OK - code: 200 - duration: 108.575212ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 605 - uncompressed: false - 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: - - "605" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1de42daa-dfb8-4ec8-b2c9-1d25346247c4 - status: 200 OK - code: 200 - duration: 109.220037ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/f4f59684-ceb6-4dd8-8194-4282821b76ce/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1791 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 34d327af-456f-4fc1-9972-ba914cf0fa4e - status: 200 OK - code: 200 - duration: 95.351146ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce - 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:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 666bc02e-8f7d-43ba-b17f-2aa877d77edb - status: 204 No Content - code: 204 - duration: 182.27768ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f4f59684-ceb6-4dd8-8194-4282821b76ce - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 151 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ca93b4f8-775e-4684-806a-453cf37e5bcf - status: 404 Not Found - code: 404 - duration: 25.953939ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 221 + host: api.scaleway.com + body: "{\"name\":\"tf-sg-funny-burnell\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[\"test-terraform\"],\"stateful\":true,\"inbound_default_policy\":\"accept\",\"outbound_default_policy\":\"accept\",\"enable_default_security\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 601 + body: "{\"security_group\": {\"id\": \"90eb46d7-71ab-496f-b537-e7d9d9d42cdb\", \"creation_date\": \"2025-10-30T15:42:35.814049+00:00\", \"modification_date\": \"2025-10-30T15:42:35.814049+00:00\", \"name\": \"tf-sg-funny-burnell\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:35 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/90eb46d7-71ab-496f-b537-e7d9d9d42cdb + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 70501099-172c-4229-a877-17ca28b13c83 + status: 201 Created + code: 201 + duration: 192.905939ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 143 + host: api.scaleway.com + body: "{\"enable_default_security\":true,\"inbound_default_policy\":\"accept\",\"tags\":[\"test-terraform\"],\"outbound_default_policy\":\"accept\",\"stateful\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/90eb46d7-71ab-496f-b537-e7d9d9d42cdb + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 601 + body: "{\"security_group\": {\"id\": \"90eb46d7-71ab-496f-b537-e7d9d9d42cdb\", \"creation_date\": \"2025-10-30T15:42:35.814049+00:00\", \"modification_date\": \"2025-10-30T15:42:35.814049+00:00\", \"name\": \"tf-sg-funny-burnell\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 92dc60ed-ce6c-43ae-b70c-dd1b33c4269b + status: 200 OK + code: 200 + duration: 183.441456ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 190 + host: api.scaleway.com + body: "{\"rules\":[{\"id\":null,\"action\":\"accept\",\"protocol\":\"TCP\",\"direction\":\"inbound\",\"ip_range\":\"0.0.0.0/0\",\"dest_port_from\":80,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"}]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/90eb46d7-71ab-496f-b537-e7d9d9d42cdb/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1792 + 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\": \"f9f95342-6ce0-4e48-b63d-41a4504acc3e\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 724744ae-4cb8-45bd-9eec-0b22a09a0cb5 + status: 200 OK + code: 200 + duration: 482.800829ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/90eb46d7-71ab-496f-b537-e7d9d9d42cdb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 599 + body: "{\"security_group\": {\"id\": \"90eb46d7-71ab-496f-b537-e7d9d9d42cdb\", \"creation_date\": \"2025-10-30T15:42:35.814049+00:00\", \"modification_date\": \"2025-10-30T15:42:36.067157+00:00\", \"name\": \"tf-sg-funny-burnell\", \"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: + - "599" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 47764896-a775-45af-bf62-fe8d2f9e13c7 + status: 200 OK + code: 200 + duration: 102.78427ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/90eb46d7-71ab-496f-b537-e7d9d9d42cdb/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1792 + 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\": \"f9f95342-6ce0-4e48-b63d-41a4504acc3e\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7f6d543e-5edd-4463-bd7e-9553cc639bc7 + status: 200 OK + code: 200 + duration: 100.187089ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/90eb46d7-71ab-496f-b537-e7d9d9d42cdb/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1792 + 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\": \"f9f95342-6ce0-4e48-b63d-41a4504acc3e\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6b5d2c98-c06d-4198-a742-86005e696fcd + status: 200 OK + code: 200 + duration: 104.712327ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/90eb46d7-71ab-496f-b537-e7d9d9d42cdb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 601 + body: "{\"security_group\": {\"id\": \"90eb46d7-71ab-496f-b537-e7d9d9d42cdb\", \"creation_date\": \"2025-10-30T15:42:35.814049+00:00\", \"modification_date\": \"2025-10-30T15:42:36.532092+00:00\", \"name\": \"tf-sg-funny-burnell\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1a1089d1-e1a8-4e66-a3ac-190411b590f8 + status: 200 OK + code: 200 + duration: 90.631425ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/90eb46d7-71ab-496f-b537-e7d9d9d42cdb/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1792 + 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\": \"f9f95342-6ce0-4e48-b63d-41a4504acc3e\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f3e44631-3536-4d42-bcf0-fe117df14349 + status: 200 OK + code: 200 + duration: 100.991438ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/90eb46d7-71ab-496f-b537-e7d9d9d42cdb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 601 + body: "{\"security_group\": {\"id\": \"90eb46d7-71ab-496f-b537-e7d9d9d42cdb\", \"creation_date\": \"2025-10-30T15:42:35.814049+00:00\", \"modification_date\": \"2025-10-30T15:42:36.532092+00:00\", \"name\": \"tf-sg-funny-burnell\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 786ed104-4a28-4f90-835a-2a080e5385e7 + status: 200 OK + code: 200 + duration: 86.542355ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/90eb46d7-71ab-496f-b537-e7d9d9d42cdb/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1792 + 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\": \"f9f95342-6ce0-4e48-b63d-41a4504acc3e\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 629a261b-694c-43ba-915e-5d8ccfcd6228 + status: 200 OK + code: 200 + duration: 125.117784ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 141 + host: api.scaleway.com + body: "{\"name\":\"tf-sg-funny-burnell\",\"inbound_default_policy\":\"accept\",\"tags\":[\"test-terraform\"],\"outbound_default_policy\":\"accept\",\"stateful\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/90eb46d7-71ab-496f-b537-e7d9d9d42cdb + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 601 + body: "{\"security_group\": {\"id\": \"90eb46d7-71ab-496f-b537-e7d9d9d42cdb\", \"creation_date\": \"2025-10-30T15:42:35.814049+00:00\", \"modification_date\": \"2025-10-30T15:42:36.532092+00:00\", \"name\": \"tf-sg-funny-burnell\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 35405d67-1fa5-4bad-995d-86c01bab82ec + status: 200 OK + code: 200 + duration: 195.029473ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 192 + host: api.scaleway.com + body: "{\"rules\":[{\"id\":null,\"action\":\"drop\",\"protocol\":\"ICMP\",\"direction\":\"inbound\",\"ip_range\":\"8.8.8.8/32\",\"dest_port_from\":null,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"}]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/90eb46d7-71ab-496f-b537-e7d9d9d42cdb/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1791 + 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\": \"7e460fbc-a0e9-458b-9986-09bfd8c3a2fb\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d7a7163a-4e02-4b95-8ee1-f8a6aad9f123 + status: 200 OK + code: 200 + duration: 231.388595ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/90eb46d7-71ab-496f-b537-e7d9d9d42cdb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 599 + body: "{\"security_group\": {\"id\": \"90eb46d7-71ab-496f-b537-e7d9d9d42cdb\", \"creation_date\": \"2025-10-30T15:42:35.814049+00:00\", \"modification_date\": \"2025-10-30T15:42:37.973292+00:00\", \"name\": \"tf-sg-funny-burnell\", \"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: + - "599" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b949e18f-b918-48b5-8880-130c7567cb34 + status: 200 OK + code: 200 + duration: 104.123874ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/90eb46d7-71ab-496f-b537-e7d9d9d42cdb/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1791 + 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\": \"7e460fbc-a0e9-458b-9986-09bfd8c3a2fb\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fd0af788-d7f1-4b3a-bb3d-11f5adae16ee + status: 200 OK + code: 200 + duration: 97.240863ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/90eb46d7-71ab-496f-b537-e7d9d9d42cdb/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1791 + 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\": \"7e460fbc-a0e9-458b-9986-09bfd8c3a2fb\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3bf51732-ff33-4419-9596-8de5a834f4e2 + status: 200 OK + code: 200 + duration: 109.140865ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/90eb46d7-71ab-496f-b537-e7d9d9d42cdb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 601 + body: "{\"security_group\": {\"id\": \"90eb46d7-71ab-496f-b537-e7d9d9d42cdb\", \"creation_date\": \"2025-10-30T15:42:35.814049+00:00\", \"modification_date\": \"2025-10-30T15:42:38.198127+00:00\", \"name\": \"tf-sg-funny-burnell\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 113b6604-12d1-4354-b4ee-3b3a773bb070 + status: 200 OK + code: 200 + duration: 91.728984ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/90eb46d7-71ab-496f-b537-e7d9d9d42cdb/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1791 + 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\": \"7e460fbc-a0e9-458b-9986-09bfd8c3a2fb\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6ee80eae-73e0-418a-9ce1-431982fd3b0a + status: 200 OK + code: 200 + duration: 251.174109ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/90eb46d7-71ab-496f-b537-e7d9d9d42cdb + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aeec9430-5a08-474c-a05d-f4d0b1f10a59 + status: 204 No Content + code: 204 + duration: 142.163098ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/90eb46d7-71ab-496f-b537-e7d9d9d42cdb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 151 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_security_group\", \"resource_id\": \"90eb46d7-71ab-496f-b537-e7d9d9d42cdb\"}" + headers: + Content-Length: + - "151" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d5ab5bc7-e425-4bc4-b8b7-46b0a7bcde74 + status: 404 Not Found + code: 404 + duration: 25.399874ms 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 61f38a0c6..e2db20c01 100644 --- a/internal/services/instance/testdata/security-group-remove-port.cassette.yaml +++ b/internal/services/instance/testdata/security-group-remove-port.cassette.yaml @@ -1,806 +1,647 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 224 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 604 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9c8da80b-645a-4a20-ba9a-9ba0afe19e18 - status: 201 Created - code: 201 - duration: 208.651027ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 143 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"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/c47c628a-c22d-48d0-b443-ee0e9d08adb9 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 604 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 607f213d-245e-410f-9b83-1492c980abd7 - status: 200 OK - code: 200 - duration: 168.02694ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 190 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[{"id":null,"action":"accept","protocol":"TCP","direction":"inbound","ip_range":"0.0.0.0/0","dest_port_from":22,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"}]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1792 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 46c00261-19fc-4dae-9c5a-653c8658947a - status: 200 OK - code: 200 - duration: 328.556762ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 602 - uncompressed: false - 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: - - "602" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 02611678-03a2-43cd-a1f8-d22e07737100 - status: 200 OK - code: 200 - duration: 86.268712ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/c47c628a-c22d-48d0-b443-ee0e9d08adb9/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1792 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5a6ebf9b-eca3-4d82-af48-a5f39f975cb5 - status: 200 OK - code: 200 - duration: 110.205728ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/c47c628a-c22d-48d0-b443-ee0e9d08adb9/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1792 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 620084d0-4975-443c-9320-7589a59109e7 - status: 200 OK - code: 200 - duration: 92.129139ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 604 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 07d74f55-5842-40dd-9a23-412d22439c06 - status: 200 OK - code: 200 - duration: 305.592876ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/c47c628a-c22d-48d0-b443-ee0e9d08adb9/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1792 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fe2ef2bc-9022-47e0-b50e-2969faaac1b1 - status: 200 OK - code: 200 - duration: 257.133369ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 604 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4f5865fa-ea65-486d-a423-000a325126f6 - status: 200 OK - code: 200 - duration: 91.370121ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/c47c628a-c22d-48d0-b443-ee0e9d08adb9/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1792 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6919c2cd-5ea0-4d2f-bc5d-9329c276c1a7 - status: 200 OK - code: 200 - duration: 86.936951ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 128 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/c47c628a-c22d-48d0-b443-ee0e9d08adb9 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 586 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fa1fdd41-82f6-40c0-b36f-1b7ad36127db - status: 200 OK - code: 200 - duration: 282.112554ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 192 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[{"id":null,"action":"accept","protocol":"TCP","direction":"inbound","ip_range":"0.0.0.0/0","dest_port_from":null,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"}]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1794 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b92bfd33-0901-4fb2-8257-b76feef36a4f - status: 200 OK - code: 200 - duration: 474.152104ms - - 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/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 588 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e99f6bc1-7607-4790-96ab-b25eab73ba06 - status: 200 OK - code: 200 - duration: 114.106022ms - - 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: - 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/c47c628a-c22d-48d0-b443-ee0e9d08adb9/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1794 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ee718b4b-9c55-451c-814c-55e3b38bb25c - status: 200 OK - code: 200 - duration: 124.230902ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/c47c628a-c22d-48d0-b443-ee0e9d08adb9/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1794 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c05b5125-04bf-4c39-b8bd-a2ba25ed0f99 - status: 200 OK - code: 200 - duration: 108.013651ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 588 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b658fe54-9b27-4ec5-bf26-bf1fa10ff3ba - status: 200 OK - code: 200 - duration: 113.357302ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/c47c628a-c22d-48d0-b443-ee0e9d08adb9/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1794 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fc4e4d74-f237-4ecf-b483-100f27269caf - status: 200 OK - code: 200 - duration: 89.407231ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9 - 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:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cd10d9b5-7a06-414b-9cf3-13a8babc971f - status: 204 No Content - code: 204 - duration: 141.863111ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c47c628a-c22d-48d0-b443-ee0e9d08adb9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 151 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4f4e480c-260e-4f4e-846d-7b68930a018f - status: 404 Not Found - code: 404 - duration: 35.139963ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 232 + host: api.scaleway.com + body: "{\"name\":\"tf-sg-xenodochial-grothendieck\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[\"test-terraform\"],\"stateful\":true,\"inbound_default_policy\":\"accept\",\"outbound_default_policy\":\"accept\",\"enable_default_security\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 612 + body: "{\"security_group\": {\"id\": \"7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd\", \"creation_date\": \"2025-10-30T15:42:27.294916+00:00\", \"modification_date\": \"2025-10-30T15:42:27.294916+00:00\", \"name\": \"tf-sg-xenodochial-grothendieck\", \"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: + - "612" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:27 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c6d038e7-5c38-4f2c-b87e-7c4b1562ba0a + status: 201 Created + code: 201 + duration: 206.309147ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 143 + host: api.scaleway.com + body: "{\"enable_default_security\":true,\"inbound_default_policy\":\"accept\",\"tags\":[\"test-terraform\"],\"outbound_default_policy\":\"accept\",\"stateful\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 612 + body: "{\"security_group\": {\"id\": \"7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd\", \"creation_date\": \"2025-10-30T15:42:27.294916+00:00\", \"modification_date\": \"2025-10-30T15:42:27.294916+00:00\", \"name\": \"tf-sg-xenodochial-grothendieck\", \"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: + - "612" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 071fddd1-3c1d-4910-a342-24c5c7d211e8 + status: 200 OK + code: 200 + duration: 178.250726ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 190 + host: api.scaleway.com + body: "{\"rules\":[{\"id\":null,\"action\":\"accept\",\"protocol\":\"TCP\",\"direction\":\"inbound\",\"ip_range\":\"0.0.0.0/0\",\"dest_port_from\":22,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"}]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1792 + 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\": \"becd7520-9ed7-4a65-88d1-ea0986d9d24f\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6e167c17-434e-4b45-b28e-f290b9e67c52 + status: 200 OK + code: 200 + duration: 253.730368ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 610 + body: "{\"security_group\": {\"id\": \"7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd\", \"creation_date\": \"2025-10-30T15:42:27.294916+00:00\", \"modification_date\": \"2025-10-30T15:42:27.525000+00:00\", \"name\": \"tf-sg-xenodochial-grothendieck\", \"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: + - "610" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9b25379a-740f-41d3-8dc9-b4943ffc29d5 + status: 200 OK + code: 200 + duration: 94.663597ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1792 + 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\": \"becd7520-9ed7-4a65-88d1-ea0986d9d24f\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3619257b-08db-424c-9ac8-eb405c40ae6a + status: 200 OK + code: 200 + duration: 113.467418ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1792 + 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\": \"becd7520-9ed7-4a65-88d1-ea0986d9d24f\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0132e32e-b1da-458d-91c0-ba2078a7c459 + status: 200 OK + code: 200 + duration: 94.940476ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 612 + body: "{\"security_group\": {\"id\": \"7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd\", \"creation_date\": \"2025-10-30T15:42:27.294916+00:00\", \"modification_date\": \"2025-10-30T15:42:27.761344+00:00\", \"name\": \"tf-sg-xenodochial-grothendieck\", \"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: + - "612" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cd110273-5537-4ad0-b35f-19b3a3effae6 + status: 200 OK + code: 200 + duration: 95.375082ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1792 + 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\": \"becd7520-9ed7-4a65-88d1-ea0986d9d24f\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6a74a407-6c7c-4baa-81b5-8464bd572950 + status: 200 OK + code: 200 + duration: 104.97535ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 612 + body: "{\"security_group\": {\"id\": \"7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd\", \"creation_date\": \"2025-10-30T15:42:27.294916+00:00\", \"modification_date\": \"2025-10-30T15:42:27.761344+00:00\", \"name\": \"tf-sg-xenodochial-grothendieck\", \"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: + - "612" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ad3002f7-5e6d-4747-8158-7c19980a0863 + status: 200 OK + code: 200 + duration: 85.542939ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1792 + 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\": \"becd7520-9ed7-4a65-88d1-ea0986d9d24f\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c9e18614-bc92-4a7d-b26e-b98f079a2b14 + status: 200 OK + code: 200 + duration: 83.463899ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 136 + host: api.scaleway.com + body: "{\"name\":\"tf-sg-xenodochial-grothendieck\",\"inbound_default_policy\":\"accept\",\"tags\":[],\"outbound_default_policy\":\"accept\",\"stateful\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 594 + body: "{\"security_group\": {\"id\": \"7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd\", \"creation_date\": \"2025-10-30T15:42:27.294916+00:00\", \"modification_date\": \"2025-10-30T15:42:28.903194+00:00\", \"name\": \"tf-sg-xenodochial-grothendieck\", \"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: + - "594" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 96bd3150-f3e8-4350-a322-4bcbd5091467 + status: 200 OK + code: 200 + duration: 263.091588ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 192 + host: api.scaleway.com + body: "{\"rules\":[{\"id\":null,\"action\":\"accept\",\"protocol\":\"TCP\",\"direction\":\"inbound\",\"ip_range\":\"0.0.0.0/0\",\"dest_port_from\":null,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"}]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1794 + 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\": \"ad6e08d5-c668-4948-a634-69a9e985f596\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6232dd14-87df-483d-bd3c-081fc57fc706 + status: 200 OK + code: 200 + duration: 271.706678ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 596 + body: "{\"security_group\": {\"id\": \"7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd\", \"creation_date\": \"2025-10-30T15:42:27.294916+00:00\", \"modification_date\": \"2025-10-30T15:42:29.403401+00:00\", \"name\": \"tf-sg-xenodochial-grothendieck\", \"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: + - "596" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 74d5e215-667e-4135-b023-5da4c60ef42e + status: 200 OK + code: 200 + duration: 81.393015ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1794 + 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\": \"ad6e08d5-c668-4948-a634-69a9e985f596\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 775d9472-b004-4e70-a002-a031000a5bf7 + status: 200 OK + code: 200 + duration: 95.05989ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1794 + 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\": \"ad6e08d5-c668-4948-a634-69a9e985f596\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 36df90e4-1727-47d7-9569-bfb39a71bbb9 + status: 200 OK + code: 200 + duration: 93.232352ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 596 + body: "{\"security_group\": {\"id\": \"7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd\", \"creation_date\": \"2025-10-30T15:42:27.294916+00:00\", \"modification_date\": \"2025-10-30T15:42:29.403401+00:00\", \"name\": \"tf-sg-xenodochial-grothendieck\", \"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: + - "596" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4e9e3f5d-2c2e-4349-91b3-c8d61b969e21 + status: 200 OK + code: 200 + duration: 111.667252ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1794 + 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\": \"ad6e08d5-c668-4948-a634-69a9e985f596\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 39298c7b-a505-4959-8dd1-ec1713235b89 + status: 200 OK + code: 200 + duration: 95.748011ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a61b0743-2c94-416c-8195-a1588e5a44dc + status: 204 No Content + code: 204 + duration: 156.756969ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 151 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_security_group\", \"resource_id\": \"7a4908ab-1ec2-46c9-8f8c-dd5fe54974cd\"}" + headers: + Content-Length: + - "151" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8897d339-f8bf-4252-a4d7-e06d0cc4210c + status: 404 Not Found + code: 404 + duration: 34.202707ms 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 552d626aa..e9646150e 100644 --- a/internal/services/instance/testdata/security-group-rules-basic.cassette.yaml +++ b/internal/services/instance/testdata/security-group-rules-basic.cassette.yaml @@ -1,1308 +1,1046 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 199 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 589 - uncompressed: false - 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: - - "589" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fad15798-ab5d-47f3-8f0d-6be66d974c9e - status: 201 Created - code: 201 - duration: 238.682289ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 589 - uncompressed: false - 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: - - "589" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 43b46479-3a4c-4db9-a2d8-9184f133b511 - status: 200 OK - code: 200 - duration: 120.992517ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 12 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 955040a8-e0c1-4aff-9721-151a4fb8829d - status: 200 OK - code: 200 - duration: 166.087905ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 02624cfc-d7a7-4d6e-9cfa-87851fec44d4 - status: 200 OK - code: 200 - duration: 141.524326ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 589 - uncompressed: false - 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: - - "589" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 56ebb399-7497-41d2-aba3-0218b0b8acf4 - status: 200 OK - code: 200 - duration: 1.690228877s - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 589 - uncompressed: false - 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: - - "589" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 24cfa910-4f13-4d43-b31c-1f1e6b8f2d5f - status: 200 OK - code: 200 - duration: 95.403412ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fdd35a4b-684e-4384-980b-a380ac1e6590 - status: 200 OK - code: 200 - duration: 105.865964ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 589 - uncompressed: false - 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: - - "589" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d997cb56-93a3-46c3-9744-6359dd4b22c1 - status: 200 OK - code: 200 - duration: 102.580772ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 150391cb-fe25-4a1b-8f17-231648a7c702 - status: 200 OK - code: 200 - duration: 88.400619ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 727 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[{"id":null,"action":"accept","protocol":"TCP","direction":"inbound","ip_range":"0.0.0.0/0","dest_port_from":80,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"drop","protocol":"TCP","direction":"inbound","ip_range":"0.0.0.0/0","dest_port_from":443,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"accept","protocol":"TCP","direction":"outbound","ip_range":"0.0.0.0/0","dest_port_from":80,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"drop","protocol":"TCP","direction":"outbound","ip_range":"0.0.0.0/0","dest_port_from":443,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"}]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2560 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 19d4f65c-9de7-4ce2-90db-bf9e051fcc95 - status: 200 OK - code: 200 - duration: 263.209992ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2560 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 957889a8-8d8a-4f10-9c5d-2d87fc1b8dd7 - status: 200 OK - code: 200 - duration: 94.1987ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 589 - uncompressed: false - 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: - - "589" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d74a74e3-81ca-4f02-a3dc-b2ad14e37dee - status: 200 OK - code: 200 - duration: 90.972608ms - - 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/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 589 - uncompressed: false - 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: - - "589" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0ab71b6b-ff51-416b-8662-bbf9902789c4 - status: 200 OK - code: 200 - duration: 95.685079ms - - 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: - 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/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2560 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2aa0f01b-a5d9-4d26-8f3b-5d8d2dcf84c1 - status: 200 OK - code: 200 - duration: 128.110026ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 589 - uncompressed: false - 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: - - "589" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9c32b80b-2631-4834-b8d0-d34af6b9e28d - status: 200 OK - code: 200 - duration: 92.552592ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2560 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cf645e91-5fb1-4373-90b5-54758a2aab1a - status: 200 OK - code: 200 - duration: 90.911905ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 368 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[{"id":null,"action":"drop","protocol":"TCP","direction":"inbound","ip_range":"0.0.0.0/0","dest_port_from":443,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"drop","protocol":"TCP","direction":"outbound","ip_range":"0.0.0.0/0","dest_port_from":443,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"}]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2047 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 84157417-9ca5-4ae6-9bff-f83c34eeb5c2 - status: 200 OK - code: 200 - duration: 279.65443ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2047 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 131ec73d-8f7e-49c9-875c-59f1ff91ab0d - status: 200 OK - code: 200 - duration: 80.289994ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 589 - uncompressed: false - 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: - - "589" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e7109cdb-4611-49d4-9cee-1fe153a69266 - status: 200 OK - code: 200 - duration: 97.467553ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 589 - uncompressed: false - 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: - - "589" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9fd2f7a0-4f37-46d4-ba6c-3e42adefeb81 - status: 200 OK - code: 200 - duration: 113.023659ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2047 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e6dab0f9-e86f-4461-941f-3a7d783567ca - status: 200 OK - code: 200 - duration: 92.510354ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 589 - uncompressed: false - 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: - - "589" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4778b813-802b-4423-9c98-e0e98088c100 - status: 200 OK - code: 200 - duration: 105.011458ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2047 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 166b7f43-d3be-4ab7-90bc-57d33c412635 - status: 200 OK - code: 200 - duration: 112.705864ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 12 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c2b27772-9ca1-409c-887a-1b5172a2cac7 - status: 200 OK - code: 200 - duration: 320.431626ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3fb8725c-87f9-4cba-8ba6-14e0cb7cd4b9 - status: 200 OK - code: 200 - duration: 105.008783ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 589 - uncompressed: false - 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: - - "589" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1b0a4b19-a9b0-42c9-b7f7-56f485cb1ef9 - status: 200 OK - code: 200 - duration: 104.457292ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 589 - uncompressed: false - 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: - - "589" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0600ed0b-5365-4f5c-8e58-9c3ea4d1653e - status: 200 OK - code: 200 - duration: 97.920289ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 21110011-3853-4d15-9ef5-5262516e0c86 - status: 200 OK - code: 200 - duration: 115.337515ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 12 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a392d2f6-7f6f-4fe0-be40-f91ffdaeb753 - status: 200 OK - code: 200 - duration: 164.029901ms - - 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/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 - 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:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0a9605c4-ded5-4b0f-b159-ce94f5ce1e70 - status: 204 No Content - code: 204 - duration: 142.16608ms - - 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/security_groups/d1f5fabd-eca6-4c21-ac58-7afe7ff0cbd8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 151 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - df5901f9-1213-462f-87cd-47758647c363 - status: 404 Not Found - code: 404 - duration: 31.13223ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 195 + host: api.scaleway.com + body: "{\"name\":\"tf-sg-strange-euler\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"stateful\":true,\"inbound_default_policy\":\"accept\",\"outbound_default_policy\":\"accept\",\"enable_default_security\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 585 + body: "{\"security_group\": {\"id\": \"51d19372-f160-4780-903c-cf77df76f3f7\", \"creation_date\": \"2025-10-30T15:42:48.739125+00:00\", \"modification_date\": \"2025-10-30T15:42:48.739125+00:00\", \"name\": \"tf-sg-strange-euler\", \"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: + - "585" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/51d19372-f160-4780-903c-cf77df76f3f7 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 38d4233d-9a6f-4a71-8939-ce1e3ea74450 + status: 201 Created + code: 201 + duration: 188.446099ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/51d19372-f160-4780-903c-cf77df76f3f7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 585 + body: "{\"security_group\": {\"id\": \"51d19372-f160-4780-903c-cf77df76f3f7\", \"creation_date\": \"2025-10-30T15:42:48.739125+00:00\", \"modification_date\": \"2025-10-30T15:42:48.739125+00:00\", \"name\": \"tf-sg-strange-euler\", \"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: + - "585" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3a95fc6a-6290-41d6-9c85-a09fc987b3ee + status: 200 OK + code: 200 + duration: 96.018842ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 12 + host: api.scaleway.com + body: "{\"rules\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/51d19372-f160-4780-903c-cf77df76f3f7/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e9bb9a14-5558-4138-9647-a90336aa81a5 + status: 200 OK + code: 200 + duration: 185.567168ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/51d19372-f160-4780-903c-cf77df76f3f7/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a26c4b58-9505-4acb-b9f7-8f3f067e3778 + status: 200 OK + code: 200 + duration: 119.011953ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/51d19372-f160-4780-903c-cf77df76f3f7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 585 + body: "{\"security_group\": {\"id\": \"51d19372-f160-4780-903c-cf77df76f3f7\", \"creation_date\": \"2025-10-30T15:42:48.739125+00:00\", \"modification_date\": \"2025-10-30T15:42:48.739125+00:00\", \"name\": \"tf-sg-strange-euler\", \"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: + - "585" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e40dd69b-c750-495d-b7ef-e448607b64f6 + status: 200 OK + code: 200 + duration: 94.462163ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/51d19372-f160-4780-903c-cf77df76f3f7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 585 + body: "{\"security_group\": {\"id\": \"51d19372-f160-4780-903c-cf77df76f3f7\", \"creation_date\": \"2025-10-30T15:42:48.739125+00:00\", \"modification_date\": \"2025-10-30T15:42:48.739125+00:00\", \"name\": \"tf-sg-strange-euler\", \"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: + - "585" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 93b1cec3-14d9-4eae-9144-6e1f48ca1756 + status: 200 OK + code: 200 + duration: 98.535604ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/51d19372-f160-4780-903c-cf77df76f3f7/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8d3d0d32-7676-4a41-a14c-46f0d853fd5d + status: 200 OK + code: 200 + duration: 97.741755ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/51d19372-f160-4780-903c-cf77df76f3f7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 585 + body: "{\"security_group\": {\"id\": \"51d19372-f160-4780-903c-cf77df76f3f7\", \"creation_date\": \"2025-10-30T15:42:48.739125+00:00\", \"modification_date\": \"2025-10-30T15:42:48.739125+00:00\", \"name\": \"tf-sg-strange-euler\", \"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: + - "585" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6cf59818-aa90-4c5f-954c-1b747509450c + status: 200 OK + code: 200 + duration: 108.885398ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/51d19372-f160-4780-903c-cf77df76f3f7/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 17df3bbe-8aad-4dd4-9850-af14a4e86aa7 + status: 200 OK + code: 200 + duration: 120.074637ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 727 + host: api.scaleway.com + body: "{\"rules\":[{\"id\":null,\"action\":\"accept\",\"protocol\":\"TCP\",\"direction\":\"inbound\",\"ip_range\":\"0.0.0.0/0\",\"dest_port_from\":80,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"},{\"id\":null,\"action\":\"drop\",\"protocol\":\"TCP\",\"direction\":\"inbound\",\"ip_range\":\"0.0.0.0/0\",\"dest_port_from\":443,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"},{\"id\":null,\"action\":\"accept\",\"protocol\":\"TCP\",\"direction\":\"outbound\",\"ip_range\":\"0.0.0.0/0\",\"dest_port_from\":80,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"},{\"id\":null,\"action\":\"drop\",\"protocol\":\"TCP\",\"direction\":\"outbound\",\"ip_range\":\"0.0.0.0/0\",\"dest_port_from\":443,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"}]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/51d19372-f160-4780-903c-cf77df76f3f7/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2560 + 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\": \"c04c495c-b63d-4829-8630-91cb34fe9ca7\", \"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\": \"a2086fff-6f35-47b2-a47c-ae6ca2b665f1\", \"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\": \"af00bef2-3c3e-4d0e-b659-2695e8f86c6b\", \"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\": \"ea40f3f0-5d86-4ebe-951b-132323e09057\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8e50951e-cc69-40f2-875a-342c3c1bc1af + status: 200 OK + code: 200 + duration: 263.97652ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/51d19372-f160-4780-903c-cf77df76f3f7/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2560 + 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\": \"c04c495c-b63d-4829-8630-91cb34fe9ca7\", \"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\": \"a2086fff-6f35-47b2-a47c-ae6ca2b665f1\", \"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\": \"af00bef2-3c3e-4d0e-b659-2695e8f86c6b\", \"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\": \"ea40f3f0-5d86-4ebe-951b-132323e09057\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e9e6f0e3-32aa-4fa5-9251-67ee96e39694 + status: 200 OK + code: 200 + duration: 124.493366ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/51d19372-f160-4780-903c-cf77df76f3f7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 585 + body: "{\"security_group\": {\"id\": \"51d19372-f160-4780-903c-cf77df76f3f7\", \"creation_date\": \"2025-10-30T15:42:48.739125+00:00\", \"modification_date\": \"2025-10-30T15:42:50.430533+00:00\", \"name\": \"tf-sg-strange-euler\", \"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: + - "585" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8de2bc9e-9016-4812-903e-1add6fb06526 + status: 200 OK + code: 200 + duration: 96.996026ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/51d19372-f160-4780-903c-cf77df76f3f7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 585 + body: "{\"security_group\": {\"id\": \"51d19372-f160-4780-903c-cf77df76f3f7\", \"creation_date\": \"2025-10-30T15:42:48.739125+00:00\", \"modification_date\": \"2025-10-30T15:42:50.430533+00:00\", \"name\": \"tf-sg-strange-euler\", \"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: + - "585" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6a8e7a9e-f25e-4e06-946c-baceeab7d006 + status: 200 OK + code: 200 + duration: 105.767349ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/51d19372-f160-4780-903c-cf77df76f3f7/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2560 + 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\": \"c04c495c-b63d-4829-8630-91cb34fe9ca7\", \"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\": \"a2086fff-6f35-47b2-a47c-ae6ca2b665f1\", \"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\": \"af00bef2-3c3e-4d0e-b659-2695e8f86c6b\", \"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\": \"ea40f3f0-5d86-4ebe-951b-132323e09057\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 16df6222-40c8-4efb-ad70-6dc1cd4aedd9 + status: 200 OK + code: 200 + duration: 114.385135ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/51d19372-f160-4780-903c-cf77df76f3f7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 585 + body: "{\"security_group\": {\"id\": \"51d19372-f160-4780-903c-cf77df76f3f7\", \"creation_date\": \"2025-10-30T15:42:48.739125+00:00\", \"modification_date\": \"2025-10-30T15:42:50.430533+00:00\", \"name\": \"tf-sg-strange-euler\", \"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: + - "585" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 41ce1a81-b6bc-4a5d-952f-35b28dc68e88 + status: 200 OK + code: 200 + duration: 97.444027ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/51d19372-f160-4780-903c-cf77df76f3f7/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2560 + 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\": \"c04c495c-b63d-4829-8630-91cb34fe9ca7\", \"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\": \"a2086fff-6f35-47b2-a47c-ae6ca2b665f1\", \"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\": \"af00bef2-3c3e-4d0e-b659-2695e8f86c6b\", \"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\": \"ea40f3f0-5d86-4ebe-951b-132323e09057\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f241423a-bcd0-4ea5-9a76-ad08538146ba + status: 200 OK + code: 200 + duration: 96.605133ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 368 + host: api.scaleway.com + body: "{\"rules\":[{\"id\":null,\"action\":\"drop\",\"protocol\":\"TCP\",\"direction\":\"inbound\",\"ip_range\":\"0.0.0.0/0\",\"dest_port_from\":443,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"},{\"id\":null,\"action\":\"drop\",\"protocol\":\"TCP\",\"direction\":\"outbound\",\"ip_range\":\"0.0.0.0/0\",\"dest_port_from\":443,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"}]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/51d19372-f160-4780-903c-cf77df76f3f7/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + 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\": \"d7720282-7888-45b9-9f73-923976b8ee77\", \"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\": \"f7a7af13-87e6-4899-8c86-30cf94929332\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 11dc4beb-79cf-4a3b-85c5-0ad870456246 + status: 200 OK + code: 200 + duration: 363.774813ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/51d19372-f160-4780-903c-cf77df76f3f7/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + 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\": \"d7720282-7888-45b9-9f73-923976b8ee77\", \"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\": \"f7a7af13-87e6-4899-8c86-30cf94929332\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2020d47e-654b-4c61-8cf0-e91d5d66e2a7 + status: 200 OK + code: 200 + duration: 90.113626ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/51d19372-f160-4780-903c-cf77df76f3f7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 585 + body: "{\"security_group\": {\"id\": \"51d19372-f160-4780-903c-cf77df76f3f7\", \"creation_date\": \"2025-10-30T15:42:48.739125+00:00\", \"modification_date\": \"2025-10-30T15:42:51.965054+00:00\", \"name\": \"tf-sg-strange-euler\", \"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: + - "585" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0ce1f2cd-3ca5-4304-bd17-bf855fb50f61 + status: 200 OK + code: 200 + duration: 90.844327ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/51d19372-f160-4780-903c-cf77df76f3f7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 585 + body: "{\"security_group\": {\"id\": \"51d19372-f160-4780-903c-cf77df76f3f7\", \"creation_date\": \"2025-10-30T15:42:48.739125+00:00\", \"modification_date\": \"2025-10-30T15:42:51.965054+00:00\", \"name\": \"tf-sg-strange-euler\", \"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: + - "585" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3447dc66-81e8-4b86-9321-02d6dcd4bbfa + status: 200 OK + code: 200 + duration: 95.719843ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/51d19372-f160-4780-903c-cf77df76f3f7/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + 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\": \"d7720282-7888-45b9-9f73-923976b8ee77\", \"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\": \"f7a7af13-87e6-4899-8c86-30cf94929332\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fba124a1-6ad1-4ded-8e60-6e5fc328c60d + status: 200 OK + code: 200 + duration: 104.891427ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/51d19372-f160-4780-903c-cf77df76f3f7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 585 + body: "{\"security_group\": {\"id\": \"51d19372-f160-4780-903c-cf77df76f3f7\", \"creation_date\": \"2025-10-30T15:42:48.739125+00:00\", \"modification_date\": \"2025-10-30T15:42:51.965054+00:00\", \"name\": \"tf-sg-strange-euler\", \"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: + - "585" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5d48a379-d66a-437b-943f-84691f7520f3 + status: 200 OK + code: 200 + duration: 114.85715ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/51d19372-f160-4780-903c-cf77df76f3f7/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + 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\": \"d7720282-7888-45b9-9f73-923976b8ee77\", \"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\": \"f7a7af13-87e6-4899-8c86-30cf94929332\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9d13f74d-5174-4237-a85a-58cff495a307 + status: 200 OK + code: 200 + duration: 92.470176ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 12 + host: api.scaleway.com + body: "{\"rules\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/51d19372-f160-4780-903c-cf77df76f3f7/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - abae0c8c-873c-4f47-8946-e605a353bedc + status: 200 OK + code: 200 + duration: 724.88988ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/51d19372-f160-4780-903c-cf77df76f3f7/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4b6666bd-ae5a-48cd-af3d-0123fd5d2f2b + status: 200 OK + code: 200 + duration: 101.102599ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/51d19372-f160-4780-903c-cf77df76f3f7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 585 + body: "{\"security_group\": {\"id\": \"51d19372-f160-4780-903c-cf77df76f3f7\", \"creation_date\": \"2025-10-30T15:42:48.739125+00:00\", \"modification_date\": \"2025-10-30T15:42:53.819801+00:00\", \"name\": \"tf-sg-strange-euler\", \"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: + - "585" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 90e0a00d-57b7-4c75-8836-8760f99b186f + status: 200 OK + code: 200 + duration: 97.139706ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/51d19372-f160-4780-903c-cf77df76f3f7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 585 + body: "{\"security_group\": {\"id\": \"51d19372-f160-4780-903c-cf77df76f3f7\", \"creation_date\": \"2025-10-30T15:42:48.739125+00:00\", \"modification_date\": \"2025-10-30T15:42:53.819801+00:00\", \"name\": \"tf-sg-strange-euler\", \"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: + - "585" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 15dc6c0a-63a6-4ae4-96ac-1fea01f12f01 + status: 200 OK + code: 200 + duration: 97.776381ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/51d19372-f160-4780-903c-cf77df76f3f7/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c0751fb0-40ca-4de5-9f4b-b9afc5c4ae07 + status: 200 OK + code: 200 + duration: 113.569125ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 12 + host: api.scaleway.com + body: "{\"rules\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/51d19372-f160-4780-903c-cf77df76f3f7/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 30eac3ef-5355-4835-817a-72c24781a229 + status: 200 OK + code: 200 + duration: 161.646579ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/51d19372-f160-4780-903c-cf77df76f3f7 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 09a5f612-c052-42c1-a191-660d36d2ccdd + status: 204 No Content + code: 204 + duration: 151.924642ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/51d19372-f160-4780-903c-cf77df76f3f7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 151 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_security_group\", \"resource_id\": \"51d19372-f160-4780-903c-cf77df76f3f7\"}" + headers: + Content-Length: + - "151" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 116cc159-3182-4249-959e-a4a1c3f322b2 + status: 404 Not Found + code: 404 + duration: 25.867843ms 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 435f4cc3f..6295c83d7 100644 --- a/internal/services/instance/testdata/security-group-rules-basic2.cassette.yaml +++ b/internal/services/instance/testdata/security-group-rules-basic2.cassette.yaml @@ -1,425 +1,341 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 196 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 586 - uncompressed: false - 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: - - "586" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 23:08:00 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/2fc063dc-c801-4f92-b55b-d278e743545c - Server: - - Scaleway API Gateway (fr-par-3;edge01) - X-Request-Id: - - 0f068e08-9866-44a6-89d1-1f534a540e93 - status: 201 Created - code: 201 - duration: 282.550507ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/2fc063dc-c801-4f92-b55b-d278e743545c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 586 - uncompressed: false - 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: - - "586" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 23:08:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - X-Request-Id: - - b17e27d3-6906-43e4-a3ef-0f339f343863 - status: 200 OK - code: 200 - duration: 117.272129ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 727 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[{"id":null,"action":"accept","protocol":"TCP","direction":"inbound","ip_range":"0.0.0.0/0","dest_port_from":80,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"drop","protocol":"TCP","direction":"inbound","ip_range":"0.0.0.0/0","dest_port_from":443,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"accept","protocol":"TCP","direction":"outbound","ip_range":"0.0.0.0/0","dest_port_from":80,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"drop","protocol":"TCP","direction":"outbound","ip_range":"0.0.0.0/0","dest_port_from":443,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"}]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2560 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 23:08:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - X-Request-Id: - - b9e8e11c-a973-477d-b434-8bb27eb9c414 - status: 200 OK - code: 200 - duration: 278.858449ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/2fc063dc-c801-4f92-b55b-d278e743545c/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2560 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 23:08:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - X-Request-Id: - - 9225928a-efa9-4fc3-979a-cac28d862448 - status: 200 OK - code: 200 - duration: 111.697093ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/2fc063dc-c801-4f92-b55b-d278e743545c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 586 - uncompressed: false - 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: - - "586" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 23:08:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - X-Request-Id: - - c8f24c70-3803-498c-9cef-94b1d37cec3c - status: 200 OK - code: 200 - duration: 116.876473ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/2fc063dc-c801-4f92-b55b-d278e743545c/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2560 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 23:08:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - X-Request-Id: - - 192df918-89d4-45a7-85d7-1d30b928afd3 - status: 200 OK - code: 200 - duration: 115.603546ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/2fc063dc-c801-4f92-b55b-d278e743545c/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2560 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 23:08:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - X-Request-Id: - - 8cfbf461-daf5-40bc-a92f-99d26447b7dc - status: 200 OK - code: 200 - duration: 126.823621ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 12 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 23:08:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - X-Request-Id: - - f18ad219-3806-4a21-9b86-a9c5bcc944c4 - status: 200 OK - code: 200 - duration: 322.825221ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/2fc063dc-c801-4f92-b55b-d278e743545c - 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 23:08:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - X-Request-Id: - - 3085e285-6f6f-4ac5-aa73-463d157643d5 - status: 204 No Content - code: 204 - duration: 163.830589ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/2fc063dc-c801-4f92-b55b-d278e743545c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 151 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 23:08:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - X-Request-Id: - - 9a9e7c5e-55e1-4e89-b806-b7a84115113d - status: 404 Not Found - code: 404 - duration: 32.930451ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 196 + host: api.scaleway.com + body: "{\"name\":\"tf-sg-strange-sammet\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"stateful\":true,\"inbound_default_policy\":\"accept\",\"outbound_default_policy\":\"accept\",\"enable_default_security\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 586 + body: "{\"security_group\": {\"id\": \"03f313c6-5601-42a4-a394-708341949bfc\", \"creation_date\": \"2025-10-30T15:42:44.243901+00:00\", \"modification_date\": \"2025-10-30T15:42:44.243901+00:00\", \"name\": \"tf-sg-strange-sammet\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:44 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/03f313c6-5601-42a4-a394-708341949bfc + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 704b2f09-0472-409e-8884-f5657375200d + status: 201 Created + code: 201 + duration: 199.449738ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/03f313c6-5601-42a4-a394-708341949bfc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 586 + body: "{\"security_group\": {\"id\": \"03f313c6-5601-42a4-a394-708341949bfc\", \"creation_date\": \"2025-10-30T15:42:44.243901+00:00\", \"modification_date\": \"2025-10-30T15:42:44.243901+00:00\", \"name\": \"tf-sg-strange-sammet\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1d38e943-3384-4aa0-bcfd-387eff7a2d22 + status: 200 OK + code: 200 + duration: 108.180836ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 727 + host: api.scaleway.com + body: "{\"rules\":[{\"id\":null,\"action\":\"accept\",\"protocol\":\"TCP\",\"direction\":\"inbound\",\"ip_range\":\"0.0.0.0/0\",\"dest_port_from\":80,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"},{\"id\":null,\"action\":\"drop\",\"protocol\":\"TCP\",\"direction\":\"inbound\",\"ip_range\":\"0.0.0.0/0\",\"dest_port_from\":443,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"},{\"id\":null,\"action\":\"accept\",\"protocol\":\"TCP\",\"direction\":\"outbound\",\"ip_range\":\"0.0.0.0/0\",\"dest_port_from\":80,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"},{\"id\":null,\"action\":\"drop\",\"protocol\":\"TCP\",\"direction\":\"outbound\",\"ip_range\":\"0.0.0.0/0\",\"dest_port_from\":443,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"}]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/03f313c6-5601-42a4-a394-708341949bfc/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2560 + 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\": \"579b9e6e-73aa-4580-84b7-9da793b33cf0\", \"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\": \"0b9b4492-68f0-4553-a365-5193c9c879dc\", \"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\": \"0e55f541-955b-4c37-965e-0b5378115219\", \"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\": \"27cad5d6-a3c9-41ee-bd41-2866d2d63dc1\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c3ae970c-7de2-433a-8956-c6b1beb8e603 + status: 200 OK + code: 200 + duration: 341.257971ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/03f313c6-5601-42a4-a394-708341949bfc/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2560 + 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\": \"579b9e6e-73aa-4580-84b7-9da793b33cf0\", \"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\": \"0b9b4492-68f0-4553-a365-5193c9c879dc\", \"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\": \"0e55f541-955b-4c37-965e-0b5378115219\", \"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\": \"27cad5d6-a3c9-41ee-bd41-2866d2d63dc1\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cf49f6be-d11e-437b-870f-2e69ba961bec + status: 200 OK + code: 200 + duration: 104.430511ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/03f313c6-5601-42a4-a394-708341949bfc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 586 + body: "{\"security_group\": {\"id\": \"03f313c6-5601-42a4-a394-708341949bfc\", \"creation_date\": \"2025-10-30T15:42:44.243901+00:00\", \"modification_date\": \"2025-10-30T15:42:44.753312+00:00\", \"name\": \"tf-sg-strange-sammet\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3687ce99-eb15-48d8-a191-7b39732d9963 + status: 200 OK + code: 200 + duration: 111.382171ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/03f313c6-5601-42a4-a394-708341949bfc/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2560 + 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\": \"579b9e6e-73aa-4580-84b7-9da793b33cf0\", \"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\": \"0b9b4492-68f0-4553-a365-5193c9c879dc\", \"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\": \"0e55f541-955b-4c37-965e-0b5378115219\", \"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\": \"27cad5d6-a3c9-41ee-bd41-2866d2d63dc1\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3dcbd1a8-4c47-4c30-8adb-ae772f593942 + status: 200 OK + code: 200 + duration: 100.242665ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/03f313c6-5601-42a4-a394-708341949bfc/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2560 + 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\": \"579b9e6e-73aa-4580-84b7-9da793b33cf0\", \"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\": \"0b9b4492-68f0-4553-a365-5193c9c879dc\", \"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\": \"0e55f541-955b-4c37-965e-0b5378115219\", \"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\": \"27cad5d6-a3c9-41ee-bd41-2866d2d63dc1\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c8e38a2e-b085-4f4c-9167-2fcbd28bd2c2 + status: 200 OK + code: 200 + duration: 115.979554ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 12 + host: api.scaleway.com + body: "{\"rules\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/03f313c6-5601-42a4-a394-708341949bfc/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 025b861a-01de-4e9d-8b3d-0284dab0a30c + status: 200 OK + code: 200 + duration: 271.582785ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/03f313c6-5601-42a4-a394-708341949bfc + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6db6f0d7-8a5a-47d0-a414-7a9f5439075c + status: 204 No Content + code: 204 + duration: 213.162931ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/03f313c6-5601-42a4-a394-708341949bfc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 151 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_security_group\", \"resource_id\": \"03f313c6-5601-42a4-a394-708341949bfc\"}" + headers: + Content-Length: + - "151" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ce62c849-c081-4c8b-88ef-2978268ec79c + status: 404 Not Found + code: 404 + duration: 30.696861ms 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 8df06d143..63bf6d2e2 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 @@ -1,425 +1,341 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 197 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 587 - uncompressed: false - 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: - - "587" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ddb5540b-6708-4f84-a077-8c980819d368 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 06da8c00-78fe-47c4-a413-4be32368245d - status: 201 Created - code: 201 - duration: 183.887189ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ddb5540b-6708-4f84-a077-8c980819d368 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 587 - uncompressed: false - 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: - - "587" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 390fe22b-fd24-4924-9d1c-e88f0468d955 - status: 200 OK - code: 200 - duration: 92.22992ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 1120 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[{"id":null,"action":"accept","protocol":"TCP","direction":"inbound","ip_range":"0.0.0.0/0","dest_port_from":80,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"drop","protocol":"TCP","direction":"inbound","ip_range":"1.2.0.0/16","dest_port_from":443,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"accept","protocol":"TCP","direction":"outbound","ip_range":"1.2.3.0/32","dest_port_from":80,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"drop","protocol":"TCP","direction":"outbound","ip_range":"2002::/24","dest_port_from":443,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"drop","protocol":"TCP","direction":"outbound","ip_range":"2002:0:0:1234::/64","dest_port_from":443,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"drop","protocol":"TCP","direction":"outbound","ip_range":"2002::1234:abcd:ffff:c0a8:101/128","dest_port_from":443,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"}]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 3100 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 495f7c48-56b6-4f3a-ae9b-725383455617 - status: 200 OK - code: 200 - duration: 304.894626ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/ddb5540b-6708-4f84-a077-8c980819d368/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 3100 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f50cb135-8c15-4cfe-be6d-a0f75401c21f - status: 200 OK - code: 200 - duration: 107.827253ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ddb5540b-6708-4f84-a077-8c980819d368 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 587 - uncompressed: false - 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: - - "587" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 37ef374f-00cd-402d-89a0-d0ef7f81304e - status: 200 OK - code: 200 - duration: 114.485252ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/ddb5540b-6708-4f84-a077-8c980819d368/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 3100 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2fc15882-1daf-420d-bc70-04be330ada66 - status: 200 OK - code: 200 - duration: 87.900976ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/ddb5540b-6708-4f84-a077-8c980819d368/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 3100 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9f73a248-fa32-438f-be8b-12df5caaefbd - status: 200 OK - code: 200 - duration: 104.100185ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 12 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4bb6be8c-ef9e-4617-a96c-6855c1b1d779 - status: 200 OK - code: 200 - duration: 353.800241ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ddb5540b-6708-4f84-a077-8c980819d368 - 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:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 886c2cd9-6ffe-4c58-b1e5-d6a5a450d3bb - status: 204 No Content - code: 204 - duration: 168.82162ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/ddb5540b-6708-4f84-a077-8c980819d368 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 151 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aaa5e64f-a571-4b8f-b2ef-97a586c77dbd - status: 404 Not Found - code: 404 - duration: 40.458559ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 195 + host: api.scaleway.com + body: "{\"name\":\"tf-sg-quirky-bhabha\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"stateful\":true,\"inbound_default_policy\":\"accept\",\"outbound_default_policy\":\"accept\",\"enable_default_security\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 585 + body: "{\"security_group\": {\"id\": \"71fd47a2-ddb4-4c75-b66b-c59350584c15\", \"creation_date\": \"2025-10-30T15:42:46.760587+00:00\", \"modification_date\": \"2025-10-30T15:42:46.760587+00:00\", \"name\": \"tf-sg-quirky-bhabha\", \"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: + - "585" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/71fd47a2-ddb4-4c75-b66b-c59350584c15 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 022eaa24-ec0c-40e8-945d-e3b81316a356 + status: 201 Created + code: 201 + duration: 223.305126ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/71fd47a2-ddb4-4c75-b66b-c59350584c15 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 585 + body: "{\"security_group\": {\"id\": \"71fd47a2-ddb4-4c75-b66b-c59350584c15\", \"creation_date\": \"2025-10-30T15:42:46.760587+00:00\", \"modification_date\": \"2025-10-30T15:42:46.760587+00:00\", \"name\": \"tf-sg-quirky-bhabha\", \"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: + - "585" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7a4dcce9-9acd-4a3b-8ee5-2d05ddebf789 + status: 200 OK + code: 200 + duration: 104.731005ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1120 + host: api.scaleway.com + body: "{\"rules\":[{\"id\":null,\"action\":\"accept\",\"protocol\":\"TCP\",\"direction\":\"outbound\",\"ip_range\":\"1.2.3.0/32\",\"dest_port_from\":80,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"},{\"id\":null,\"action\":\"drop\",\"protocol\":\"TCP\",\"direction\":\"outbound\",\"ip_range\":\"2002::/24\",\"dest_port_from\":443,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"},{\"id\":null,\"action\":\"drop\",\"protocol\":\"TCP\",\"direction\":\"outbound\",\"ip_range\":\"2002:0:0:1234::/64\",\"dest_port_from\":443,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"},{\"id\":null,\"action\":\"drop\",\"protocol\":\"TCP\",\"direction\":\"outbound\",\"ip_range\":\"2002::1234:abcd:ffff:c0a8:101/128\",\"dest_port_from\":443,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"},{\"id\":null,\"action\":\"accept\",\"protocol\":\"TCP\",\"direction\":\"inbound\",\"ip_range\":\"0.0.0.0/0\",\"dest_port_from\":80,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"},{\"id\":null,\"action\":\"drop\",\"protocol\":\"TCP\",\"direction\":\"inbound\",\"ip_range\":\"1.2.0.0/16\",\"dest_port_from\":443,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"}]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/71fd47a2-ddb4-4c75-b66b-c59350584c15/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3100 + 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\": \"08f20f40-3d2e-4f7a-902a-6551f5159f5b\", \"protocol\": \"TCP\", \"direction\": \"outbound\", \"ip_range\": \"1.2.3.0\", \"dest_ip_range\": null, \"dest_port_from\": 80, \"dest_port_to\": null, \"position\": 1, \"editable\": true, \"action\": \"accept\", \"zone\": \"fr-par-1\"}, {\"id\": \"5b0178ed-39bb-41d7-a467-16f0da563b5d\", \"protocol\": \"TCP\", \"direction\": \"outbound\", \"ip_range\": \"2002::/24\", \"dest_ip_range\": null, \"dest_port_from\": 443, \"dest_port_to\": null, \"position\": 2, \"editable\": true, \"action\": \"drop\", \"zone\": \"fr-par-1\"}, {\"id\": \"2a719530-fa2f-461f-8a40-ddf446e6f423\", \"protocol\": \"TCP\", \"direction\": \"outbound\", \"ip_range\": \"2002:0:0:1234::/64\", \"dest_ip_range\": null, \"dest_port_from\": 443, \"dest_port_to\": null, \"position\": 3, \"editable\": true, \"action\": \"drop\", \"zone\": \"fr-par-1\"}, {\"id\": \"1169b573-1ba5-4e64-8d0a-3cee6a938401\", \"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\": 4, \"editable\": true, \"action\": \"drop\", \"zone\": \"fr-par-1\"}, {\"id\": \"9e26c79a-67cb-45cc-96c6-26f6fb34546b\", \"protocol\": \"TCP\", \"direction\": \"inbound\", \"ip_range\": \"0.0.0.0/0\", \"dest_ip_range\": null, \"dest_port_from\": 80, \"dest_port_to\": null, \"position\": 5, \"editable\": true, \"action\": \"accept\", \"zone\": \"fr-par-1\"}, {\"id\": \"370e869f-314d-4ce0-8b16-ffac9265f449\", \"protocol\": \"TCP\", \"direction\": \"inbound\", \"ip_range\": \"1.2.0.0/16\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f8f6a12f-061e-41f8-b954-a30fd86e41fd + status: 200 OK + code: 200 + duration: 292.771442ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/71fd47a2-ddb4-4c75-b66b-c59350584c15/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3100 + 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\": \"08f20f40-3d2e-4f7a-902a-6551f5159f5b\", \"protocol\": \"TCP\", \"direction\": \"outbound\", \"ip_range\": \"1.2.3.0\", \"dest_ip_range\": null, \"dest_port_from\": 80, \"dest_port_to\": null, \"position\": 1, \"editable\": true, \"action\": \"accept\", \"zone\": \"fr-par-1\"}, {\"id\": \"5b0178ed-39bb-41d7-a467-16f0da563b5d\", \"protocol\": \"TCP\", \"direction\": \"outbound\", \"ip_range\": \"2002::/24\", \"dest_ip_range\": null, \"dest_port_from\": 443, \"dest_port_to\": null, \"position\": 2, \"editable\": true, \"action\": \"drop\", \"zone\": \"fr-par-1\"}, {\"id\": \"2a719530-fa2f-461f-8a40-ddf446e6f423\", \"protocol\": \"TCP\", \"direction\": \"outbound\", \"ip_range\": \"2002:0:0:1234::/64\", \"dest_ip_range\": null, \"dest_port_from\": 443, \"dest_port_to\": null, \"position\": 3, \"editable\": true, \"action\": \"drop\", \"zone\": \"fr-par-1\"}, {\"id\": \"1169b573-1ba5-4e64-8d0a-3cee6a938401\", \"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\": 4, \"editable\": true, \"action\": \"drop\", \"zone\": \"fr-par-1\"}, {\"id\": \"9e26c79a-67cb-45cc-96c6-26f6fb34546b\", \"protocol\": \"TCP\", \"direction\": \"inbound\", \"ip_range\": \"0.0.0.0/0\", \"dest_ip_range\": null, \"dest_port_from\": 80, \"dest_port_to\": null, \"position\": 5, \"editable\": true, \"action\": \"accept\", \"zone\": \"fr-par-1\"}, {\"id\": \"370e869f-314d-4ce0-8b16-ffac9265f449\", \"protocol\": \"TCP\", \"direction\": \"inbound\", \"ip_range\": \"1.2.0.0/16\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9d61ceb9-f217-41d3-8fa3-d3af7da0c0ab + status: 200 OK + code: 200 + duration: 111.527053ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/71fd47a2-ddb4-4c75-b66b-c59350584c15 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 585 + body: "{\"security_group\": {\"id\": \"71fd47a2-ddb4-4c75-b66b-c59350584c15\", \"creation_date\": \"2025-10-30T15:42:46.760587+00:00\", \"modification_date\": \"2025-10-30T15:42:47.200103+00:00\", \"name\": \"tf-sg-quirky-bhabha\", \"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: + - "585" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a630abf1-7d03-4a42-a17e-0de5a5603929 + status: 200 OK + code: 200 + duration: 102.497175ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/71fd47a2-ddb4-4c75-b66b-c59350584c15/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3100 + 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\": \"08f20f40-3d2e-4f7a-902a-6551f5159f5b\", \"protocol\": \"TCP\", \"direction\": \"outbound\", \"ip_range\": \"1.2.3.0\", \"dest_ip_range\": null, \"dest_port_from\": 80, \"dest_port_to\": null, \"position\": 1, \"editable\": true, \"action\": \"accept\", \"zone\": \"fr-par-1\"}, {\"id\": \"5b0178ed-39bb-41d7-a467-16f0da563b5d\", \"protocol\": \"TCP\", \"direction\": \"outbound\", \"ip_range\": \"2002::/24\", \"dest_ip_range\": null, \"dest_port_from\": 443, \"dest_port_to\": null, \"position\": 2, \"editable\": true, \"action\": \"drop\", \"zone\": \"fr-par-1\"}, {\"id\": \"2a719530-fa2f-461f-8a40-ddf446e6f423\", \"protocol\": \"TCP\", \"direction\": \"outbound\", \"ip_range\": \"2002:0:0:1234::/64\", \"dest_ip_range\": null, \"dest_port_from\": 443, \"dest_port_to\": null, \"position\": 3, \"editable\": true, \"action\": \"drop\", \"zone\": \"fr-par-1\"}, {\"id\": \"1169b573-1ba5-4e64-8d0a-3cee6a938401\", \"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\": 4, \"editable\": true, \"action\": \"drop\", \"zone\": \"fr-par-1\"}, {\"id\": \"9e26c79a-67cb-45cc-96c6-26f6fb34546b\", \"protocol\": \"TCP\", \"direction\": \"inbound\", \"ip_range\": \"0.0.0.0/0\", \"dest_ip_range\": null, \"dest_port_from\": 80, \"dest_port_to\": null, \"position\": 5, \"editable\": true, \"action\": \"accept\", \"zone\": \"fr-par-1\"}, {\"id\": \"370e869f-314d-4ce0-8b16-ffac9265f449\", \"protocol\": \"TCP\", \"direction\": \"inbound\", \"ip_range\": \"1.2.0.0/16\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0b2e7cfe-b9cb-42d5-bc5b-740f1f3069aa + status: 200 OK + code: 200 + duration: 109.997023ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/71fd47a2-ddb4-4c75-b66b-c59350584c15/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3100 + 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\": \"08f20f40-3d2e-4f7a-902a-6551f5159f5b\", \"protocol\": \"TCP\", \"direction\": \"outbound\", \"ip_range\": \"1.2.3.0\", \"dest_ip_range\": null, \"dest_port_from\": 80, \"dest_port_to\": null, \"position\": 1, \"editable\": true, \"action\": \"accept\", \"zone\": \"fr-par-1\"}, {\"id\": \"5b0178ed-39bb-41d7-a467-16f0da563b5d\", \"protocol\": \"TCP\", \"direction\": \"outbound\", \"ip_range\": \"2002::/24\", \"dest_ip_range\": null, \"dest_port_from\": 443, \"dest_port_to\": null, \"position\": 2, \"editable\": true, \"action\": \"drop\", \"zone\": \"fr-par-1\"}, {\"id\": \"2a719530-fa2f-461f-8a40-ddf446e6f423\", \"protocol\": \"TCP\", \"direction\": \"outbound\", \"ip_range\": \"2002:0:0:1234::/64\", \"dest_ip_range\": null, \"dest_port_from\": 443, \"dest_port_to\": null, \"position\": 3, \"editable\": true, \"action\": \"drop\", \"zone\": \"fr-par-1\"}, {\"id\": \"1169b573-1ba5-4e64-8d0a-3cee6a938401\", \"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\": 4, \"editable\": true, \"action\": \"drop\", \"zone\": \"fr-par-1\"}, {\"id\": \"9e26c79a-67cb-45cc-96c6-26f6fb34546b\", \"protocol\": \"TCP\", \"direction\": \"inbound\", \"ip_range\": \"0.0.0.0/0\", \"dest_ip_range\": null, \"dest_port_from\": 80, \"dest_port_to\": null, \"position\": 5, \"editable\": true, \"action\": \"accept\", \"zone\": \"fr-par-1\"}, {\"id\": \"370e869f-314d-4ce0-8b16-ffac9265f449\", \"protocol\": \"TCP\", \"direction\": \"inbound\", \"ip_range\": \"1.2.0.0/16\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d983fc6e-2b7f-4dec-9caf-6956aaef6ba0 + status: 200 OK + code: 200 + duration: 110.601978ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 12 + host: api.scaleway.com + body: "{\"rules\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/71fd47a2-ddb4-4c75-b66b-c59350584c15/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9a3200d9-ff49-4966-9ac7-c6d4f372d201 + status: 200 OK + code: 200 + duration: 459.425343ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/71fd47a2-ddb4-4c75-b66b-c59350584c15 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 04adba36-6456-4c10-8bc2-20c58f356bcf + status: 204 No Content + code: 204 + duration: 161.704967ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/71fd47a2-ddb4-4c75-b66b-c59350584c15 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 151 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_security_group\", \"resource_id\": \"71fd47a2-ddb4-4c75-b66b-c59350584c15\"}" + headers: + Content-Length: + - "151" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 827a6946-97ac-4bab-a232-889b32300012 + status: 404 Not Found + code: 404 + duration: 28.398511ms diff --git a/internal/services/instance/testdata/security-group-tags.cassette.yaml b/internal/services/instance/testdata/security-group-tags.cassette.yaml index b8c7b034b..d36f26154 100644 --- a/internal/services/instance/testdata/security-group-tags.cassette.yaml +++ b/internal/services/instance/testdata/security-group-tags.cassette.yaml @@ -1,1058 +1,848 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 220 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 601 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 808b05b9-5606-4e18-9720-570d8edfbfbe - status: 201 Created - code: 201 - duration: 175.093313ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 138 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"enable_default_security":true,"inbound_default_policy":"accept","tags":["foo","bar"],"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/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 601 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - caf33073-b09a-4df2-b9eb-1998edc44167 - status: 200 OK - code: 200 - duration: 216.901365ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 12 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 58efb3f5-71d4-4eca-9a27-cf62bb8ad3d5 - status: 200 OK - code: 200 - duration: 168.251189ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 601 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e1444248-d1c9-471e-b2ea-020c45f6bf31 - status: 200 OK - code: 200 - duration: 103.059727ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - af91419c-7468-4761-8c46-d8caedae01d4 - status: 200 OK - code: 200 - duration: 83.222175ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 601 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c819c11d-ab4b-4321-81c6-2ff2988edc27 - status: 200 OK - code: 200 - duration: 104.77289ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4b223bc2-2d84-4535-888d-996d7e3ac18f - status: 200 OK - code: 200 - duration: 83.285084ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 601 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 43b130c7-bbab-4820-8603-207d156eaf83 - status: 200 OK - code: 200 - duration: 242.659055ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1b4c0fe3-4c8f-457f-88e0-a6a7afa8ce6b - status: 200 OK - code: 200 - duration: 95.980951ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 141 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 600 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 155e6004-4d5c-4403-bf1a-5993a0f93b6e - status: 200 OK - code: 200 - duration: 242.738484ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 12 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7af0cede-f4a4-4ad3-925a-baaf13d9fe89 - status: 200 OK - code: 200 - duration: 150.23831ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 600 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 18b8285d-3274-428a-80ef-290cee4c7e37 - status: 200 OK - code: 200 - duration: 109.487376ms - - 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: - 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/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 693dfba6-4d54-41dd-8be0-39d8c568731e - status: 200 OK - code: 200 - duration: 93.378355ms - - 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/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 602 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 61df0e3c-d982-4094-a80a-ff3e0e7d345e - status: 200 OK - code: 200 - duration: 97.40256ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 33f42b80-6c53-4165-912d-b790f5654d77 - status: 200 OK - code: 200 - duration: 100.984117ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 602 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 86435471-d293-4851-93a3-28ef968cbaf9 - status: 200 OK - code: 200 - duration: 102.749998ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a81a93e2-dcc6-4529-93f2-5d84fda29a87 - status: 200 OK - code: 200 - duration: 102.24796ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 129 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 587 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b0db046c-fa5c-40ea-b1e9-71770028ae41 - status: 200 OK - code: 200 - duration: 246.653315ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 12 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e0998b74-9df0-46a4-ab7b-85efaa1eae58 - status: 200 OK - code: 200 - duration: 154.595007ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 589 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 87fa96a7-cb61-47b5-b848-8e4ffb687982 - status: 200 OK - code: 200 - duration: 92.754169ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b89a9f6d-2ada-4fc0-96f3-c1c164b74b99 - status: 200 OK - code: 200 - duration: 88.489475ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 589 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 58304f11-a435-4bd8-8926-0a9355d94f81 - status: 200 OK - code: 200 - duration: 80.816408ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1536 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 894c2339-6b82-4b39-a0ac-886dfee18ff0 - status: 200 OK - code: 200 - duration: 85.18169ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb - 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:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3c80a6f7-3fc8-4cd0-a5e4-b8bd671c40b8 - status: 204 No Content - code: 204 - duration: 160.312948ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/033a26ec-0b2c-4e5d-aaa7-c8cb908f9fcb - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 151 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bda40915-fe59-425c-be7a-77901bc9ee50 - status: 404 Not Found - code: 404 - duration: 28.465705ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 215 + host: api.scaleway.com + body: "{\"name\":\"tf-sg-kind-solomon\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[\"foo\",\"bar\"],\"stateful\":true,\"inbound_default_policy\":\"accept\",\"outbound_default_policy\":\"accept\",\"enable_default_security\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 596 + body: "{\"security_group\": {\"id\": \"a565608f-5817-4abe-ba76-548c54b09356\", \"creation_date\": \"2025-10-30T15:41:46.864225+00:00\", \"modification_date\": \"2025-10-30T15:41:46.864225+00:00\", \"name\": \"tf-sg-kind-solomon\", \"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: + - "596" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a565608f-5817-4abe-ba76-548c54b09356 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2efef141-ae44-401b-b887-73939edd54ef + status: 201 Created + code: 201 + duration: 204.531715ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 138 + host: api.scaleway.com + body: "{\"enable_default_security\":true,\"inbound_default_policy\":\"accept\",\"tags\":[\"foo\",\"bar\"],\"outbound_default_policy\":\"accept\",\"stateful\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a565608f-5817-4abe-ba76-548c54b09356 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 596 + body: "{\"security_group\": {\"id\": \"a565608f-5817-4abe-ba76-548c54b09356\", \"creation_date\": \"2025-10-30T15:41:46.864225+00:00\", \"modification_date\": \"2025-10-30T15:41:46.864225+00:00\", \"name\": \"tf-sg-kind-solomon\", \"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: + - "596" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a254725a-781b-4987-bb3f-748d9cd6a638 + status: 200 OK + code: 200 + duration: 151.266447ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 12 + host: api.scaleway.com + body: "{\"rules\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a565608f-5817-4abe-ba76-548c54b09356/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f281a3ac-ed27-414a-b10b-5d581a1e6fe6 + status: 200 OK + code: 200 + duration: 197.989634ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a565608f-5817-4abe-ba76-548c54b09356 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 596 + body: "{\"security_group\": {\"id\": \"a565608f-5817-4abe-ba76-548c54b09356\", \"creation_date\": \"2025-10-30T15:41:46.864225+00:00\", \"modification_date\": \"2025-10-30T15:41:46.864225+00:00\", \"name\": \"tf-sg-kind-solomon\", \"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: + - "596" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 505e57f5-5e9d-4a8e-9a11-ff82c480aa56 + status: 200 OK + code: 200 + duration: 103.391178ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a565608f-5817-4abe-ba76-548c54b09356/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0892037d-1327-4eeb-8018-eb60f9b21c4c + status: 200 OK + code: 200 + duration: 104.018936ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a565608f-5817-4abe-ba76-548c54b09356 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 596 + body: "{\"security_group\": {\"id\": \"a565608f-5817-4abe-ba76-548c54b09356\", \"creation_date\": \"2025-10-30T15:41:46.864225+00:00\", \"modification_date\": \"2025-10-30T15:41:46.864225+00:00\", \"name\": \"tf-sg-kind-solomon\", \"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: + - "596" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 42afb7f0-50e1-4229-94a4-fa8ab151af59 + status: 200 OK + code: 200 + duration: 115.508096ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a565608f-5817-4abe-ba76-548c54b09356/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 546683dd-acee-48ed-bb84-d52e3efac79e + status: 200 OK + code: 200 + duration: 102.288831ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a565608f-5817-4abe-ba76-548c54b09356 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 596 + body: "{\"security_group\": {\"id\": \"a565608f-5817-4abe-ba76-548c54b09356\", \"creation_date\": \"2025-10-30T15:41:46.864225+00:00\", \"modification_date\": \"2025-10-30T15:41:46.864225+00:00\", \"name\": \"tf-sg-kind-solomon\", \"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: + - "596" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 68e473cd-a879-4d78-9e05-4bc08c1e02cb + status: 200 OK + code: 200 + duration: 101.695668ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a565608f-5817-4abe-ba76-548c54b09356/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ae48e6f5-246e-45ea-acf0-4c0fa171ec76 + status: 200 OK + code: 200 + duration: 131.156437ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 136 + host: api.scaleway.com + body: "{\"name\":\"tf-sg-kind-solomon\",\"inbound_default_policy\":\"accept\",\"tags\":[\"foo\",\"buzz\"],\"outbound_default_policy\":\"accept\",\"stateful\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a565608f-5817-4abe-ba76-548c54b09356 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 595 + body: "{\"security_group\": {\"id\": \"a565608f-5817-4abe-ba76-548c54b09356\", \"creation_date\": \"2025-10-30T15:41:46.864225+00:00\", \"modification_date\": \"2025-10-30T15:41:48.528443+00:00\", \"name\": \"tf-sg-kind-solomon\", \"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: + - "595" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b1778f24-89c3-4409-aabd-def7e0201252 + status: 200 OK + code: 200 + duration: 465.502694ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 12 + host: api.scaleway.com + body: "{\"rules\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a565608f-5817-4abe-ba76-548c54b09356/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4f2cd7ac-dff1-45c3-b4a5-fbeab4cb389f + status: 200 OK + code: 200 + duration: 158.37952ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a565608f-5817-4abe-ba76-548c54b09356 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 597 + body: "{\"security_group\": {\"id\": \"a565608f-5817-4abe-ba76-548c54b09356\", \"creation_date\": \"2025-10-30T15:41:46.864225+00:00\", \"modification_date\": \"2025-10-30T15:41:48.985188+00:00\", \"name\": \"tf-sg-kind-solomon\", \"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: + - "597" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f77e836c-2b7b-4dbe-9523-26993965960b + status: 200 OK + code: 200 + duration: 95.384721ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a565608f-5817-4abe-ba76-548c54b09356/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 04b6af5d-0ec1-4936-99ff-159a8a2f3e9f + status: 200 OK + code: 200 + duration: 94.881547ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a565608f-5817-4abe-ba76-548c54b09356 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 597 + body: "{\"security_group\": {\"id\": \"a565608f-5817-4abe-ba76-548c54b09356\", \"creation_date\": \"2025-10-30T15:41:46.864225+00:00\", \"modification_date\": \"2025-10-30T15:41:48.985188+00:00\", \"name\": \"tf-sg-kind-solomon\", \"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: + - "597" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8cded8e8-0530-4fe3-a24e-3451ff6bed0d + status: 200 OK + code: 200 + duration: 87.139916ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a565608f-5817-4abe-ba76-548c54b09356/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - af301c57-cd26-4fdc-9219-e05fba50e354 + status: 200 OK + code: 200 + duration: 113.251664ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a565608f-5817-4abe-ba76-548c54b09356 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 597 + body: "{\"security_group\": {\"id\": \"a565608f-5817-4abe-ba76-548c54b09356\", \"creation_date\": \"2025-10-30T15:41:46.864225+00:00\", \"modification_date\": \"2025-10-30T15:41:48.985188+00:00\", \"name\": \"tf-sg-kind-solomon\", \"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: + - "597" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ddd259e6-d108-476b-a173-e77c316fd07e + status: 200 OK + code: 200 + duration: 87.825022ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a565608f-5817-4abe-ba76-548c54b09356/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c97a95dd-c694-4d84-a759-c7804c342e01 + status: 200 OK + code: 200 + duration: 104.730191ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 124 + host: api.scaleway.com + body: "{\"name\":\"tf-sg-kind-solomon\",\"inbound_default_policy\":\"accept\",\"tags\":[],\"outbound_default_policy\":\"accept\",\"stateful\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a565608f-5817-4abe-ba76-548c54b09356 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 582 + body: "{\"security_group\": {\"id\": \"a565608f-5817-4abe-ba76-548c54b09356\", \"creation_date\": \"2025-10-30T15:41:46.864225+00:00\", \"modification_date\": \"2025-10-30T15:41:50.272299+00:00\", \"name\": \"tf-sg-kind-solomon\", \"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: + - "582" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9484f58a-35bc-4f94-80af-9486a7c83a12 + status: 200 OK + code: 200 + duration: 243.311345ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 12 + host: api.scaleway.com + body: "{\"rules\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a565608f-5817-4abe-ba76-548c54b09356/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bb9936ef-bfa5-4922-a180-47051da4e501 + status: 200 OK + code: 200 + duration: 137.169136ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a565608f-5817-4abe-ba76-548c54b09356 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 584 + body: "{\"security_group\": {\"id\": \"a565608f-5817-4abe-ba76-548c54b09356\", \"creation_date\": \"2025-10-30T15:41:46.864225+00:00\", \"modification_date\": \"2025-10-30T15:41:50.497196+00:00\", \"name\": \"tf-sg-kind-solomon\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6c0cfda5-b0e8-47d6-818d-2ff97eacc430 + status: 200 OK + code: 200 + duration: 103.925802ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a565608f-5817-4abe-ba76-548c54b09356/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c2537dee-d126-4698-b3eb-b70555f88995 + status: 200 OK + code: 200 + duration: 96.223575ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a565608f-5817-4abe-ba76-548c54b09356 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 584 + body: "{\"security_group\": {\"id\": \"a565608f-5817-4abe-ba76-548c54b09356\", \"creation_date\": \"2025-10-30T15:41:46.864225+00:00\", \"modification_date\": \"2025-10-30T15:41:50.497196+00:00\", \"name\": \"tf-sg-kind-solomon\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ed448cea-89af-494a-99d4-63e5e9062124 + status: 200 OK + code: 200 + duration: 94.532794ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/a565608f-5817-4abe-ba76-548c54b09356/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1536 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9f9f5aa9-7b81-4f17-a537-31afbf1f7d21 + status: 200 OK + code: 200 + duration: 88.80535ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a565608f-5817-4abe-ba76-548c54b09356 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4d2dcb16-6d4a-4d44-adea-e4f520f3e1bf + status: 204 No Content + code: 204 + duration: 152.342557ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/a565608f-5817-4abe-ba76-548c54b09356 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 151 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_security_group\", \"resource_id\": \"a565608f-5817-4abe-ba76-548c54b09356\"}" + headers: + Content-Length: + - "151" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 688683f0-baa7-4ab7-81e1-84867f34c030 + status: 404 Not Found + code: 404 + duration: 41.57402ms 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 590ce57cb..3fc929443 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 @@ -1,425 +1,341 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 225 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 605 - uncompressed: false - 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: - - "605" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/63f12fca-4896-4280-97bd-04962a6949e3 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 96914e35-584b-402f-b173-72c97712af53 - status: 201 Created - code: 201 - duration: 215.46012ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 143 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"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/63f12fca-4896-4280-97bd-04962a6949e3 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 605 - uncompressed: false - 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: - - "605" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 72e0e26e-143b-4b97-ba79-94cf4ab3c89c - status: 200 OK - code: 200 - duration: 170.547053ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 192 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[{"id":null,"action":"accept","protocol":"TCP","direction":"inbound","ip_range":"0.0.0.0/0","dest_port_from":null,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"}]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1794 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9d38e44e-7d8a-4617-8d43-72034ddae5f7 - status: 200 OK - code: 200 - duration: 255.184796ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/63f12fca-4896-4280-97bd-04962a6949e3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 603 - uncompressed: false - 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: - - "603" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6ac6b3e8-544d-479d-8310-1dd8af056725 - status: 200 OK - code: 200 - duration: 102.53102ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/63f12fca-4896-4280-97bd-04962a6949e3/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1794 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c1ece94d-625a-408d-b928-fc73e8974113 - status: 200 OK - code: 200 - duration: 95.154707ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/63f12fca-4896-4280-97bd-04962a6949e3/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1794 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2139a3ec-c103-4412-ba8a-a2f522c86682 - status: 200 OK - code: 200 - duration: 101.930026ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/63f12fca-4896-4280-97bd-04962a6949e3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 605 - uncompressed: false - 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: - - "605" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c0dc1449-cc9e-4279-9389-f3a534c665b3 - status: 200 OK - code: 200 - duration: 87.049202ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/63f12fca-4896-4280-97bd-04962a6949e3/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1794 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c3c93882-e2b0-459a-8067-b392acd872af - status: 200 OK - code: 200 - duration: 92.504061ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/63f12fca-4896-4280-97bd-04962a6949e3 - 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:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fd4fbbcb-2605-4206-838e-6a701144bf1d - status: 204 No Content - code: 204 - duration: 161.425209ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/63f12fca-4896-4280-97bd-04962a6949e3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 151 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b55d1459-b42e-4d2c-b218-29daa8973213 - status: 404 Not Found - code: 404 - duration: 33.35702ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 220 + host: api.scaleway.com + body: "{\"name\":\"tf-sg-bold-galileo\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[\"test-terraform\"],\"stateful\":true,\"inbound_default_policy\":\"accept\",\"outbound_default_policy\":\"accept\",\"enable_default_security\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 600 + body: "{\"security_group\": {\"id\": \"6dc3b2d2-e9c4-4540-b1a2-1fea4fa4a427\", \"creation_date\": \"2025-10-30T15:42:31.085022+00:00\", \"modification_date\": \"2025-10-30T15:42:31.085022+00:00\", \"name\": \"tf-sg-bold-galileo\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:31 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/6dc3b2d2-e9c4-4540-b1a2-1fea4fa4a427 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e61b3ae1-0c86-43c0-bdd6-47cb2fdbaf92 + status: 201 Created + code: 201 + duration: 196.947278ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 143 + host: api.scaleway.com + body: "{\"enable_default_security\":true,\"inbound_default_policy\":\"accept\",\"tags\":[\"test-terraform\"],\"outbound_default_policy\":\"accept\",\"stateful\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/6dc3b2d2-e9c4-4540-b1a2-1fea4fa4a427 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 600 + body: "{\"security_group\": {\"id\": \"6dc3b2d2-e9c4-4540-b1a2-1fea4fa4a427\", \"creation_date\": \"2025-10-30T15:42:31.085022+00:00\", \"modification_date\": \"2025-10-30T15:42:31.085022+00:00\", \"name\": \"tf-sg-bold-galileo\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 401171da-139f-40b6-8565-6f283d3b111b + status: 200 OK + code: 200 + duration: 208.957346ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 192 + host: api.scaleway.com + body: "{\"rules\":[{\"id\":null,\"action\":\"accept\",\"protocol\":\"TCP\",\"direction\":\"inbound\",\"ip_range\":\"0.0.0.0/0\",\"dest_port_from\":null,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"}]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/6dc3b2d2-e9c4-4540-b1a2-1fea4fa4a427/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1794 + 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\": \"52623d16-b0de-4a36-a044-890bbb148778\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ac7c44c6-04dc-436b-91c1-452cdea1bf12 + status: 200 OK + code: 200 + duration: 309.139665ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/6dc3b2d2-e9c4-4540-b1a2-1fea4fa4a427 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 598 + body: "{\"security_group\": {\"id\": \"6dc3b2d2-e9c4-4540-b1a2-1fea4fa4a427\", \"creation_date\": \"2025-10-30T15:42:31.085022+00:00\", \"modification_date\": \"2025-10-30T15:42:31.377108+00:00\", \"name\": \"tf-sg-bold-galileo\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f471d2cc-9a20-4caa-9cd1-551e95a858f3 + status: 200 OK + code: 200 + duration: 98.197857ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/6dc3b2d2-e9c4-4540-b1a2-1fea4fa4a427/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1794 + 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\": \"52623d16-b0de-4a36-a044-890bbb148778\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9ae773bc-dc0f-42e2-8bb1-e8227e43bc5a + status: 200 OK + code: 200 + duration: 95.419134ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/6dc3b2d2-e9c4-4540-b1a2-1fea4fa4a427/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1794 + 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\": \"52623d16-b0de-4a36-a044-890bbb148778\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 64a64a9c-c489-4475-9e63-fbcdc8e997f4 + status: 200 OK + code: 200 + duration: 114.899105ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/6dc3b2d2-e9c4-4540-b1a2-1fea4fa4a427 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 600 + body: "{\"security_group\": {\"id\": \"6dc3b2d2-e9c4-4540-b1a2-1fea4fa4a427\", \"creation_date\": \"2025-10-30T15:42:31.085022+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660058+00:00\", \"name\": \"tf-sg-bold-galileo\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8d2db609-8ea5-438c-a1e3-5cdfdd5c9baa + status: 200 OK + code: 200 + duration: 106.048974ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/6dc3b2d2-e9c4-4540-b1a2-1fea4fa4a427/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1794 + 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\": \"52623d16-b0de-4a36-a044-890bbb148778\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dbbf5399-f726-4037-a5a7-d15de72e58b5 + status: 200 OK + code: 200 + duration: 96.326637ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/6dc3b2d2-e9c4-4540-b1a2-1fea4fa4a427 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e1cd6dba-c89d-4681-9e0d-37d3fe244cfe + status: 204 No Content + code: 204 + duration: 149.647575ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/6dc3b2d2-e9c4-4540-b1a2-1fea4fa4a427 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 151 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_security_group\", \"resource_id\": \"6dc3b2d2-e9c4-4540-b1a2-1fea4fa4a427\"}" + headers: + Content-Length: + - "151" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 33271318-6cf2-41c1-80f3-6468d7849edb + status: 404 Not Found + code: 404 + duration: 26.85313ms 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 d8267538b..4b3e3c7d0 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 @@ -1,1058 +1,848 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 220 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 600 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 113705d1-3807-41dc-b4f5-4cf693207404 - status: 201 Created - code: 201 - duration: 194.028757ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 143 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"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/106fe6d4-24e7-4bcd-8219-884a4b919152 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 600 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5b843050-03f0-4c82-9ce1-fd2f4b2d102a - status: 200 OK - code: 200 - duration: 150.08896ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 190 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[{"id":null,"action":"accept","protocol":"TCP","direction":"inbound","ip_range":"8.8.8.8/32","dest_port_from":1,"dest_port_to":1024,"position":0,"editable":null,"zone":"fr-par-1"}]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1789 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8c7f7918-dca0-4b3c-96d5-95f9ce332a1f - status: 200 OK - code: 200 - duration: 249.66322ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 600 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 326c9a47-4f16-4b29-bc01-b819d5adeeae - status: 200 OK - code: 200 - duration: 94.338951ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/106fe6d4-24e7-4bcd-8219-884a4b919152/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1789 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4e0f2604-5339-41e3-bcc7-e41619354308 - status: 200 OK - code: 200 - duration: 91.883941ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 600 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d5c24941-490a-45e9-a4be-c50ea576b3c8 - status: 200 OK - code: 200 - duration: 114.986598ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/106fe6d4-24e7-4bcd-8219-884a4b919152/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1789 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8ef52cea-25cf-414a-bd3a-757f0614149a - status: 200 OK - code: 200 - duration: 511.793242ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 600 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cecead61-c8d2-4bab-9f9a-fc599e400642 - status: 200 OK - code: 200 - duration: 250.455493ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/106fe6d4-24e7-4bcd-8219-884a4b919152/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1789 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 28c5dfbd-2872-420a-9bfe-fc382006fcd6 - status: 200 OK - code: 200 - duration: 145.289718ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 140 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/106fe6d4-24e7-4bcd-8219-884a4b919152 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 600 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8a38963e-a70d-47d4-b497-b1e533afb935 - status: 200 OK - code: 200 - duration: 162.903912ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 191 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[{"id":null,"action":"accept","protocol":"TCP","direction":"inbound","ip_range":"8.8.8.8/32","dest_port_from":22,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"}]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1790 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0826b19c-d7d4-43f3-b90b-cbd91a41e4e9 - status: 200 OK - code: 200 - duration: 285.114648ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 598 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 32d69a3f-34bc-4591-b967-69f3001bea1c - status: 200 OK - code: 200 - duration: 98.170836ms - - 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: - 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/106fe6d4-24e7-4bcd-8219-884a4b919152/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1790 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 027bfaf8-95b0-49aa-91c6-5f3c660f990e - status: 200 OK - code: 200 - duration: 86.87154ms - - 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/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 600 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4a40da30-06ab-4938-9827-1f8c69ace1fe - status: 200 OK - code: 200 - duration: 97.640776ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/106fe6d4-24e7-4bcd-8219-884a4b919152/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1790 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 21ccb371-64a9-494a-bf95-3c2d77ff3eea - status: 200 OK - code: 200 - duration: 1.153892835s - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 600 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 185393ce-72e7-4237-9b45-44e6b8cd3506 - status: 200 OK - code: 200 - duration: 97.623103ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/106fe6d4-24e7-4bcd-8219-884a4b919152/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1790 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dcc59752-60f4-447c-93a8-d0c2286bc9b4 - status: 200 OK - code: 200 - duration: 99.930608ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 140 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/106fe6d4-24e7-4bcd-8219-884a4b919152 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 600 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f1fa2a1d-0213-4bf2-bc07-aee3fa3308af - status: 200 OK - code: 200 - duration: 154.721595ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 190 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"rules":[{"id":null,"action":"accept","protocol":"TCP","direction":"inbound","ip_range":"8.8.8.8/32","dest_port_from":1,"dest_port_to":1024,"position":0,"editable":null,"zone":"fr-par-1"}]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1789 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3f6f0b58-498d-4f3d-b1e5-9ac4e7a0db30 - status: 200 OK - code: 200 - duration: 263.346117ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 600 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f6460b0f-f50d-4807-bc39-76a42ad99863 - status: 200 OK - code: 200 - duration: 115.557146ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/106fe6d4-24e7-4bcd-8219-884a4b919152/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1789 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5fb19908-7075-4a17-8fd6-9518e4c5c315 - status: 200 OK - code: 200 - duration: 105.749738ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 600 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5c4c0f04-d689-48ad-a4f8-57e43d4dfbf2 - status: 200 OK - code: 200 - duration: 89.649424ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/106fe6d4-24e7-4bcd-8219-884a4b919152/rules?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1789 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8b0786e3-6788-4e9f-8212-a5d1e460def0 - status: 200 OK - code: 200 - duration: 83.393297ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 - 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:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 11025d8d-116c-4686-ab7c-ea4aa97847e7 - status: 204 No Content - code: 204 - duration: 169.433623ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/106fe6d4-24e7-4bcd-8219-884a4b919152 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 151 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ab8d7edd-203e-4ee8-ab6a-cf3094ca9bb0 - status: 404 Not Found - code: 404 - duration: 29.363934ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 219 + host: api.scaleway.com + body: "{\"name\":\"tf-sg-silly-raman\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[\"test-terraform\"],\"stateful\":true,\"inbound_default_policy\":\"accept\",\"outbound_default_policy\":\"accept\",\"enable_default_security\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 599 + body: "{\"security_group\": {\"id\": \"d3c674bf-cd99-444d-a97e-dfd82a5593a0\", \"creation_date\": \"2025-10-30T15:41:46.908119+00:00\", \"modification_date\": \"2025-10-30T15:41:46.908119+00:00\", \"name\": \"tf-sg-silly-raman\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d3c674bf-cd99-444d-a97e-dfd82a5593a0 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 826c1bdb-ce99-4bae-9f4b-40c8cb3a65d3 + status: 201 Created + code: 201 + duration: 213.853109ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 143 + host: api.scaleway.com + body: "{\"enable_default_security\":true,\"inbound_default_policy\":\"accept\",\"tags\":[\"test-terraform\"],\"outbound_default_policy\":\"accept\",\"stateful\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d3c674bf-cd99-444d-a97e-dfd82a5593a0 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 599 + body: "{\"security_group\": {\"id\": \"d3c674bf-cd99-444d-a97e-dfd82a5593a0\", \"creation_date\": \"2025-10-30T15:41:46.908119+00:00\", \"modification_date\": \"2025-10-30T15:41:46.908119+00:00\", \"name\": \"tf-sg-silly-raman\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b49dd900-2459-4750-a2dc-4b7e8a6b3e7d + status: 200 OK + code: 200 + duration: 152.524256ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 190 + host: api.scaleway.com + body: "{\"rules\":[{\"id\":null,\"action\":\"accept\",\"protocol\":\"TCP\",\"direction\":\"inbound\",\"ip_range\":\"8.8.8.8/32\",\"dest_port_from\":1,\"dest_port_to\":1024,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"}]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d3c674bf-cd99-444d-a97e-dfd82a5593a0/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1789 + 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\": \"e096ba0a-89fe-4ccd-8edc-4e283fd620dc\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1e26c31b-be46-4eb0-8a75-2906943b4535 + status: 200 OK + code: 200 + duration: 490.18545ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d3c674bf-cd99-444d-a97e-dfd82a5593a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 597 + body: "{\"security_group\": {\"id\": \"d3c674bf-cd99-444d-a97e-dfd82a5593a0\", \"creation_date\": \"2025-10-30T15:41:46.908119+00:00\", \"modification_date\": \"2025-10-30T15:41:47.127727+00:00\", \"name\": \"tf-sg-silly-raman\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 738b1966-1458-465b-8e03-30ed87608876 + status: 200 OK + code: 200 + duration: 117.337618ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/d3c674bf-cd99-444d-a97e-dfd82a5593a0/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1789 + 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\": \"e096ba0a-89fe-4ccd-8edc-4e283fd620dc\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 99b8ffcc-1455-47fb-adc7-79b528f59cc2 + status: 200 OK + code: 200 + duration: 90.321243ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d3c674bf-cd99-444d-a97e-dfd82a5593a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 599 + body: "{\"security_group\": {\"id\": \"d3c674bf-cd99-444d-a97e-dfd82a5593a0\", \"creation_date\": \"2025-10-30T15:41:46.908119+00:00\", \"modification_date\": \"2025-10-30T15:41:47.601594+00:00\", \"name\": \"tf-sg-silly-raman\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 78a0deb7-436f-47de-b90f-c42c61c314cd + status: 200 OK + code: 200 + duration: 131.782481ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/d3c674bf-cd99-444d-a97e-dfd82a5593a0/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1789 + 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\": \"e096ba0a-89fe-4ccd-8edc-4e283fd620dc\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 45762dc6-6183-48df-880a-85a711b4f44d + status: 200 OK + code: 200 + duration: 115.539926ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d3c674bf-cd99-444d-a97e-dfd82a5593a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 599 + body: "{\"security_group\": {\"id\": \"d3c674bf-cd99-444d-a97e-dfd82a5593a0\", \"creation_date\": \"2025-10-30T15:41:46.908119+00:00\", \"modification_date\": \"2025-10-30T15:41:47.601594+00:00\", \"name\": \"tf-sg-silly-raman\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 398af7fb-c1a6-4be7-9e7a-5eb4a086511a + status: 200 OK + code: 200 + duration: 115.003649ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/d3c674bf-cd99-444d-a97e-dfd82a5593a0/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1789 + 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\": \"e096ba0a-89fe-4ccd-8edc-4e283fd620dc\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1c21ea4e-1a3c-4cfb-9d9f-4683c298af78 + status: 200 OK + code: 200 + duration: 127.607671ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 139 + host: api.scaleway.com + body: "{\"name\":\"tf-sg-silly-raman\",\"inbound_default_policy\":\"accept\",\"tags\":[\"test-terraform\"],\"outbound_default_policy\":\"accept\",\"stateful\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d3c674bf-cd99-444d-a97e-dfd82a5593a0 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 599 + body: "{\"security_group\": {\"id\": \"d3c674bf-cd99-444d-a97e-dfd82a5593a0\", \"creation_date\": \"2025-10-30T15:41:46.908119+00:00\", \"modification_date\": \"2025-10-30T15:41:47.601594+00:00\", \"name\": \"tf-sg-silly-raman\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 478dce8f-2af4-4ce7-821a-e35d711c6339 + status: 200 OK + code: 200 + duration: 1.286748419s +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 191 + host: api.scaleway.com + body: "{\"rules\":[{\"id\":null,\"action\":\"accept\",\"protocol\":\"TCP\",\"direction\":\"inbound\",\"ip_range\":\"8.8.8.8/32\",\"dest_port_from\":22,\"dest_port_to\":null,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"}]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d3c674bf-cd99-444d-a97e-dfd82a5593a0/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1790 + 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\": \"7b7ea214-adff-4080-967c-4acb34b56b93\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 51e30a3f-2138-4186-bf80-c5aad823457b + status: 200 OK + code: 200 + duration: 271.972363ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d3c674bf-cd99-444d-a97e-dfd82a5593a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 599 + body: "{\"security_group\": {\"id\": \"d3c674bf-cd99-444d-a97e-dfd82a5593a0\", \"creation_date\": \"2025-10-30T15:41:46.908119+00:00\", \"modification_date\": \"2025-10-30T15:41:50.453612+00:00\", \"name\": \"tf-sg-silly-raman\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8d85095f-b9d1-4676-92e8-161e5abfe884 + status: 200 OK + code: 200 + duration: 103.89815ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/d3c674bf-cd99-444d-a97e-dfd82a5593a0/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1790 + 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\": \"7b7ea214-adff-4080-967c-4acb34b56b93\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cff4b99e-706f-406b-a5f6-c8d834830a47 + status: 200 OK + code: 200 + duration: 114.80601ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d3c674bf-cd99-444d-a97e-dfd82a5593a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 599 + body: "{\"security_group\": {\"id\": \"d3c674bf-cd99-444d-a97e-dfd82a5593a0\", \"creation_date\": \"2025-10-30T15:41:46.908119+00:00\", \"modification_date\": \"2025-10-30T15:41:50.453612+00:00\", \"name\": \"tf-sg-silly-raman\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2c6bdaa8-ca31-43d2-a293-62db40ce0983 + status: 200 OK + code: 200 + duration: 102.248566ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/d3c674bf-cd99-444d-a97e-dfd82a5593a0/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1790 + 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\": \"7b7ea214-adff-4080-967c-4acb34b56b93\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 36d74b10-b55c-42a0-a9ff-b7625791a863 + status: 200 OK + code: 200 + duration: 140.425574ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d3c674bf-cd99-444d-a97e-dfd82a5593a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 599 + body: "{\"security_group\": {\"id\": \"d3c674bf-cd99-444d-a97e-dfd82a5593a0\", \"creation_date\": \"2025-10-30T15:41:46.908119+00:00\", \"modification_date\": \"2025-10-30T15:41:50.453612+00:00\", \"name\": \"tf-sg-silly-raman\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8d2780e9-da7c-4290-b9a2-08cd815b461c + status: 200 OK + code: 200 + duration: 111.578245ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/d3c674bf-cd99-444d-a97e-dfd82a5593a0/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1790 + 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\": \"7b7ea214-adff-4080-967c-4acb34b56b93\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 53933cda-060d-434f-83ff-ae7cd287e575 + status: 200 OK + code: 200 + duration: 130.59766ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 139 + host: api.scaleway.com + body: "{\"name\":\"tf-sg-silly-raman\",\"inbound_default_policy\":\"accept\",\"tags\":[\"test-terraform\"],\"outbound_default_policy\":\"accept\",\"stateful\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d3c674bf-cd99-444d-a97e-dfd82a5593a0 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 599 + body: "{\"security_group\": {\"id\": \"d3c674bf-cd99-444d-a97e-dfd82a5593a0\", \"creation_date\": \"2025-10-30T15:41:46.908119+00:00\", \"modification_date\": \"2025-10-30T15:41:50.453612+00:00\", \"name\": \"tf-sg-silly-raman\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7abd69d6-577d-4770-8805-e4bfe1737848 + status: 200 OK + code: 200 + duration: 164.907295ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 190 + host: api.scaleway.com + body: "{\"rules\":[{\"id\":null,\"action\":\"accept\",\"protocol\":\"TCP\",\"direction\":\"inbound\",\"ip_range\":\"8.8.8.8/32\",\"dest_port_from\":1,\"dest_port_to\":1024,\"position\":0,\"editable\":null,\"zone\":\"fr-par-1\"}]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d3c674bf-cd99-444d-a97e-dfd82a5593a0/rules + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1789 + 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\": \"b3a2ff5f-ad7c-4dfc-a0e7-1baa31b7601a\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 722c1ddd-eadc-4fe9-9a0b-892020011e5d + status: 200 OK + code: 200 + duration: 284.05033ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d3c674bf-cd99-444d-a97e-dfd82a5593a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 597 + body: "{\"security_group\": {\"id\": \"d3c674bf-cd99-444d-a97e-dfd82a5593a0\", \"creation_date\": \"2025-10-30T15:41:46.908119+00:00\", \"modification_date\": \"2025-10-30T15:41:51.800814+00:00\", \"name\": \"tf-sg-silly-raman\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 566ad352-d005-4e6b-9000-7ceda7955c67 + status: 200 OK + code: 200 + duration: 111.98567ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/d3c674bf-cd99-444d-a97e-dfd82a5593a0/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1789 + 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\": \"b3a2ff5f-ad7c-4dfc-a0e7-1baa31b7601a\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3c4db58f-a5d1-4200-b988-e6a61e1cb1a6 + status: 200 OK + code: 200 + duration: 100.909886ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d3c674bf-cd99-444d-a97e-dfd82a5593a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 599 + body: "{\"security_group\": {\"id\": \"d3c674bf-cd99-444d-a97e-dfd82a5593a0\", \"creation_date\": \"2025-10-30T15:41:46.908119+00:00\", \"modification_date\": \"2025-10-30T15:41:52.141403+00:00\", \"name\": \"tf-sg-silly-raman\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5a42bc7c-d93e-4b98-8af6-b686617823b1 + status: 200 OK + code: 200 + duration: 104.085742ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/d3c674bf-cd99-444d-a97e-dfd82a5593a0/rules?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1789 + 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\": \"b3a2ff5f-ad7c-4dfc-a0e7-1baa31b7601a\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 07119d71-1f62-4e60-a08d-bceb5783f851 + status: 200 OK + code: 200 + duration: 101.18965ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d3c674bf-cd99-444d-a97e-dfd82a5593a0 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a7173851-bec5-4565-84d0-e1eefa357edc + status: 204 No Content + code: 204 + duration: 178.072589ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d3c674bf-cd99-444d-a97e-dfd82a5593a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 151 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_security_group\", \"resource_id\": \"d3c674bf-cd99-444d-a97e-dfd82a5593a0\"}" + headers: + Content-Length: + - "151" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 204ea497-f526-48f6-97ed-80c70edb9010 + status: 404 Not Found + code: 404 + duration: 34.133814ms 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 832bdbb07..c47be055d 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 @@ -1,4579 +1,3662 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 684 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-admin-pwd-encryption","public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU= opensource@scaleway.com","project_id":"105bdce1-64c0-48ab-899d-868455867ecf"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 955 - uncompressed: false - body: '{"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: - - "955" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 650cf8ba-baec-4cfa-8411-25d9e80228d3 - status: 200 OK - code: 200 - duration: 277.845058ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/73ada823-7f86-4cdb-a46a-262c3377ffc1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 955 - uncompressed: false - 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: - - "955" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c6f12470-cfdf-4a80-a01e-2006da593a2d - status: 200 OK - code: 200 - duration: 94.526998ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4b75d3a8-e753-4a19-882f-50309225c361 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 41.889485ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9e750687-6351-4bf8-99c9-4097bfae741b - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 45.844761ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=windows_server_2022&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 300 - uncompressed: false - body: '{"local_images":[{"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: - - "300" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 06dfaad3-a53d-4f53-aeb5-c6a01dd746f4 - status: 200 OK - code: 200 - duration: 55.290543ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 320 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1821 - uncompressed: false - 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: - - "1821" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 201ec945-23fe-4135-8041-ebcff3418cff - status: 201 Created - code: 201 - duration: 1.298960832s - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1821 - uncompressed: false - 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: - - "1821" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1f404dd7-e621-4b7b-818f-54fe65ef072e - status: 200 OK - code: 200 - duration: 150.21261ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1821 - uncompressed: false - 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: - - "1821" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bb5bc153-7d8f-494f-8a00-cb07af622c61 - status: 200 OK - code: 200 - duration: 149.321964ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 696 - uncompressed: false - 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: - - "696" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 00f72155-769f-410b-9a4f-231e00a8f239 - status: 200 OK - code: 200 - duration: 84.045269ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweron"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a60c11ff-9772-4780-a969-a2b075c3a5b8 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fda37ba5-f74d-428b-a219-9c6186de9a91 - status: 202 Accepted - code: 202 - duration: 240.636686ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1843 - uncompressed: false - 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: - - "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: - - 160a7c83-12ad-43ad-a546-e6151f135595 - status: 200 OK - code: 200 - duration: 126.240206ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1977 - uncompressed: false - 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: - - "1977" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1a1d45be-c281-4888-8e03-fa5b730cc4c5 - status: 200 OK - code: 200 - duration: 126.981413ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1977 - uncompressed: false - 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: - - "1977" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e7f13f9d-e072-4924-be88-69ba60859630 - status: 200 OK - code: 200 - duration: 145.229484ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 - 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": "82f12195-db16-4078-955e-8fb7c0d77241"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f938c70b-eb05-4946-ac52-0c8493fc1776 - status: 404 Not Found - code: 404 - duration: 35.348786ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 696 - uncompressed: false - 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: - - "696" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5989569f-6c3b-42c1-bd75-58f9b6da3b16 - status: 200 OK - code: 200 - duration: 93.894557ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/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:54:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 78a0ea3f-ab9a-4bc8-b287-9a5f3edf6836 - status: 200 OK - code: 200 - duration: 99.975718ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/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:54:02 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b6690808-2790-4d9c-845c-7b2ed889c5ea - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 104.719097ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/73ada823-7f86-4cdb-a46a-262c3377ffc1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 955 - uncompressed: false - 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: - - "955" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 49e045b5-d0c0-432b-b43b-d6f5baada51d - status: 200 OK - code: 200 - duration: 82.684877ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/73ada823-7f86-4cdb-a46a-262c3377ffc1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 955 - uncompressed: false - 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: - - "955" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9a4ec239-b984-47c0-97cd-9659f5735717 - status: 200 OK - code: 200 - duration: 90.659839ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1977 - uncompressed: false - 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: - - "1977" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 79def991-5884-4c70-b3c6-0a05d96d79f0 - status: 200 OK - code: 200 - duration: 134.086289ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 - 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": "82f12195-db16-4078-955e-8fb7c0d77241"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ecd88f34-095b-4967-8186-3da0921c38ac - status: 404 Not Found - code: 404 - duration: 24.336625ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 696 - uncompressed: false - 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: - - "696" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 38ca9472-0d03-4178-9ecf-fcc2f6fdca16 - status: 200 OK - code: 200 - duration: 75.75534ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/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:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b47010b1-9f45-4fbb-8adb-caa377efee15 - status: 200 OK - code: 200 - duration: 90.769774ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/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:54:03 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 11a13b01-aea9-4ca7-8f1f-e52262f7dbc9 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 108.920924ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/73ada823-7f86-4cdb-a46a-262c3377ffc1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 955 - uncompressed: false - 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: - - "955" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a178028d-484f-48bc-a2a9-b1313311a22e - status: 200 OK - code: 200 - duration: 115.833339ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1977 - uncompressed: false - 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: - - "1977" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - eeb50ed4-5312-4867-8323-d1b5b2989537 - status: 200 OK - code: 200 - duration: 122.887399ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 - 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": "82f12195-db16-4078-955e-8fb7c0d77241"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 21134955-a6d8-48e0-984c-2374da92bfb2 - status: 404 Not Found - code: 404 - duration: 34.497395ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 696 - uncompressed: false - 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: - - "696" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - daa7c4ca-e462-4ed6-91fb-31e1bfbd9ff8 - status: 200 OK - code: 200 - duration: 75.360562ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/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:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f944dd15-ceea-4d94-8cac-34c330db4742 - status: 200 OK - code: 200 - duration: 100.671629ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951/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:54:03 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7a0c8470-d439-40c2-9ec6-3a25e8f8fa20 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 90.447332ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1977 - uncompressed: false - 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: - - "1977" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 29a84cab-50f0-4fcf-b9f5-60c315bfb082 - status: 200 OK - code: 200 - duration: 164.01402ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 43 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"admin_password_encryption_ssh_key_id":""}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1943 - uncompressed: false - 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: - - "1943" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c94f7317-2250-498e-9ecc-d80388bb55c4 - status: 200 OK - code: 200 - duration: 239.364433ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1897 - uncompressed: false - 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: - - "1897" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 64cae0de-e5d7-4480-9758-986c6889ec93 - status: 200 OK - code: 200 - duration: 125.595243ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1943 - uncompressed: false - 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: - - "1943" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7715f477-c933-40b0-9f8f-f278bd738940 - status: 200 OK - code: 200 - duration: 156.493617ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 - 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": "82f12195-db16-4078-955e-8fb7c0d77241"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bc95d7de-7d72-478e-835e-a0a4ed9ccc13 - status: 404 Not Found - code: 404 - duration: 30.086206ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 696 - uncompressed: false - 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: - - "696" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1532dbb2-847c-4c62-ab13-6cb4adbb79cf - status: 200 OK - code: 200 - duration: 89.597353ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951/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:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6236d2d6-3acb-4354-8ac8-e51350786df1 - status: 200 OK - code: 200 - duration: 108.869088ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951/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:54:05 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b9ec5984-f680-47ac-ae60-b163491180d2 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 115.70502ms - - 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/iam/v1alpha1/ssh-keys/73ada823-7f86-4cdb-a46a-262c3377ffc1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 955 - uncompressed: false - 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: - - "955" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 97749ae7-ab56-432a-a11f-4767665aecef - status: 200 OK - code: 200 - duration: 85.02827ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1897 - uncompressed: false - 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: - - "1897" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c099d399-1aba-4f6d-93cb-4808e4d96300 - status: 200 OK - code: 200 - duration: 137.660904ms - - 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/volumes/82f12195-db16-4078-955e-8fb7c0d77241 - 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": "82f12195-db16-4078-955e-8fb7c0d77241"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d6788c88-125d-41ca-b497-b9e5d314b529 - status: 404 Not Found - code: 404 - duration: 25.714863ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 696 - uncompressed: false - 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: - - "696" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b3cb4c6e-08ca-41d5-bb7f-15e92a2a3175 - status: 200 OK - code: 200 - duration: 83.352526ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951/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:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6eb93b9f-34f7-4cc2-a0c7-0d7129e932f3 - status: 200 OK - code: 200 - duration: 92.851197ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951/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:54:05 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a6844cec-25eb-42a0-907d-2bdf289e12a1 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 96.690105ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/73ada823-7f86-4cdb-a46a-262c3377ffc1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 955 - uncompressed: false - 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: - - "955" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 98877a39-25a5-4301-96f7-69fc5986abb3 - status: 200 OK - code: 200 - duration: 85.770748ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1943 - uncompressed: false - 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: - - "1943" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f768b812-2693-45d9-a303-aa5fc07d8e00 - status: 200 OK - code: 200 - duration: 164.795973ms - - 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/volumes/82f12195-db16-4078-955e-8fb7c0d77241 - 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": "82f12195-db16-4078-955e-8fb7c0d77241"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f44d4091-8438-47aa-845c-069b74b0c7d1 - status: 404 Not Found - code: 404 - duration: 29.118757ms - - id: 47 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 696 - uncompressed: false - 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: - - "696" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bd406afc-89ed-412c-a537-cbba9b44c8e9 - status: 200 OK - code: 200 - duration: 71.874344ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951/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:54:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cfa6cd41-1828-4a0b-b7dc-1a8894af6031 - status: 200 OK - code: 200 - duration: 90.142562ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/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:54:06 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 92db93df-0709-43a4-9612-405a7a8b3715 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 110.857496ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1943 - uncompressed: false - 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: - - "1943" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b6ba9f5f-b98c-46ce-bd6c-7b72818253be - status: 200 OK - code: 200 - duration: 135.943965ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 79 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1977 - uncompressed: false - 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: - - "1977" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c8644b1d-9d4c-41bf-99aa-a88b8ccd339b - status: 200 OK - code: 200 - duration: 267.693756ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1977 - uncompressed: false - 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: - - "1977" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3d9d0fdb-02fd-443d-81ef-8712e7fe42eb - status: 200 OK - code: 200 - duration: 177.969054ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1977 - uncompressed: false - 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: - - "1977" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3cbd8326-e857-45c9-a3f1-8dcb297721bb - status: 200 OK - code: 200 - duration: 149.221762ms - - 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/volumes/82f12195-db16-4078-955e-8fb7c0d77241 - 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": "82f12195-db16-4078-955e-8fb7c0d77241"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d54dac56-04d4-4bdc-95c2-d387949306e1 - status: 404 Not Found - code: 404 - duration: 28.476086ms - - id: 55 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 696 - uncompressed: false - 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: - - "696" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ad080825-c65c-4fe1-b8e2-4ef449246187 - status: 200 OK - code: 200 - duration: 83.795595ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/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:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0e90d5a3-ff29-4ed6-8cb8-752a654119b4 - status: 200 OK - code: 200 - duration: 91.360129ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/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:54:07 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 512b3dab-0952-45f6-877b-93dc268d210e - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 98.854122ms - - 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/iam/v1alpha1/ssh-keys/73ada823-7f86-4cdb-a46a-262c3377ffc1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 955 - uncompressed: false - 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: - - "955" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0a3de539-bc0e-4d0e-b50e-f141c47722b0 - status: 200 OK - code: 200 - duration: 100.818095ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1977 - uncompressed: false - 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: - - "1977" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - da6dc3c3-f24e-4dad-90d1-1e177e40b08e - status: 200 OK - code: 200 - duration: 143.34842ms - - 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/volumes/82f12195-db16-4078-955e-8fb7c0d77241 - 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": "82f12195-db16-4078-955e-8fb7c0d77241"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 033ece4e-0204-4bcf-b388-88780eefaf84 - status: 404 Not Found - code: 404 - duration: 33.551616ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 696 - uncompressed: false - 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: - - "696" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2c69f3c8-d841-4b2c-a49c-cffa031ca1af - status: 200 OK - code: 200 - duration: 93.55309ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/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:54:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a461b54c-648f-4de9-835a-8d55877b43ee - status: 200 OK - code: 200 - duration: 96.321577ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/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:54:08 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bbed4e33-5f59-4051-9003-927db7c78575 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 97.403279ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1977 - uncompressed: false - 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: - - "1977" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 760592b8-8558-45c7-8751-a52f2944fee5 - status: 200 OK - code: 200 - duration: 157.989778ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1977 - uncompressed: false - 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: - - "1977" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8ca19b70-bd11-46c8-987b-ce6346ac472b - status: 200 OK - code: 200 - duration: 142.244526ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 22 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"terminate"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:09 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/10bb2297-d771-4cb8-8d08-a3abf0f7aefd - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2b52009a-7459-4841-8cfa-323cb5aed247 - status: 202 Accepted - code: 202 - duration: 291.015185ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1f0b9e14-cbca-48ac-a831-aeed581bb2a7 - status: 200 OK - code: 200 - duration: 136.194714ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a8ba5bbc-f655-4997-98c0-308d4f4a03a3 - status: 200 OK - code: 200 - duration: 137.200748ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9274e435-f151-4927-a7a2-f9872e407709 - status: 200 OK - code: 200 - duration: 155.982419ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 22bc47b7-5d9a-41f5-be3e-f045f34a3ce4 - status: 200 OK - code: 200 - duration: 133.212555ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e50437d7-058f-4ffb-88db-2dc34ba3bd2b - status: 200 OK - code: 200 - duration: 151.642449ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3b919838-cc3f-45ec-9b04-7bf3afc54755 - status: 200 OK - code: 200 - duration: 289.418692ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1623101a-5bc0-4b5f-92d4-cd271013bd22 - status: 200 OK - code: 200 - duration: 225.586724ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 509d1e3b-1de5-48a2-ba9c-e91ee9659ea7 - status: 200 OK - code: 200 - duration: 232.956628ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d0b93903-8d6d-4de9-8e6e-12ff14bd641f - status: 200 OK - code: 200 - duration: 149.390085ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 785c75bc-a669-4011-a559-53a029d98955 - status: 200 OK - code: 200 - duration: 122.426506ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - eb693723-9a4e-47ab-b5ca-b3a59a2feddc - status: 200 OK - code: 200 - duration: 141.515664ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dd0ca5b0-0509-4c04-91f6-be8668ae2ef7 - status: 200 OK - code: 200 - duration: 159.900257ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d701baf0-65b1-4857-8eb4-626b01148b58 - status: 200 OK - code: 200 - duration: 165.89093ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 37edcd0e-fcf3-43c4-8702-25bd43065761 - status: 200 OK - code: 200 - duration: 165.665691ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a5e097e9-5549-47b7-8e96-a1b3a2ef7f36 - status: 200 OK - code: 200 - duration: 127.986812ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8f7391e8-c136-4cf9-a58d-502850a37aa9 - status: 200 OK - code: 200 - duration: 144.940729ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 30d17d85-24f0-4013-998a-ac2237811e84 - status: 200 OK - code: 200 - duration: 157.232217ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 96019304-d0e8-4d46-96a1-2bc61be1a2d9 - status: 200 OK - code: 200 - duration: 133.76387ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e7e23f31-fa6e-42fc-9e66-46453cab73fe - status: 200 OK - code: 200 - duration: 136.549531ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - daa7f925-816d-44f5-a16f-3fb322e66aff - status: 200 OK - code: 200 - duration: 139.925596ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4e9fdbd9-3465-46c7-b386-72311131d83d - status: 200 OK - code: 200 - duration: 154.062937ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b08cbff8-199e-4f51-b356-dc01267c0de2 - status: 200 OK - code: 200 - duration: 160.710892ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1e7b33e0-40db-4f90-84ff-8089e2b763f4 - status: 200 OK - code: 200 - duration: 150.689934ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b18ded4e-4472-4131-8373-2eb0bcf2e77f - status: 200 OK - code: 200 - duration: 141.769942ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6b9eebaf-1671-4232-884c-e238ddb584e1 - status: 200 OK - code: 200 - duration: 148.927661ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ab1780f3-8d62-4fb9-a2d1-3495debf4944 - status: 200 OK - code: 200 - duration: 142.544213ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c0ff9e37-a7cb-469e-85a7-7bb8c2946158 - status: 200 OK - code: 200 - duration: 155.342741ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a31aede2-20fe-4c9d-8027-4e05df996c17 - status: 200 OK - code: 200 - duration: 150.543127ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d9c1aeaa-310b-420c-be26-cf01d45fec49 - status: 200 OK - code: 200 - duration: 152.553569ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a421e091-413a-4698-9035-103931df1cef - status: 200 OK - code: 200 - duration: 148.14749ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 105148c2-59bd-4097-8893-c81572b440e0 - status: 200 OK - code: 200 - duration: 152.036065ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2490 - uncompressed: false - 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: - - "2490" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b413a753-27c5-4194-972a-92510d056a8b - status: 200 OK - code: 200 - duration: 153.559356ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2490 - uncompressed: false - 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: - - "2490" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6c3328f4-e509-4ddd-9c64-05886065dc4c - status: 200 OK - code: 200 - duration: 125.983263ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2490 - uncompressed: false - 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: - - "2490" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f162a15a-a2fd-4e4e-abe8-e74500846afc - status: 200 OK - code: 200 - duration: 143.681544ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2490 - uncompressed: false - 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: - - "2490" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1dd5e555-d0c9-4881-8f9d-ffa0c9502a90 - status: 200 OK - code: 200 - duration: 148.573255ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2490 - uncompressed: false - 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: - - "2490" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5c86f703-d557-4b6d-a583-8a2710de7d9e - status: 200 OK - code: 200 - duration: 155.463673ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - 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": "344013a7-bb08-443c-8b3d-0b23e73d8951"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c7f46d6d-e221-439f-8eab-fca51328dd04 - status: 404 Not Found - code: 404 - duration: 47.369546ms - - 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/volumes/82f12195-db16-4078-955e-8fb7c0d77241 - 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": "82f12195-db16-4078-955e-8fb7c0d77241"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e8237a32-2898-43b2-8b22-78d337752678 - status: 404 Not Found - code: 404 - duration: 30.530631ms - - id: 105 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 489 - uncompressed: false - 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: - - "489" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9f33d825-38ed-4aee-8d96-4551ba977b23 - status: 200 OK - code: 200 - duration: 78.266613ms - - id: 106 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82f12195-db16-4078-955e-8fb7c0d77241 - 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:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4bbebdfe-04a6-4087-9a1b-d78ae37a3dbe - status: 204 No Content - code: 204 - duration: 157.788734ms - - 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/iam/v1alpha1/ssh-keys/73ada823-7f86-4cdb-a46a-262c3377ffc1 - 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:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 36f9db88-35b8-4216-8a7c-e15d42a212d7 - status: 204 No Content - code: 204 - duration: 105.623738ms - - 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/344013a7-bb08-443c-8b3d-0b23e73d8951 - 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": "344013a7-bb08-443c-8b3d-0b23e73d8951"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b2d5309d-dada-41cd-a163-f28e610b9233 - status: 404 Not Found - code: 404 - duration: 52.0873ms - - 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/iam/v1alpha1/ssh-keys/73ada823-7f86-4cdb-a46a-262c3377ffc1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 128 - uncompressed: false - body: '{"message":"resource is not found","resource":"ssh_key","resource_id":"73ada823-7f86-4cdb-a46a-262c3377ffc1","type":"not_found"}' - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 61c15ea8-9d0b-4044-9d76-29333aba7998 - status: 404 Not Found - code: 404 - duration: 49.104741ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 684 + host: api.scaleway.com + 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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 955 + body: "{\"id\":\"6b92b911-2865-4a52-a200-7c755e480ad2\", \"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-30T15:41:46.973940Z\", \"updated_at\":\"2025-10-30T15:41:46.973940Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "955" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1c2133ae-6929-4afe-871b-d0bd37058ec9 + status: 200 OK + code: 200 + duration: 264.973725ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/6b92b911-2865-4a52-a200-7c755e480ad2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 955 + body: "{\"id\":\"6b92b911-2865-4a52-a200-7c755e480ad2\", \"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-30T15:41:46.973940Z\", \"updated_at\":\"2025-10-30T15:41:46.973940Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "955" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fbd0620a-eacd-4981-8b61-976722161dd3 + status: 200 OK + code: 200 + duration: 246.65224ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c888d0d3-274a-4630-80a3-ac7469ec05b4 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 52.90329ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2964838b-e85f-4f67-83e9-5d9b9a1c7009 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 40.031716ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=windows_server_2022&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 300 + 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: + - "300" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3128b9ea-5c80-4958-b47b-09787245a3c2 + status: 200 OK + code: 200 + duration: 53.185779ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 323 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-practical-lehmann\",\"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\":\"6b92b911-2865-4a52-a200-7c755e480ad2\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1827 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:41:48.081643+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1827" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1decc65f-59bf-4eaf-9cba-0bfcaba33cfb + status: 201 Created + code: 201 + duration: 1.16860718s +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1827 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:41:48.081643+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1827" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 70b6cd29-3ad6-4ffe-928b-4a594e58a5e6 + status: 200 OK + code: 200 + duration: 146.777848ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1827 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:41:48.081643+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1827" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1a3447f2-08ae-4edf-90c1-29c4057e368c + status: 200 OK + code: 200 + duration: 121.832509ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/337a8d0e-10bb-4c15-a27e-77499535be00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 696 + body: "{\"id\":\"337a8d0e-10bb-4c15-a27e-77499535be00\", \"name\":\"Windows Server 2022_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":25000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.260629Z\", \"updated_at\":\"2025-10-30T15:41:48.260629Z\", \"references\":[{\"id\":\"7d192c56-46df-4c9d-ab30-27019b4cd0b9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"created_at\":\"2025-10-30T15:41:48.260629Z\", \"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: + - "696" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6601a22e-8e0b-4067-adff-054cba2823c3 + status: 200 OK + code: 200 + duration: 90.844936ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"9175b6e2-e276-4489-a47b-c3657dba4d54\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289/action\", \"href_result\": \"/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"started_at\": \"2025-10-30T15:41:49.189720+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9175b6e2-e276-4489-a47b-c3657dba4d54 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9a24268a-a761-462f-90dc-63bef22c53e5 + status: 202 Accepted + code: 202 + duration: 267.727962ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1849 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:41:48.974481+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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1849" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - abf8e5e7-b6bf-4a13-bc5d-2eb591549ef8 + status: 200 OK + code: 200 + duration: 147.231028ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1982 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:41:51.684093+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1982" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 10393c1e-acda-47bd-a5e4-7d9af051d522 + status: 200 OK + code: 200 + duration: 142.344113ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1982 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:41:51.684093+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1982" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e9de28a0-f0fb-42c9-93a3-253d320b9f9d + status: 200 OK + code: 200 + duration: 152.87206ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/337a8d0e-10bb-4c15-a27e-77499535be00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"337a8d0e-10bb-4c15-a27e-77499535be00\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0e3b36b5-fe7b-49f1-a4d6-f4f6762e92f5 + status: 404 Not Found + code: 404 + duration: 37.454333ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/337a8d0e-10bb-4c15-a27e-77499535be00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 696 + body: "{\"id\":\"337a8d0e-10bb-4c15-a27e-77499535be00\", \"name\":\"Windows Server 2022_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":25000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.260629Z\", \"updated_at\":\"2025-10-30T15:41:48.260629Z\", \"references\":[{\"id\":\"7d192c56-46df-4c9d-ab30-27019b4cd0b9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"created_at\":\"2025-10-30T15:41:48.260629Z\", \"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: + - "696" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ff866162-3a99-45d8-9853-cbe3c500c759 + status: 200 OK + code: 200 + duration: 98.842538ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 52b887e7-8f67-4d88-9e31-89a313688854 + status: 200 OK + code: 200 + duration: 106.074463ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 384ff721-2c5f-4bef-9a61-51d81e2bb7de + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 106.868412ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/6b92b911-2865-4a52-a200-7c755e480ad2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 955 + body: "{\"id\":\"6b92b911-2865-4a52-a200-7c755e480ad2\", \"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-30T15:41:46.973940Z\", \"updated_at\":\"2025-10-30T15:41:46.973940Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "955" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5bc996a8-45ee-4a27-884f-c42f72dea07d + status: 200 OK + code: 200 + duration: 108.488492ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/6b92b911-2865-4a52-a200-7c755e480ad2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 955 + body: "{\"id\":\"6b92b911-2865-4a52-a200-7c755e480ad2\", \"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-30T15:41:46.973940Z\", \"updated_at\":\"2025-10-30T15:41:46.973940Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "955" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9ef5973d-92a9-4b27-ae07-72ac1984b6af + status: 200 OK + code: 200 + duration: 86.483838ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1982 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:41:51.684093+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1982" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e644aca3-fdf6-408a-ac3a-9c92d5671ed9 + status: 200 OK + code: 200 + duration: 136.134216ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/337a8d0e-10bb-4c15-a27e-77499535be00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"337a8d0e-10bb-4c15-a27e-77499535be00\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f20c29b5-336f-4144-aa63-312ce4876395 + status: 404 Not Found + code: 404 + duration: 31.23624ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/337a8d0e-10bb-4c15-a27e-77499535be00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 696 + body: "{\"id\":\"337a8d0e-10bb-4c15-a27e-77499535be00\", \"name\":\"Windows Server 2022_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":25000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.260629Z\", \"updated_at\":\"2025-10-30T15:41:48.260629Z\", \"references\":[{\"id\":\"7d192c56-46df-4c9d-ab30-27019b4cd0b9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"created_at\":\"2025-10-30T15:41:48.260629Z\", \"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: + - "696" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8c807ab4-f776-4a5e-aca8-f8f63bd7d34d + status: 200 OK + code: 200 + duration: 83.753536ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 26e10229-e302-4942-bb4e-69cc4df8e8a2 + status: 200 OK + code: 200 + duration: 98.915054ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b8e3e40c-3bb4-4a51-a70e-15f82dea8622 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 108.729754ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/6b92b911-2865-4a52-a200-7c755e480ad2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 955 + body: "{\"id\":\"6b92b911-2865-4a52-a200-7c755e480ad2\", \"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-30T15:41:46.973940Z\", \"updated_at\":\"2025-10-30T15:41:46.973940Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "955" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4fbaf29e-bf8a-4a1c-a31d-2289d8943c64 + status: 200 OK + code: 200 + duration: 93.634199ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1982 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:41:51.684093+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1982" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2c4e7534-9df3-4d8e-ba00-ef73a58ffa67 + status: 200 OK + code: 200 + duration: 139.113193ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/337a8d0e-10bb-4c15-a27e-77499535be00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"337a8d0e-10bb-4c15-a27e-77499535be00\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 48877538-f362-4694-990d-6af811d8b2c8 + status: 404 Not Found + code: 404 + duration: 29.067702ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/337a8d0e-10bb-4c15-a27e-77499535be00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 696 + body: "{\"id\":\"337a8d0e-10bb-4c15-a27e-77499535be00\", \"name\":\"Windows Server 2022_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":25000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.260629Z\", \"updated_at\":\"2025-10-30T15:41:48.260629Z\", \"references\":[{\"id\":\"7d192c56-46df-4c9d-ab30-27019b4cd0b9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"created_at\":\"2025-10-30T15:41:48.260629Z\", \"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: + - "696" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 584bf56b-3350-42b4-b5f9-f47c8927a982 + status: 200 OK + code: 200 + duration: 82.75327ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7c58e840-899b-4d34-b95f-597594f861fe + status: 200 OK + code: 200 + duration: 113.794053ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8b4cf43d-590f-4956-b31d-38bcad54e94d + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 90.495953ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1982 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:41:51.684093+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1982" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8a2a3584-2f61-43fe-be06-b8c11c04cd41 + status: 200 OK + code: 200 + duration: 156.505407ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 43 + host: api.scaleway.com + body: "{\"admin_password_encryption_ssh_key_id\":\"\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1902 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:41:56.831065+00:00\", \"bootscript\": 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\": \"701\", \"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: + - "1902" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - daadfe5c-c069-4972-9e25-c81db6b8515c + status: 200 OK + code: 200 + duration: 255.80334ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1902 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:41:56.831065+00:00\", \"bootscript\": 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\": \"701\", \"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: + - "1902" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 06bd8275-3cd5-4f17-bdd5-aa44f30a1fec + status: 200 OK + code: 200 + duration: 164.346405ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1902 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:41:56.831065+00:00\", \"bootscript\": 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\": \"701\", \"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: + - "1902" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 42daadb6-f1a2-447e-926e-0083b8426f38 + status: 200 OK + code: 200 + duration: 168.368217ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/337a8d0e-10bb-4c15-a27e-77499535be00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"337a8d0e-10bb-4c15-a27e-77499535be00\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2f14c319-c594-4ddd-9f17-6e80df44dba5 + status: 404 Not Found + code: 404 + duration: 34.464094ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/337a8d0e-10bb-4c15-a27e-77499535be00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 696 + body: "{\"id\":\"337a8d0e-10bb-4c15-a27e-77499535be00\", \"name\":\"Windows Server 2022_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":25000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.260629Z\", \"updated_at\":\"2025-10-30T15:41:48.260629Z\", \"references\":[{\"id\":\"7d192c56-46df-4c9d-ab30-27019b4cd0b9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"created_at\":\"2025-10-30T15:41:48.260629Z\", \"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: + - "696" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d08a30cc-e820-47fb-9bb8-f05a43833631 + status: 200 OK + code: 200 + duration: 103.246469ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d6a85211-ce55-49e3-b48b-56c142975b74 + status: 200 OK + code: 200 + duration: 96.073074ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:57 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fe37a457-ca70-4c36-b027-1856c634e208 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 119.978563ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/6b92b911-2865-4a52-a200-7c755e480ad2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 955 + body: "{\"id\":\"6b92b911-2865-4a52-a200-7c755e480ad2\", \"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-30T15:41:46.973940Z\", \"updated_at\":\"2025-10-30T15:41:46.973940Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "955" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 22c8d9d0-390f-4b21-98f0-e3f38a331b17 + status: 200 OK + code: 200 + duration: 119.246751ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1948 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:41:56.831065+00:00\", \"bootscript\": 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\": \"701\", \"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: + - "1948" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 887fd4ae-8953-4ba5-8d99-8bdb352d8955 + status: 200 OK + code: 200 + duration: 251.988235ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/337a8d0e-10bb-4c15-a27e-77499535be00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"337a8d0e-10bb-4c15-a27e-77499535be00\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4d9006ad-eb38-4552-bd32-93713b69f8c2 + status: 404 Not Found + code: 404 + duration: 26.761427ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/337a8d0e-10bb-4c15-a27e-77499535be00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 696 + body: "{\"id\":\"337a8d0e-10bb-4c15-a27e-77499535be00\", \"name\":\"Windows Server 2022_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":25000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.260629Z\", \"updated_at\":\"2025-10-30T15:41:48.260629Z\", \"references\":[{\"id\":\"7d192c56-46df-4c9d-ab30-27019b4cd0b9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"created_at\":\"2025-10-30T15:41:48.260629Z\", \"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: + - "696" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 90748f78-f569-4350-bbf7-63e9edb55ff0 + status: 200 OK + code: 200 + duration: 108.8709ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f26dcadf-b0c7-4a17-9952-82556844f35a + status: 200 OK + code: 200 + duration: 92.421365ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 04b38f0f-a38f-45e2-ab4b-b906d989e200 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 108.559736ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/6b92b911-2865-4a52-a200-7c755e480ad2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 955 + body: "{\"id\":\"6b92b911-2865-4a52-a200-7c755e480ad2\", \"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-30T15:41:46.973940Z\", \"updated_at\":\"2025-10-30T15:41:46.973940Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "955" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2ae592a5-4062-4792-98c3-4f9d1de5f0ad + status: 200 OK + code: 200 + duration: 96.345836ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1948 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:41:56.831065+00:00\", \"bootscript\": 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\": \"701\", \"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: + - "1948" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b956d193-c2cf-47e2-8a9d-80d7b33425d9 + status: 200 OK + code: 200 + duration: 124.478305ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/337a8d0e-10bb-4c15-a27e-77499535be00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"337a8d0e-10bb-4c15-a27e-77499535be00\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c8a9a44e-fcbb-47d4-b32e-d5c5043ccc93 + status: 404 Not Found + code: 404 + duration: 30.896463ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/337a8d0e-10bb-4c15-a27e-77499535be00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 696 + body: "{\"id\":\"337a8d0e-10bb-4c15-a27e-77499535be00\", \"name\":\"Windows Server 2022_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":25000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.260629Z\", \"updated_at\":\"2025-10-30T15:41:48.260629Z\", \"references\":[{\"id\":\"7d192c56-46df-4c9d-ab30-27019b4cd0b9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"created_at\":\"2025-10-30T15:41:48.260629Z\", \"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: + - "696" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 37da1c94-eb7d-4183-a174-f7fd33b70240 + status: 200 OK + code: 200 + duration: 79.831591ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9daea24f-dabb-46a0-8575-adad17080719 + status: 200 OK + code: 200 + duration: 116.778191ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 832bbd28-d6c1-4fd4-9b18-a646e5e01711 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 99.62676ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1902 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:41:56.831065+00:00\", \"bootscript\": 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\": \"701\", \"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: + - "1902" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9e8fe2f4-5748-4801-a046-0ef5daa92706 + status: 200 OK + code: 200 + duration: 148.309715ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 79 + host: api.scaleway.com + body: "{\"admin_password_encryption_ssh_key_id\":\"6b92b911-2865-4a52-a200-7c755e480ad2\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1982 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:41:59.583513+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1982" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2ccfb956-b7b4-4b61-840e-f22b55107c4d + status: 200 OK + code: 200 + duration: 249.83135ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1982 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:41:59.583513+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1982" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - da8a4841-7ae0-4909-b486-471a53d38a03 + status: 200 OK + code: 200 + duration: 143.494684ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1982 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:41:59.583513+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1982" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 158d2173-e4d6-47d4-92b9-4789fa6da700 + status: 200 OK + code: 200 + duration: 168.715841ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/337a8d0e-10bb-4c15-a27e-77499535be00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"337a8d0e-10bb-4c15-a27e-77499535be00\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 25979c98-2a28-410d-a965-52f2dfdd141d + status: 404 Not Found + code: 404 + duration: 22.248321ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/337a8d0e-10bb-4c15-a27e-77499535be00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 696 + body: "{\"id\":\"337a8d0e-10bb-4c15-a27e-77499535be00\", \"name\":\"Windows Server 2022_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":25000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.260629Z\", \"updated_at\":\"2025-10-30T15:41:48.260629Z\", \"references\":[{\"id\":\"7d192c56-46df-4c9d-ab30-27019b4cd0b9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"created_at\":\"2025-10-30T15:41:48.260629Z\", \"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: + - "696" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 40d970a2-94f3-45b5-a465-f08b0ae6fd3e + status: 200 OK + code: 200 + duration: 80.105264ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b6ad2987-efd2-4810-90d6-d00a53e38d35 + status: 200 OK + code: 200 + duration: 90.965504ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1ffa8009-7d7b-42e1-9cb5-41e1d1f6b3c5 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 93.887485ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/6b92b911-2865-4a52-a200-7c755e480ad2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 955 + body: "{\"id\":\"6b92b911-2865-4a52-a200-7c755e480ad2\", \"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-30T15:41:46.973940Z\", \"updated_at\":\"2025-10-30T15:41:46.973940Z\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"disabled\":false}" + headers: + Content-Length: + - "955" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 19f5ba50-4ad7-4690-91d0-9fd51f489826 + status: 200 OK + code: 200 + duration: 104.977597ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1982 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:41:59.583513+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1982" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f99ef2bc-461a-48fc-95dc-b9c871fa1599 + status: 200 OK + code: 200 + duration: 170.265558ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/337a8d0e-10bb-4c15-a27e-77499535be00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"337a8d0e-10bb-4c15-a27e-77499535be00\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5c9b53cc-21fb-492e-9aa6-2b23d05f597c + status: 404 Not Found + code: 404 + duration: 25.296369ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/337a8d0e-10bb-4c15-a27e-77499535be00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 696 + body: "{\"id\":\"337a8d0e-10bb-4c15-a27e-77499535be00\", \"name\":\"Windows Server 2022_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":25000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.260629Z\", \"updated_at\":\"2025-10-30T15:41:48.260629Z\", \"references\":[{\"id\":\"7d192c56-46df-4c9d-ab30-27019b4cd0b9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"created_at\":\"2025-10-30T15:41:48.260629Z\", \"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: + - "696" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b2587b44-7f7b-47b8-87f8-34f8be9323d1 + status: 200 OK + code: 200 + duration: 91.153437ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bcc2411a-15f8-4449-952b-cbee99c9be76 + status: 200 OK + code: 200 + duration: 111.333609ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e2a7902c-d4e1-40b9-acb8-33250b76100d + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 117.708617ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1982 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:41:59.583513+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1982" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c9a07383-882e-491b-894a-75aa9a060837 + status: 200 OK + code: 200 + duration: 187.191637ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1982 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:41:59.583513+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1982" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6bffbe2a-389f-4b5c-8a28-19099b9a7251 + status: 200 OK + code: 200 + duration: 174.864615ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"d236907e-5f0d-4077-b70d-249b371502cb\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289/action\", \"href_result\": \"/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"started_at\": \"2025-10-30T15:42:02.060625+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d236907e-5f0d-4077-b70d-249b371502cb + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 45083fd8-b767-4b3e-bea1-e4e7e3639f6e + status: 202 Accepted + code: 202 + duration: 301.915566ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 117c1fcf-a0ab-4014-94a3-20bf3d157e6c + status: 200 OK + code: 200 + duration: 139.660393ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ddd57f70-80de-4e3d-b51c-f39588725e0e + status: 200 OK + code: 200 + duration: 149.096473ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 31268c97-f47f-4879-91ff-cb1484e00ea8 + status: 200 OK + code: 200 + duration: 164.976271ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 352ecba3-938c-4d41-a903-0c64bc36fcc2 + status: 200 OK + code: 200 + duration: 138.847372ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f43729d1-51ae-41d8-b7f9-e1ab22afe9ac + status: 200 OK + code: 200 + duration: 148.349256ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b99a4f3e-b61e-46f1-b474-1e45e8826468 + status: 200 OK + code: 200 + duration: 145.100063ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0ca7da7b-3e14-4de3-be12-cb63b617d33e + status: 200 OK + code: 200 + duration: 161.461786ms +- id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7e226912-c439-4270-9c26-db4a69a74b43 + status: 200 OK + code: 200 + duration: 145.739736ms +- id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e026b663-225b-47e1-8525-18aaad3aca93 + status: 200 OK + code: 200 + duration: 141.079356ms +- id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7a42c144-5540-48d0-8609-5dafe8e1f3a3 + status: 200 OK + code: 200 + duration: 142.929438ms +- id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 342937ed-1e60-4b37-a4f8-4260e85967e1 + status: 200 OK + code: 200 + duration: 144.729225ms +- id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 488e4aee-6aa3-48b1-a4f2-1efcf15ce791 + status: 200 OK + code: 200 + duration: 230.340329ms +- id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 31e8cce0-f202-4710-8c98-d53d276b090c + status: 200 OK + code: 200 + duration: 164.767807ms +- id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 471044b0-648b-4afd-9024-967f21df7fb6 + status: 200 OK + code: 200 + duration: 117.088179ms +- id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a8fb47e3-fe21-4b52-a2c5-cb2fd493ebc6 + status: 200 OK + code: 200 + duration: 151.519038ms +- id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 43ad2674-2359-4139-8c65-a0918ea3ed1d + status: 200 OK + code: 200 + duration: 167.806301ms +- id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c844ad2e-a91b-486a-b9a6-80bb1bcc82c0 + status: 200 OK + code: 200 + duration: 135.651797ms +- id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dad7b97a-12cd-4b2e-bf9b-a8ee1cbce8ee + status: 200 OK + code: 200 + duration: 142.632453ms +- id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - db795927-9d45-4fee-ac97-041a4716fc98 + status: 200 OK + code: 200 + duration: 152.55141ms +- id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 93fcad95-1f29-4337-b3f1-146a6f477ea8 + status: 200 OK + code: 200 + duration: 127.917461ms +- id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 95719057-b97a-4bed-8788-5120d37a3acc + status: 200 OK + code: 200 + duration: 136.12024ms +- id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ba9cf311-9fa8-4df3-aff2-14a18c867436 + status: 200 OK + code: 200 + duration: 163.058656ms +- id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8a1b29fb-6258-4a8b-a444-666b4992b422 + status: 200 OK + code: 200 + duration: 155.454081ms +- id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8c641a7c-8d27-4640-9882-c61e1a990b70 + status: 200 OK + code: 200 + duration: 166.191665ms +- id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bdc7904e-a702-4f0f-9205-eac869267dc7 + status: 200 OK + code: 200 + duration: 145.895051ms +- id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 53f2df2b-7856-46ec-9e74-de519d510930 + status: 200 OK + code: 200 + duration: 136.499628ms +- id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 82f14d1a-e7a9-4666-a64e-76da236826b5 + status: 200 OK + code: 200 + duration: 139.114073ms +- id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 38a4ac2b-6cc6-4efc-b709-13e70c37d5e6 + status: 200 OK + code: 200 + duration: 159.945663ms +- id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4a0b104f-8346-4a63-91e2-0fa3d3ab4c62 + status: 200 OK + code: 200 + duration: 145.154677ms +- id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2e12fff7-a7d4-4f5b-81d3-5512f277832b + status: 200 OK + code: 200 + duration: 141.884895ms +- id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - af9cc8d3-a437-414c-b160-3fa3d1ec9f59 + status: 200 OK + code: 200 + duration: 147.841272ms +- id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d61ee271-e201-4306-b592-2cf025d33ffe + status: 200 OK + code: 200 + duration: 167.088919ms +- id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a9c95a63-7bb3-42eb-92ff-f9cea6dd7b06 + status: 200 OK + code: 200 + duration: 178.080552ms +- id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - af470067-ec33-4aea-af52-d3050c0584b6 + status: 200 OK + code: 200 + duration: 166.427442ms +- id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0746e438-29b3-47fb-b0b9-91848e66b52c + status: 200 OK + code: 200 + duration: 141.208011ms +- id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cc277a44-8f70-413e-b099-d6c607fa801d + status: 200 OK + code: 200 + duration: 242.753045ms +- id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:42:01.812358+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\"}}" + headers: + Content-Length: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 12cadbcb-1c15-4c54-816d-5f078c4a7352 + status: 200 OK + code: 200 + duration: 175.693409ms +- id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2495 + body: "{\"server\": {\"id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\", \"name\": \"tf-srv-practical-lehmann\", \"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-practical-lehmann\", \"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\": \"337a8d0e-10bb-4c15-a27e-77499535be00\", \"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:6c:a1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.081643+00:00\", \"modification_date\": \"2025-10-30T15:45:12.191229+00:00\", \"bootscript\": 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\": \"701\", \"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\": \"6b92b911-2865-4a52-a200-7c755e480ad2\", \"admin_password_encrypted_value\": \"jip7g2s/q0fdROlvguI4vyRtxnvAwDijaILvh2LP/+c/9eAatRcduX5AAFHsdFXenzcD6QIPM5lTz6kxqxnolGvFOU/EZctwZWxPFgybkTmD7C7bkJXhZspAOrwEuLQJAohxlWNQXHXcaR7YHW5QLcuBclAAIcJxveYHmFaRJQjS1SJv8vYAQxujFZPjDOPVMi9vGXMW0NoSVuWUMNRyxrqfrJ0t76X2pX7qM2JynZPi8fx4K57kFyMsCNpGI3on2nzvwaNYhB96dzmTeCvRrfZdsc4z5jdyu3cDwKshpaRtKMZrkcxF2aQnTRlOsczClULnbrqq1r2JZ1xZItZLu9RqmkY7xkjV2czXxPr6nZg7iVOm9cGU3Ypb8w1VQTQ8HyxHECZygtcv/195Q1dUDvBjETUh1fGpMBkcR1aEb91fA6eilbrQdgMRdSoS65DSSQGPQwls5EJOjiumlakdOue1Jt645YJGretDiX98lYTi/Sf1GZT8P3FdqwrSVwKC\"}}" + headers: + Content-Length: + - "2495" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9e2b95cf-5dba-4e15-997d-7534b9d7521e + status: 200 OK + code: 200 + duration: 196.319246ms +- id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5cac607a-58b4-47b0-b5a9-f6b5f452d5c9 + status: 404 Not Found + code: 404 + duration: 43.445036ms +- id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/337a8d0e-10bb-4c15-a27e-77499535be00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"337a8d0e-10bb-4c15-a27e-77499535be00\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9673e14a-15cc-47f1-88ea-cd440e7ca347 + status: 404 Not Found + code: 404 + duration: 39.319466ms +- id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/337a8d0e-10bb-4c15-a27e-77499535be00 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 489 + body: "{\"id\":\"337a8d0e-10bb-4c15-a27e-77499535be00\", \"name\":\"Windows Server 2022_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":25000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.260629Z\", \"updated_at\":\"2025-10-30T15:45:13.406397Z\", \"references\":[], \"parent_snapshot_id\":\"de729856-029a-44a0-8737-5ec5227304fe\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:45:13.406397Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "489" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b3e6591a-f272-44e8-b42a-0a58cc000436 + status: 200 OK + code: 200 + duration: 100.327862ms +- id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/337a8d0e-10bb-4c15-a27e-77499535be00 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f3a01b92-9f50-4e87-879e-43e649951cd9 + status: 204 No Content + code: 204 + duration: 181.642002ms +- id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/6b92b911-2865-4a52-a200-7c755e480ad2 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fe714670-191c-4a59-a2fd-77e16fc36908 + status: 204 No Content + code: 204 + duration: 108.883883ms +- id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"4ca5bbdc-9b95-4de3-a66a-8c5d6a74e289\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 709c6493-18be-4a9c-a893-a6c125d361aa + status: 404 Not Found + code: 404 + duration: 47.637942ms +- id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/6b92b911-2865-4a52-a200-7c755e480ad2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: "{\"message\":\"resource is not found\",\"resource\":\"ssh_key\",\"resource_id\":\"6b92b911-2865-4a52-a200-7c755e480ad2\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ceb9543e-9a42-4108-bf06-065c240c7888 + status: 404 Not Found + code: 404 + duration: 22.563842ms diff --git a/internal/services/instance/testdata/server-alter-tags.cassette.yaml b/internal/services/instance/testdata/server-alter-tags.cassette.yaml index 391c15884..5de02bf09 100644 --- a/internal/services/instance/testdata/server-alter-tags.cassette.yaml +++ b/internal/services/instance/testdata/server-alter-tags.cassette.yaml @@ -1,2146 +1,1694 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:26 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1fa6e8f3-e28a-4c08-874a-8bd14e3596e5 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 37.865645ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:26 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 566bf4ba-4bc9-4ad5-9ece-cfc88e0fb27c - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 80.006925ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2ad54127-46a7-43e7-83db-ed4672522734 - status: 200 OK - code: 200 - duration: 44.033298ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 255 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1794 - 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", "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: - - "1794" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:27 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b66516f4-3ed1-42f4-ba8e-8878d4b2bb67 - status: 201 Created - code: 201 - duration: 1.093657355s - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1794 - 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", "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: - - "1794" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e20827c5-9d3b-4269-85d6-5bdd37a6cc10 - status: 200 OK - code: 200 - duration: 137.031085ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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: 1794 - 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", "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: - - "1794" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9eb9e2ac-d38a-4daa-bb89-14dccc9f6999 - status: 200 OK - code: 200 - duration: 134.489543ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1748 - 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", "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: - - "1748" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2eb67ac7-36a6-470c-8f9a-a43e1e01ef2c - status: 200 OK - code: 200 - duration: 136.460068ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c - 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": "a6c0f582-793b-401e-882e-4331ce6f056c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1644d747-00bb-4bf0-bfd1-a0f6ff2748e9 - status: 404 Not Found - code: 404 - duration: 31.115964ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3df5cea6-a5e3-46d7-a6a6-9631cae72107 - status: 200 OK - code: 200 - duration: 81.253237ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68/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:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 35822fcf-e478-48b8-becb-30547e05a514 - status: 200 OK - code: 200 - duration: 95.450213ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68/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:54:28 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 995f9f37-c821-4b6c-ad31-85f6a361c910 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 86.100129ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1794 - 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", "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: - - "1794" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f2de566a-4146-477c-8ffe-ec348b635a85 - status: 200 OK - code: 200 - duration: 130.421366ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1748 - 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", "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: - - "1748" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e244ca6a-18dc-412a-9099-e3316857aaed - status: 200 OK - code: 200 - duration: 145.090316ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c - 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": "a6c0f582-793b-401e-882e-4331ce6f056c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 00744b90-5a75-4cb4-a9dc-d7549517627a - status: 404 Not Found - code: 404 - duration: 30.425713ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 28f639e8-6d14-4714-b78f-24dc5e435c28 - status: 200 OK - code: 200 - duration: 75.007848ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68/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:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 58db6f36-8fef-4671-a007-d4bfc8f1635b - status: 200 OK - code: 200 - duration: 96.978451ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68/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:54:29 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9ca19156-91bf-465c-b214-f9e42be2097c - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 112.498131ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1794 - 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", "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: - - "1794" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ad0ee41a-e5b8-4984-8be6-b6b6b6a829ee - status: 200 OK - code: 200 - duration: 143.24238ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c - 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": "a6c0f582-793b-401e-882e-4331ce6f056c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - adcad313-6f7b-4ab9-bb21-86fc62245dad - status: 404 Not Found - code: 404 - duration: 31.861929ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a240096e-ddbe-49f0-86a5-ef9ed58e6214 - status: 200 OK - code: 200 - duration: 82.8594ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68/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:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2828045c-f3c3-4929-a0b0-b8fde273440b - status: 200 OK - code: 200 - duration: 99.358392ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68/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:54:30 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ba8b8917-8297-42e8-9154-eb0d7f21d9e7 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 113.313877ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1748 - 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", "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: - - "1748" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c2043a9b-6f2e-42a6-8915-1030fac371bd - status: 200 OK - code: 200 - duration: 150.541109ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 18 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"tags":["front"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+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: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1787 - 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": "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: - - "1787" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 542f2004-7f8c-4b7a-8105-f2a3b8e9052e - status: 200 OK - code: 200 - duration: 200.626634ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1787 - 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": "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: - - "1787" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cfca5593-a685-4d2e-98d4-49a8462bddd5 - status: 200 OK - code: 200 - duration: 176.959018ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1787 - 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": "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: - - "1787" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e9d590fa-b712-412b-aa03-78690cf85640 - status: 200 OK - code: 200 - duration: 206.681577ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c - 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": "a6c0f582-793b-401e-882e-4331ce6f056c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e0be09b2-6713-44fc-891c-f9666938bed5 - status: 404 Not Found - code: 404 - duration: 30.833536ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1b2f3d04-3a36-4975-9bce-95ab764f8b82 - status: 200 OK - code: 200 - duration: 237.32591ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68/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:54:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6815dd7f-984b-483a-adca-28457d2c34ce - status: 200 OK - code: 200 - duration: 269.47198ms - - 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/7c779c53-80f4-49e5-b446-5fc017816e68/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:54:31 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ed4d8168-dad8-4370-8172-1993c8f703b2 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 79.348375ms - - 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/7c779c53-80f4-49e5-b446-5fc017816e68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1741 - 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": "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: - - "1741" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - da01fbae-fd3d-4273-af16-34bc476f8804 - status: 200 OK - code: 200 - duration: 156.090886ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1741 - 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": "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: - - "1741" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 799572c7-5904-4bf0-914c-2953231aa186 - status: 200 OK - code: 200 - duration: 314.181805ms - - 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/volumes/a6c0f582-793b-401e-882e-4331ce6f056c - 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": "a6c0f582-793b-401e-882e-4331ce6f056c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7b313f9c-a5e3-4c99-8850-7ad1b26ed796 - status: 404 Not Found - code: 404 - duration: 28.771811ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f43e521a-f4aa-4378-89d8-892eaff4a8cf - status: 200 OK - code: 200 - duration: 243.774017ms - - 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/7c779c53-80f4-49e5-b446-5fc017816e68/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:54:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2498cf76-6af2-4839-8c2f-8ffe85f90ac1 - status: 200 OK - code: 200 - duration: 100.732552ms - - 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/7c779c53-80f4-49e5-b446-5fc017816e68/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:54:33 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8caad61f-75c7-4cc1-a225-ab61d01305ab - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 167.892697ms - - 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/7c779c53-80f4-49e5-b446-5fc017816e68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1787 - 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": "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: - - "1787" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 741fed77-e1e1-4599-bd37-c609ca666e87 - status: 200 OK - code: 200 - duration: 295.280201ms - - 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/7c779c53-80f4-49e5-b446-5fc017816e68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1787 - 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": "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: - - "1787" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f8e732ee-4424-4c5f-a99d-76f27861afbe - status: 200 OK - code: 200 - duration: 131.48709ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8008b1cc-3e59-4002-8233-a3bdb8b06b10 - status: 200 OK - code: 200 - duration: 248.611704ms - - id: 39 - 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/7c779c53-80f4-49e5-b446-5fc017816e68/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:34 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/283857d0-a57d-4fbe-89f5-a416cbbd324c - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0a36272e-f333-4f06-9df2-5872c6647d3a - status: 202 Accepted - code: 202 - duration: 275.320157ms - - 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/7c779c53-80f4-49e5-b446-5fc017816e68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1763 - 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": "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: - - "1763" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f81e0c7f-1799-40b5-9e45-0e6c632f4a1a - status: 200 OK - code: 200 - duration: 273.836584ms - - 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/7c779c53-80f4-49e5-b446-5fc017816e68 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1943 - 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": "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: - - "1943" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d7a44226-ae4c-4673-918e-1b0c33bca484 - status: 200 OK - code: 200 - duration: 208.846409ms - - id: 42 - 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/7c779c53-80f4-49e5-b446-5fc017816e68/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:40 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f5310853-db63-4556-9109-a3c294e8dd71 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a2413efa-5b6d-4e5f-8955-6362e2b1774d - status: 202 Accepted - code: 202 - duration: 308.163777ms - - 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/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:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 58313275-b020-4d34-8e71-27af9db6c267 - status: 200 OK - code: 200 - duration: 128.424135ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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 - 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": "7c779c53-80f4-49e5-b446-5fc017816e68"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8edc2bee-63b3-4f6d-990d-c49a00e3e47b - status: 404 Not Found - code: 404 - duration: 43.728672ms - - 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/volumes/a6c0f582-793b-401e-882e-4331ce6f056c - 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": "a6c0f582-793b-401e-882e-4331ce6f056c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9c915792-5fa7-43e4-b0cf-c2ba49db2f94 - status: 404 Not Found - code: 404 - duration: 22.461273ms - - id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c48c2dfb-973a-476a-a5a7-f74989ae85c7 - status: 200 OK - code: 200 - duration: 90.456021ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a6c0f582-793b-401e-882e-4331ce6f056c - 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: - - 5e789048-095b-4a55-8996-82794192c539 - status: 204 No Content - code: 204 - duration: 148.470407ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c779c53-80f4-49e5-b446-5fc017816e68 - 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": "7c779c53-80f4-49e5-b446-5fc017816e68"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f81d3672-861f-4311-a1df-32a043bab41d - status: 404 Not Found - code: 404 - duration: 48.667157ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dd98315f-3c9b-449e-9b81-3f0233de4223 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 37.246823ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8bbd8869-0f30-4ddf-bc1c-dd94036d4ffb + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 86.339785ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a87a6887-2acc-40ab-a622-1d5856280bb4 + status: 200 OK + code: 200 + duration: 56.988001ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 257 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-musing-satoshi\",\"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\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1752 + body: "{\"server\": {\"id\": \"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"name\": \"tf-srv-musing-satoshi\", \"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-musing-satoshi\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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:6c:99\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.477044+00:00\", \"modification_date\": \"2025-10-30T15:41:47.477044+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d673de81-8670-48f0-bac9-b65f7136cd8d + status: 201 Created + code: 201 + duration: 1.034127037s +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1752 + body: "{\"server\": {\"id\": \"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"name\": \"tf-srv-musing-satoshi\", \"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-musing-satoshi\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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:6c:99\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.477044+00:00\", \"modification_date\": \"2025-10-30T15:41:47.477044+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ffeb12af-552f-45b7-9b42-326827ce2f9c + status: 200 OK + code: 200 + duration: 125.497142ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1752 + body: "{\"server\": {\"id\": \"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"name\": \"tf-srv-musing-satoshi\", \"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-musing-satoshi\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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:6c:99\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.477044+00:00\", \"modification_date\": \"2025-10-30T15:41:47.477044+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 588d206c-c99d-4040-aa1e-d5eb80f53342 + status: 200 OK + code: 200 + duration: 157.761319ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1752 + body: "{\"server\": {\"id\": \"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"name\": \"tf-srv-musing-satoshi\", \"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-musing-satoshi\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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:6c:99\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.477044+00:00\", \"modification_date\": \"2025-10-30T15:41:47.477044+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3047038b-667d-47fa-9fd8-b592f143b8af + status: 200 OK + code: 200 + duration: 149.917347ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ef98f10c-62ce-43f1-99f6-698dfeb1dd16 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 48a73ae3-2e71-4ca3-9931-e7645e3d2eb6 + status: 404 Not Found + code: 404 + duration: 35.186107ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ef98f10c-62ce-43f1-99f6-698dfeb1dd16 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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-30T15:41:47.602714Z\", \"updated_at\":\"2025-10-30T15:41:47.602714Z\", \"references\":[{\"id\":\"816cc06d-ba5e-4733-9ec0-6694bdc518fe\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"created_at\":\"2025-10-30T15:41:47.602714Z\", \"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: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 233b6e04-0866-4f1e-862f-cce84324e15a + status: 200 OK + code: 200 + duration: 86.052106ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ebafc226-95d0-4f07-b345-944bde839bd8 + status: 200 OK + code: 200 + duration: 104.776527ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8ff65e29-e635-4292-8769-21ee92541d26 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 85.771419ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1752 + body: "{\"server\": {\"id\": \"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"name\": \"tf-srv-musing-satoshi\", \"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-musing-satoshi\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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:6c:99\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.477044+00:00\", \"modification_date\": \"2025-10-30T15:41:47.477044+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f934fff0-9a81-4ba5-97eb-052861aa1d5c + status: 200 OK + code: 200 + duration: 150.80436ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1752 + body: "{\"server\": {\"id\": \"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"name\": \"tf-srv-musing-satoshi\", \"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-musing-satoshi\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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:6c:99\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.477044+00:00\", \"modification_date\": \"2025-10-30T15:41:47.477044+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 99ebc032-5eb6-472a-9210-b1d932d0f7d2 + status: 200 OK + code: 200 + duration: 143.747284ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ef98f10c-62ce-43f1-99f6-698dfeb1dd16 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 14fc3347-dc11-49cb-9ba1-4f7db207fdea + status: 404 Not Found + code: 404 + duration: 26.959758ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ef98f10c-62ce-43f1-99f6-698dfeb1dd16 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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-30T15:41:47.602714Z\", \"updated_at\":\"2025-10-30T15:41:47.602714Z\", \"references\":[{\"id\":\"816cc06d-ba5e-4733-9ec0-6694bdc518fe\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"created_at\":\"2025-10-30T15:41:47.602714Z\", \"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: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ae0a4fa0-b657-4d1f-b9e9-61b3048f5e43 + status: 200 OK + code: 200 + duration: 93.997729ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4d9fb938-fd2a-4a07-9985-82fc380abebe + status: 200 OK + code: 200 + duration: 95.184095ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1814da5a-44b6-463a-8414-c99b1b80b252 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 103.622323ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1752 + body: "{\"server\": {\"id\": \"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"name\": \"tf-srv-musing-satoshi\", \"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-musing-satoshi\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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:6c:99\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.477044+00:00\", \"modification_date\": \"2025-10-30T15:41:47.477044+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ddf0627f-1aa2-40a0-a086-ba066d94e258 + status: 200 OK + code: 200 + duration: 177.739583ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ef98f10c-62ce-43f1-99f6-698dfeb1dd16 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3f4694e2-6aa7-4704-8d74-f28b801e5169 + status: 404 Not Found + code: 404 + duration: 24.946141ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ef98f10c-62ce-43f1-99f6-698dfeb1dd16 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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-30T15:41:47.602714Z\", \"updated_at\":\"2025-10-30T15:41:47.602714Z\", \"references\":[{\"id\":\"816cc06d-ba5e-4733-9ec0-6694bdc518fe\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"created_at\":\"2025-10-30T15:41:47.602714Z\", \"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: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 485d53c6-4d6a-48c6-b7c0-fdb551165c4b + status: 200 OK + code: 200 + duration: 101.506664ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 61300091-8dfe-4ed8-9b1e-2c01e28b3bc6 + status: 200 OK + code: 200 + duration: 128.014655ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - edd45be7-2bd0-4146-a732-1cb5d6c0ab40 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 117.060278ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1752 + body: "{\"server\": {\"id\": \"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"name\": \"tf-srv-musing-satoshi\", \"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-musing-satoshi\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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:6c:99\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.477044+00:00\", \"modification_date\": \"2025-10-30T15:41:47.477044+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a20bb456-f64d-475c-9547-dc53950ae0a2 + status: 200 OK + code: 200 + duration: 136.892276ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 18 + host: api.scaleway.com + body: "{\"tags\":[\"front\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1745 + body: "{\"server\": {\"id\": \"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"name\": \"tf-srv-musing-satoshi\", \"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-musing-satoshi\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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:6c:99\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.477044+00:00\", \"modification_date\": \"2025-10-30T15:41:50.626751+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - abd515a2-7b2a-4959-832f-74ae3333c301 + status: 200 OK + code: 200 + duration: 189.47752ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1745 + body: "{\"server\": {\"id\": \"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"name\": \"tf-srv-musing-satoshi\", \"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-musing-satoshi\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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:6c:99\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.477044+00:00\", \"modification_date\": \"2025-10-30T15:41:50.626751+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5e0baff0-8a5b-4df5-bc6c-7e52f5b63022 + status: 200 OK + code: 200 + duration: 155.218771ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1745 + body: "{\"server\": {\"id\": \"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"name\": \"tf-srv-musing-satoshi\", \"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-musing-satoshi\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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:6c:99\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.477044+00:00\", \"modification_date\": \"2025-10-30T15:41:50.626751+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6e6cc844-aa2b-49a7-b355-3c714746c7d9 + status: 200 OK + code: 200 + duration: 138.355031ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ef98f10c-62ce-43f1-99f6-698dfeb1dd16 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 435bcfea-af6a-49e3-969a-8ca87d09e8fb + status: 404 Not Found + code: 404 + duration: 30.970441ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ef98f10c-62ce-43f1-99f6-698dfeb1dd16 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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-30T15:41:47.602714Z\", \"updated_at\":\"2025-10-30T15:41:47.602714Z\", \"references\":[{\"id\":\"816cc06d-ba5e-4733-9ec0-6694bdc518fe\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"created_at\":\"2025-10-30T15:41:47.602714Z\", \"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: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b2edb9b6-bb8c-47f5-98b6-cc0c3ac64f4f + status: 200 OK + code: 200 + duration: 75.109181ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 87232f1a-b869-41b1-9221-ed0f7d26c47a + status: 200 OK + code: 200 + duration: 104.636735ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 16a53876-0948-461f-9812-d5f470786bfc + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 88.784893ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1745 + body: "{\"server\": {\"id\": \"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"name\": \"tf-srv-musing-satoshi\", \"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-musing-satoshi\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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:6c:99\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.477044+00:00\", \"modification_date\": \"2025-10-30T15:41:50.626751+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fd2d27ee-0303-4b08-b423-31ab755893bc + status: 200 OK + code: 200 + duration: 140.261236ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1745 + body: "{\"server\": {\"id\": \"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"name\": \"tf-srv-musing-satoshi\", \"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-musing-satoshi\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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:6c:99\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.477044+00:00\", \"modification_date\": \"2025-10-30T15:41:50.626751+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 848c9e1b-5896-4902-a34f-e20f711ecf6e + status: 200 OK + code: 200 + duration: 161.468144ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ef98f10c-62ce-43f1-99f6-698dfeb1dd16 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 39d8e461-9de8-4f1b-b17d-be49527c2e4d + status: 404 Not Found + code: 404 + duration: 22.368607ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ef98f10c-62ce-43f1-99f6-698dfeb1dd16 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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-30T15:41:47.602714Z\", \"updated_at\":\"2025-10-30T15:41:47.602714Z\", \"references\":[{\"id\":\"816cc06d-ba5e-4733-9ec0-6694bdc518fe\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"created_at\":\"2025-10-30T15:41:47.602714Z\", \"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: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 72565ede-2270-439b-af17-5fd8583cf796 + status: 200 OK + code: 200 + duration: 85.034257ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8c12a7b7-417b-45ea-8b98-c81609fbe79a + status: 200 OK + code: 200 + duration: 88.348554ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b5c73fe6-ee13-4633-92ba-c2cdfbf1d485 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 112.868627ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1745 + body: "{\"server\": {\"id\": \"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"name\": \"tf-srv-musing-satoshi\", \"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-musing-satoshi\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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:6c:99\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.477044+00:00\", \"modification_date\": \"2025-10-30T15:41:50.626751+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c2733014-6a92-4bd1-93b1-e788da6758f9 + status: 200 OK + code: 200 + duration: 145.088611ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1745 + body: "{\"server\": {\"id\": \"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"name\": \"tf-srv-musing-satoshi\", \"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-musing-satoshi\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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:6c:99\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.477044+00:00\", \"modification_date\": \"2025-10-30T15:41:50.626751+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8b21af9c-0ff4-4845-a9d6-6b6c56101cf5 + status: 200 OK + code: 200 + duration: 158.105567ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ef98f10c-62ce-43f1-99f6-698dfeb1dd16 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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-30T15:41:47.602714Z\", \"updated_at\":\"2025-10-30T15:41:47.602714Z\", \"references\":[{\"id\":\"816cc06d-ba5e-4733-9ec0-6694bdc518fe\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"created_at\":\"2025-10-30T15:41:47.602714Z\", \"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: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 28bfcb80-0cb1-4ea8-94dd-44ac53c3683d + status: 200 OK + code: 200 + duration: 88.403778ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"1d8f9eb0-b03a-41c9-ab0d-bf7c6186bdf9\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943/action\", \"href_result\": \"/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"started_at\": \"2025-10-30T15:41:53.018151+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1d8f9eb0-b03a-41c9-ab0d-bf7c6186bdf9 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f8170d64-d3cc-4008-8287-96ca257b67fe + status: 202 Accepted + code: 202 + duration: 261.664391ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1767 + body: "{\"server\": {\"id\": \"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"name\": \"tf-srv-musing-satoshi\", \"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-musing-satoshi\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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:6c:99\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.477044+00:00\", \"modification_date\": \"2025-10-30T15:41:52.811556+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f60bdd08-c8ad-44ec-bf3d-e9c5b5498f3e + status: 200 OK + code: 200 + duration: 136.895023ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1901 + body: "{\"server\": {\"id\": \"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"name\": \"tf-srv-musing-satoshi\", \"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-musing-satoshi\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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:6c:99\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.477044+00:00\", \"modification_date\": \"2025-10-30T15:41:55.364540+00:00\", \"bootscript\": 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\": \"101\", \"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}}" + headers: + Content-Length: + - "1901" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 40372f65-db4c-4e4d-bd8a-a8663ce4ac04 + status: 200 OK + code: 200 + duration: 141.661755ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"e918bd73-9a0a-4bea-8baa-f92a216001f4\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943/action\", \"href_result\": \"/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"started_at\": \"2025-10-30T15:41:58.584923+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e918bd73-9a0a-4bea-8baa-f92a216001f4 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a18075d7-a2b2-46d7-acc8-2bb6d5d8ac37 + status: 202 Accepted + code: 202 + duration: 280.246238ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1864 + body: "{\"server\": {\"id\": \"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"name\": \"tf-srv-musing-satoshi\", \"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-musing-satoshi\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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:6c:99\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.477044+00:00\", \"modification_date\": \"2025-10-30T15:41:58.348962+00:00\", \"bootscript\": 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\": \"101\", \"node_id\": \"46\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1864" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - df0cfb37-31ca-4a2e-95f7-b13129580490 + status: 200 OK + code: 200 + duration: 156.779402ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1864 + body: "{\"server\": {\"id\": \"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"name\": \"tf-srv-musing-satoshi\", \"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-musing-satoshi\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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:6c:99\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.477044+00:00\", \"modification_date\": \"2025-10-30T15:41:58.348962+00:00\", \"bootscript\": 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\": \"101\", \"node_id\": \"46\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1864" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 57609f46-51ce-4ca9-bad7-01074b5b97ea + status: 200 OK + code: 200 + duration: 146.16296ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1864 + body: "{\"server\": {\"id\": \"9e0ab204-1ff5-4482-ae1b-cb479f07f943\", \"name\": \"tf-srv-musing-satoshi\", \"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-musing-satoshi\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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:6c:99\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.477044+00:00\", \"modification_date\": \"2025-10-30T15:41:58.348962+00:00\", \"bootscript\": 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\": \"101\", \"node_id\": \"46\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1864" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cd136db1-8112-4b94-b339-39cd758a725b + status: 200 OK + code: 200 + duration: 145.184546ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"9e0ab204-1ff5-4482-ae1b-cb479f07f943\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4195be5e-7aeb-4357-87b1-c9b91d6bd3c1 + status: 404 Not Found + code: 404 + duration: 46.731947ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ef98f10c-62ce-43f1-99f6-698dfeb1dd16 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8e888253-f4b9-4b33-bd21-af49585c95a5 + status: 404 Not Found + code: 404 + duration: 25.274779ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ef98f10c-62ce-43f1-99f6-698dfeb1dd16 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"ef98f10c-62ce-43f1-99f6-698dfeb1dd16\", \"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-30T15:41:47.602714Z\", \"updated_at\":\"2025-10-30T15:42:10.085626Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:10.085626Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3c84981d-f1ce-4ec8-9f4f-907dd1ac531f + status: 200 OK + code: 200 + duration: 83.450711ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ef98f10c-62ce-43f1-99f6-698dfeb1dd16 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 27e31e30-6b08-42ba-92f1-d12cbfc3428a + status: 204 No Content + code: 204 + duration: 148.161912ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0ab204-1ff5-4482-ae1b-cb479f07f943 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"9e0ab204-1ff5-4482-ae1b-cb479f07f943\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8c98a4e1-0353-4be0-9279-570eb9a0b805 + status: 404 Not Found + code: 404 + duration: 36.910735ms 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 8d8d9fbc0..8b77f90cc 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 @@ -1,6034 +1,4648 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 127 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 388 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 09a26af7-fbf4-4fd2-ba34-ec5a7d2c1886 - status: 200 OK - code: 200 - duration: 195.13686ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 388 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c7a18efc-3711-4b98-b882-12c8f8b32e5e - status: 200 OK - code: 200 - duration: 96.604413ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 389 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5cc20bdd-8ee7-47e4-b376-16e8c76628dc - status: 200 OK - code: 200 - duration: 91.199238ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 389 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5e4c0c2c-00ba-4642-9faf-697773ccf28f - status: 200 OK - code: 200 - duration: 83.639852ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:02 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1f570a32-2056-4a3e-a373-bb80dc3354c7 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 55.522388ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:02 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7cdf3096-0474-46bd-b99a-1ed1726ba7c7 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 50.083047ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2f4cf88d-1b56-4966-8104-afeeaa34b704 - status: 200 OK - code: 200 - duration: 47.356739ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 305 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1807 - uncompressed: false - 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: - - "1807" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 511f497b-381e-4bb1-9abd-6cf55383163a - status: 201 Created - code: 201 - duration: 1.298491755s - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 1807 - uncompressed: false - 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: - - "1807" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f79cce52-83bd-4b2a-bfbe-3769ad7ffebb - status: 200 OK - code: 200 - duration: 147.40351ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1807 - uncompressed: false - 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: - - "1807" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fb86b060-6bcd-452b-9d4a-3cbd82f61523 - status: 200 OK - code: 200 - duration: 141.923915ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a24b0773-31fb-4bb4-9e1b-cccfa17e0fa2 - status: 200 OK - code: 200 - duration: 91.248841ms - - id: 11 - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4df89dea-a72d-4670-9faa-3576d4a85bef - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7d1625b6-5d71-497f-8a8a-4fef22d7eade - status: 202 Accepted - code: 202 - duration: 281.328559ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1829 - uncompressed: false - 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: - - "1829" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6af19d2f-5a4f-4d0c-b2ae-7e4b07c119f0 - status: 200 OK - code: 200 - duration: 129.325328ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2009 - uncompressed: false - 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: - - "2009" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 112c5854-a569-4814-999f-07219dbc1631 - status: 200 OK - code: 200 - duration: 134.36353ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 56 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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.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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2088 - uncompressed: false - 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: - - "2088" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c5225cfe-4ae1-4b51-b4d6-c3bc54263e13 - status: 200 OK - code: 200 - duration: 431.828357ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2042 - uncompressed: false - 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: - - "2042" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ee88acd8-b13d-4894-8bdd-0349e9c9b213 - status: 200 OK - code: 200 - duration: 156.890002ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2042 - uncompressed: false - 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: - - "2042" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 00235a4b-35de-4a49-8cd5-7c56427eaf01 - status: 200 OK - code: 200 - duration: 144.733894ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2042 - uncompressed: false - 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: - - "2042" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f8e15029-a336-41cc-ac75-ee473e021356 - status: 200 OK - code: 200 - duration: 136.705925ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 2042 - uncompressed: false - 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: - - "2042" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6fc236df-b5cc-44a4-9ee1-041790e2370c - status: 200 OK - code: 200 - duration: 144.175754ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2042 - uncompressed: false - 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: - - "2042" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 56642427-e24a-4188-8d41-14c0d7355a7f - status: 200 OK - code: 200 - duration: 178.263828ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2042 - uncompressed: false - 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: - - "2042" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 23d4a18d-1b24-41f1-b93f-f49fac78bb74 - status: 200 OK - code: 200 - duration: 270.608779ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2088 - uncompressed: false - 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: - - "2088" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8f9b32fc-0e8d-491f-ac2f-abaad8567613 - status: 200 OK - code: 200 - duration: 146.014119ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2042 - uncompressed: false - 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: - - "2042" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - edd80706-753b-4073-84fc-89f28ffe7df5 - status: 200 OK - code: 200 - duration: 165.603221ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2088 - uncompressed: false - 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: - - "2088" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 34c9ff0f-ff98-47b1-bc13-7385c7c08fcb - status: 200 OK - code: 200 - duration: 129.153072ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2088 - uncompressed: false - 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: - - "2088" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3a4ea0a2-2c72-4a05-a0a0-9c2a391e4767 - status: 200 OK - code: 200 - duration: 155.571416ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2088 - uncompressed: false - 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: - - "2088" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 37f5c5a9-a774-41d1-a6e9-3ce0bee5174c - status: 200 OK - code: 200 - duration: 148.12396ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - 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": "5eba7122-6392-40c0-b142-da2b06e19b34"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 33cd8e42-1e24-42c3-9d33-1cb152c8a991 - status: 404 Not Found - code: 404 - duration: 22.331249ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c8f7f0f6-4176-4e5e-868b-9c3c10adb00e - status: 200 OK - code: 200 - duration: 90.141433ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/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:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 10f7d348-c7ef-4466-bc5a-088ab51c488d - status: 200 OK - code: 200 - duration: 116.8086ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8/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:54:57 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cca9efcb-5b6f-4436-b7b3-92a0caff97e7 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 103.029964ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2088 - uncompressed: false - 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: - - "2088" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a253fc85-fb0c-4882-8bed-29e5476e62d1 - status: 200 OK - code: 200 - duration: 130.567209ms - - 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/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 389 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 23a78ee6-fd2e-4303-bb04-9fd182f72b9b - status: 200 OK - code: 200 - duration: 77.265776ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2042 - uncompressed: false - 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: - - "2042" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d0676b1d-52ff-40a3-a35d-ea3ef9ab7561 - status: 200 OK - code: 200 - duration: 145.057666ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - 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": "5eba7122-6392-40c0-b142-da2b06e19b34"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 325da4d0-25f3-43b6-93c6-8afd574d6800 - status: 404 Not Found - code: 404 - duration: 31.789366ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e4a14266-695e-4762-82ee-73558e1b08f5 - status: 200 OK - code: 200 - duration: 94.330527ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8/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:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5eefbd29-3f27-4f5e-84f6-3e0cf99a9c4d - status: 200 OK - code: 200 - duration: 99.24125ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8/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:54:58 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c6c61baf-8f91-4df7-a496-319b58adfe4b - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 96.533467ms - - 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/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 389 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2a97f6fc-05ce-46dd-a4d6-c195e17d047f - status: 200 OK - code: 200 - duration: 95.808801ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2088 - uncompressed: false - 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: - - "2088" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ccb9d56e-aadc-4c00-bc96-493cb304c55c - status: 200 OK - code: 200 - duration: 148.284751ms - - 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/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - 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": "5eba7122-6392-40c0-b142-da2b06e19b34"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4a1c6654-c55d-432e-b4ff-c5de3d07623d - status: 404 Not Found - code: 404 - duration: 27.866951ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 97c447bb-aa14-437d-8132-c6b9ccd6bae7 - status: 200 OK - code: 200 - duration: 98.519099ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8/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:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d7740efa-3436-4e0e-ab7c-83073381364c - status: 200 OK - code: 200 - duration: 105.168584ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8/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:54:58 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 09cb91e0-00d0-4275-bb86-71252f99ca1f - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 104.993978ms - - id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 129 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 390 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5d317aae-520f-47b1-af6b-51a1de4b090e - status: 200 OK - code: 200 - duration: 231.695038ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/bc6eeccc-d15c-4db1-af6e-dbaed8e4c007 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 390 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5b6676da-a678-4097-87f8-b9c83178f03b - status: 200 OK - code: 200 - duration: 76.436465ms - - 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/file/v1alpha1/regions/fr-par/filesystems/bc6eeccc-d15c-4db1-af6e-dbaed8e4c007 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 391 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 13802f9a-49f9-4676-9fe9-af1640e71eaa - status: 200 OK - code: 200 - duration: 92.489236ms - - 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/file/v1alpha1/regions/fr-par/filesystems/bc6eeccc-d15c-4db1-af6e-dbaed8e4c007 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 391 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e22c625b-fdc3-4776-a147-5f2716bb7525 - status: 200 OK - code: 200 - duration: 85.328395ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2088 - uncompressed: false - 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: - - "2088" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9b63e95f-0207-4d3f-a1c7-a619e4424954 - status: 200 OK - code: 200 - duration: 144.103834ms - - id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 56 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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.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: 2042 - uncompressed: false - 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: - - "2042" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2f5b20f4-2faa-4604-adce-b622c9f48985 - status: 200 OK - code: 200 - duration: 483.777247ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2088 - uncompressed: false - 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: - - "2088" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1ff0805f-65c3-40b0-b442-5aad92521216 - status: 200 OK - code: 200 - duration: 152.308237ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2009 - uncompressed: false - 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: - - "2009" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 85894768-01c1-4e20-87ee-4d8546fd45e7 - status: 200 OK - code: 200 - duration: 159.39414ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 56 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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.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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2088 - uncompressed: false - 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: - - "2088" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 486491bd-de74-46ba-bdf7-4909c80eb4e9 - status: 200 OK - code: 200 - duration: 431.69577ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2042 - uncompressed: false - 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: - - "2042" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 06aef663-9a6a-46b0-8fdf-ae94f409f714 - status: 200 OK - code: 200 - duration: 129.14824ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2088 - uncompressed: false - 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: - - "2088" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8afc5221-fa38-4b11-8b05-19323594463a - status: 200 OK - code: 200 - duration: 150.741792ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2088 - uncompressed: false - 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: - - "2088" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9cfce93c-c25e-49fc-9874-49a1f76ed8da - status: 200 OK - code: 200 - duration: 135.91762ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2042 - uncompressed: false - 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: - - "2042" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 05cff47e-c1b1-497d-8d0a-d43011d66b99 - status: 200 OK - code: 200 - duration: 137.874641ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - 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": "5eba7122-6392-40c0-b142-da2b06e19b34"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c71bfac4-ccf9-4458-9502-ec9e7dc7b2d5 - status: 404 Not Found - code: 404 - duration: 35.176431ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - caf29c64-dc6a-4c34-8fa4-7111db36b2c8 - status: 200 OK - code: 200 - duration: 89.09998ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8/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:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 550fa2ad-a6a8-4d0b-b815-1b689abc7495 - status: 200 OK - code: 200 - duration: 88.90737ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/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:55:16 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e66426d4-90e5-4ca3-b8ea-53b6e5282649 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 126.167037ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2042 - uncompressed: false - 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: - - "2042" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 17ae8ba0-2ad4-4db8-afbc-6704eb05a073 - status: 200 OK - code: 200 - duration: 163.714162ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/bc6eeccc-d15c-4db1-af6e-dbaed8e4c007 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 391 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 47a28bb3-1269-49d9-b00d-85ff9cec2eaa - status: 200 OK - code: 200 - duration: 86.409349ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 389 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 622a3c58-c263-4166-a54a-ff86a922009e - status: 200 OK - code: 200 - duration: 88.026894ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2042 - uncompressed: false - 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: - - "2042" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 57a1ea45-f724-4beb-a16e-79ea2b72967f - status: 200 OK - code: 200 - duration: 146.211081ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - 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": "5eba7122-6392-40c0-b142-da2b06e19b34"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 63619289-a2cd-4d3a-bb8d-c25e1c7012f0 - status: 404 Not Found - code: 404 - duration: 30.280626ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 41fa3e11-060d-4aba-a9de-33bc1be56a3f - status: 200 OK - code: 200 - duration: 77.345369ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/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:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - af817e05-ec26-41b4-ab1f-f1d335aa1f64 - status: 200 OK - code: 200 - duration: 111.745789ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/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:55:18 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 35bb24cb-aeaf-411d-92d4-9153f356bcb0 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 108.520477ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 389 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9c7bd413-f5dd-4c69-a88d-bfa0e19c09fd - status: 200 OK - code: 200 - duration: 76.461747ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/bc6eeccc-d15c-4db1-af6e-dbaed8e4c007 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 391 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6a3b27ac-e563-4d41-b787-f7a47429dc70 - status: 200 OK - code: 200 - duration: 87.27117ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2088 - uncompressed: false - 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: - - "2088" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f751cc54-1419-4bbc-9c63-61c75918d633 - status: 200 OK - code: 200 - duration: 123.169993ms - - 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/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - 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": "5eba7122-6392-40c0-b142-da2b06e19b34"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 412e22b0-329c-48bc-8bf1-996d23df8b5c - status: 404 Not Found - code: 404 - duration: 26.046518ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8cb2c798-e533-4083-ab2f-3efb84b6711d - status: 200 OK - code: 200 - duration: 113.294415ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8/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:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 67508d9d-cd32-4a88-b038-c2bdc216ab29 - status: 200 OK - code: 200 - duration: 101.556074ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/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:55:18 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ef7f6839-a9b3-4d13-b9fd-b18c4007ac85 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 84.691868ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2088 - uncompressed: false - 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: - - "2088" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1c90ae2c-c8ba-4e9a-a382-6c1cfab9ad80 - status: 200 OK - code: 200 - duration: 132.396758ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 56 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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.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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2169 - uncompressed: false - 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: - - "2169" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 48cfbbfc-88c7-4a64-86a6-25b869a8a94d - status: 200 OK - code: 200 - duration: 438.407522ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2169 - uncompressed: false - 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: - - "2169" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b5ebb1cd-3025-419f-b99b-f47667bd1300 - status: 200 OK - code: 200 - duration: 132.454857ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2123 - uncompressed: false - 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: - - "2123" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bd72ab47-f93f-452b-9fcb-4fe4c6993529 - status: 200 OK - code: 200 - duration: 158.138969ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2169 - uncompressed: false - 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: - - "2169" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6823ce0b-8f5e-4129-811f-872bfbdb54b7 - status: 200 OK - code: 200 - duration: 142.494643ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2123 - uncompressed: false - 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: - - "2123" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b57b416d-7c21-45b1-a805-3a51389018f2 - status: 200 OK - code: 200 - duration: 147.489374ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - 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": "5eba7122-6392-40c0-b142-da2b06e19b34"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5afccd9d-5290-4069-90a7-853de01c83d2 - status: 404 Not Found - code: 404 - duration: 31.316253ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2f55a5aa-2fec-4420-b44e-f06d7aa4c895 - status: 200 OK - code: 200 - duration: 94.835899ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/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:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ca5d2003-0e9b-4ce0-8334-c402c90d5e75 - status: 200 OK - code: 200 - duration: 95.841359ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8/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:55:25 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5014d049-2d16-49a3-a5dc-65cf89192cff - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 97.502164ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2123 - uncompressed: false - 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: - - "2123" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 895e2172-055f-470a-a1b6-ef2b68f53c53 - status: 200 OK - code: 200 - duration: 140.730776ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 389 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 16e5ff04-b4c3-42c1-908a-20b16deba4e8 - status: 200 OK - code: 200 - duration: 81.47358ms - - 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/file/v1alpha1/regions/fr-par/filesystems/bc6eeccc-d15c-4db1-af6e-dbaed8e4c007 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 391 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cfab53c9-4d69-4a62-8d60-ef0ecdcf39e7 - status: 200 OK - code: 200 - duration: 88.164784ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2169 - uncompressed: false - 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: - - "2169" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b9f5cc29-02a7-4b03-b664-96e563a9bd1a - status: 200 OK - code: 200 - duration: 143.030717ms - - 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/5eba7122-6392-40c0-b142-da2b06e19b34 - 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": "5eba7122-6392-40c0-b142-da2b06e19b34"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c0170292-459d-44c7-980c-c50f39a27ec3 - status: 404 Not Found - code: 404 - duration: 41.840515ms - - id: 90 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a6d27547-39cb-43ba-b97a-02eb7e616caf - status: 200 OK - code: 200 - duration: 87.505791ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8/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:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 458c7038-4e5d-47f0-a118-3b1f43fd9aa5 - status: 200 OK - code: 200 - duration: 92.828745ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8/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:55:26 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a0235dea-92ec-4ee8-9ad0-53951ab3ac5e - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 102.672364ms - - 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/file/v1alpha1/regions/fr-par/filesystems/bc6eeccc-d15c-4db1-af6e-dbaed8e4c007 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 391 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6e64d999-8862-4cda-a049-596b5dcb5b67 - status: 200 OK - code: 200 - duration: 87.306107ms - - 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/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 389 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4333d782-4be9-434d-bb06-ecb68369f4d7 - status: 200 OK - code: 200 - duration: 88.845226ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2123 - uncompressed: false - 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: - - "2123" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c73f827e-3a46-4145-9e86-16f8216d6cbc - status: 200 OK - code: 200 - duration: 160.164788ms - - 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/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - 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": "5eba7122-6392-40c0-b142-da2b06e19b34"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 84cc7423-b94d-41aa-8ef2-b25ebeca92cc - status: 404 Not Found - code: 404 - duration: 26.787013ms - - id: 97 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 19d41ed5-7cf0-4ded-a963-d07b62d42a6e - status: 200 OK - code: 200 - duration: 82.118407ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8/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:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dac95002-b53b-4775-af24-066836ab0241 - status: 200 OK - code: 200 - duration: 99.816814ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8/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:55:27 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8d07c6b3-9694-48c4-ba9e-ef0c516fbc92 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 85.979517ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2123 - uncompressed: false - 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: - - "2123" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ac1a9314-3730-4ef8-bbad-0be689b5a866 - status: 200 OK - code: 200 - duration: 137.830122ms - - id: 101 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 148 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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.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: 422 - uncompressed: false - 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: - - "422" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0e719b25-2d10-470f-b4b8-33bbb766813e - status: 200 OK - code: 200 - duration: 273.65392ms - - id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/07aba417-4f8d-409d-af5b-0840f29f2c24 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - 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: - - "423" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3ad94198-3ce1-4e8d-9c23-0cc42de02ef5 - status: 200 OK - code: 200 - duration: 90.922892ms - - id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/07aba417-4f8d-409d-af5b-0840f29f2c24 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - 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: - - "423" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 77f6bd12-e002-4a42-bc7b-ae2ad489e4e8 - status: 200 OK - code: 200 - duration: 74.62296ms - - id: 104 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 56 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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.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: 2123 - uncompressed: false - 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: - - "2123" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dbd783c6-52a5-44e4-a7ad-ace3c1ae8be4 - status: 200 OK - code: 200 - duration: 376.648928ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2123 - uncompressed: false - 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: - - "2123" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ecf2579c-f82e-44c6-972c-abaa5a260b01 - status: 200 OK - code: 200 - duration: 147.050284ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2042 - uncompressed: false - 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: - - "2042" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 42292bea-582a-429c-85ff-715582a301b4 - status: 200 OK - code: 200 - duration: 135.524462ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2042 - uncompressed: false - 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: - - "2042" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dfcdbcbf-081b-4adb-b192-8f8c5e03dc90 - status: 200 OK - code: 200 - duration: 149.097454ms - - 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/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2042 - uncompressed: false - 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: - - "2042" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c630ae9c-5803-4976-ba2d-186746e2b361 - status: 200 OK - code: 200 - duration: 157.105279ms - - 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/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - 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": "5eba7122-6392-40c0-b142-da2b06e19b34"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 69b94ea6-83bc-4c32-8cc8-bb67674233f2 - status: 404 Not Found - code: 404 - duration: 28.925192ms - - 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/5eba7122-6392-40c0-b142-da2b06e19b34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ec382fec-23c0-40f5-b54b-9a5cca962d5f - status: 200 OK - code: 200 - duration: 85.810543ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/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: - - 5b993920-ffeb-4da6-9666-79de4ac8244f - status: 200 OK - code: 200 - duration: 83.270242ms - - id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/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:55:33 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c1202cfe-08fe-4ce6-84dc-39dd01da6e45 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 101.015537ms - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2042 - uncompressed: false - 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: - - "2042" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b2e64fe5-66d9-4d08-a0af-11b3fd243fb1 - status: 200 OK - code: 200 - duration: 143.235252ms - - 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/file/v1alpha1/regions/fr-par/filesystems/bc6eeccc-d15c-4db1-af6e-dbaed8e4c007 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 391 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e9f2d4dc-e45f-4b71-802c-587299724732 - status: 200 OK - code: 200 - duration: 80.650102ms - - id: 115 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 389 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5211f932-f531-4e0e-833f-a79b536815b0 - status: 200 OK - code: 200 - duration: 80.971353ms - - id: 116 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/07aba417-4f8d-409d-af5b-0840f29f2c24 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - 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: - - "423" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3101b968-a057-4183-b1cf-79846a4da5c9 - status: 200 OK - code: 200 - duration: 82.459185ms - - id: 117 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2088 - uncompressed: false - 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: - - "2088" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7d50f749-70d6-4e6e-8285-cc17ec42afef - status: 200 OK - code: 200 - duration: 168.833713ms - - id: 118 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - 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": "5eba7122-6392-40c0-b142-da2b06e19b34"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4db74ad9-60c7-4631-8b80-db0c975ddd1a - status: 404 Not Found - code: 404 - duration: 33.0148ms - - id: 119 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2f758002-1f0f-46f8-bc8f-0cde79656744 - status: 200 OK - code: 200 - duration: 92.110985ms - - id: 120 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/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:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7e1e8766-3963-43bc-989d-eee2f21e01d8 - status: 200 OK - code: 200 - duration: 128.58804ms - - id: 121 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/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:55:34 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 02977682-ddf1-41c9-ade6-f68266152379 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 112.2093ms - - id: 122 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/07aba417-4f8d-409d-af5b-0840f29f2c24 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - 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: - - "423" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b563881a-7ebd-4c9f-9127-544bf19ed309 - status: 200 OK - code: 200 - duration: 73.286352ms - - id: 123 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 389 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 38667d88-26cc-499e-856f-07f3df291558 - status: 200 OK - code: 200 - duration: 110.896827ms - - id: 124 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee - 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:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ba022ee1-b9ee-4f94-808e-a009440074bc - status: 204 No Content - code: 204 - duration: 91.356795ms - - id: 125 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/07aba417-4f8d-409d-af5b-0840f29f2c24 - 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:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b66bdce6-a8de-45e8-aa5e-d16de5cdc937 - status: 204 No Content - code: 204 - duration: 171.427554ms - - id: 126 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/0a96cd03-a93f-470c-920f-64481ad89fee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 131 - uncompressed: false - body: '{"message":"resource is not found","resource":"filesystem","resource_id":"0a96cd03-a93f-470c-920f-64481ad89fee","type":"not_found"}' - headers: - Content-Length: - - "131" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 20adaa52-b5b1-44fe-bf8c-60ab494e7dc5 - status: 404 Not Found - code: 404 - duration: 106.328673ms - - id: 127 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/07aba417-4f8d-409d-af5b-0840f29f2c24 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"07aba417-4f8d-409d-af5b-0840f29f2c24","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9170d18c-d1fd-488c-8be2-71093049974d - status: 404 Not Found - code: 404 - duration: 103.072645ms - - id: 128 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 56 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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.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: 2088 - uncompressed: false - 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: - - "2088" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c42ab9bf-89b2-47e4-9df9-b34db7dc6267 - status: 200 OK - code: 200 - duration: 385.913822ms - - id: 129 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2042 - uncompressed: false - 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: - - "2042" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b8247844-09b2-407d-a768-a7765f2c670d - status: 200 OK - code: 200 - duration: 143.050427ms - - id: 130 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2009 - uncompressed: false - 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: - - "2009" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - da1fc492-1526-41bd-bfa1-981d28402ff4 - status: 200 OK - code: 200 - duration: 172.256395ms - - id: 131 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1963 - uncompressed: false - 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: - - "1963" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7d5b4800-8f44-40dc-a8ca-7ed3f91de34c - status: 200 OK - code: 200 - duration: 140.102937ms - - id: 132 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1963 - uncompressed: false - 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: - - "1963" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a1df125f-69d0-4634-b2fd-b3e7d8f68b5d - status: 200 OK - code: 200 - duration: 141.761377ms - - id: 133 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 22 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"terminate"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:41 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0d50a38e-1133-4edf-b344-ee23a5554e12 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6aedbca2-f78c-4a7e-8e5e-3d5c24bb7515 - status: 202 Accepted - code: 202 - duration: 273.558843ms - - id: 134 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1926 - uncompressed: false - 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: - - "1926" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - de1b8520-bd88-42a9-ac15-11fce36326bc - status: 200 OK - code: 200 - duration: 143.151658ms - - id: 135 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1926 - uncompressed: false - 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: - - "1926" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2680c7ed-1ce2-4140-99c5-7690c7bbb7b3 - status: 200 OK - code: 200 - duration: 162.143797ms - - id: 136 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1926 - uncompressed: false - 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: - - "1926" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f2d1e56a-0689-43f9-ac5c-5f951cca3d01 - status: 200 OK - code: 200 - duration: 169.583732ms - - id: 137 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - 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": "9d2958d2-ea2d-4722-96c6-afcc457083c8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7f164693-6c7b-4513-b0ab-784721d879c0 - status: 404 Not Found - code: 404 - duration: 50.016267ms - - id: 138 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - 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": "5eba7122-6392-40c0-b142-da2b06e19b34"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 43d5f56d-8f19-49f5-89c5-f50a199133e5 - status: 404 Not Found - code: 404 - duration: 33.084763ms - - id: 139 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 498 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8479fb6c-805e-48f5-8085-ce3f7744774b - status: 200 OK - code: 200 - duration: 80.80674ms - - id: 140 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5eba7122-6392-40c0-b142-da2b06e19b34 - 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:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 345023d5-5af8-4218-8358-7c5207b0f729 - status: 204 No Content - code: 204 - duration: 155.285635ms - - id: 141 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/bc6eeccc-d15c-4db1-af6e-dbaed8e4c007 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 391 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2910b0d9-9e7b-4531-b917-0bc0fe578b9e - status: 200 OK - code: 200 - duration: 92.940342ms - - id: 142 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/bc6eeccc-d15c-4db1-af6e-dbaed8e4c007 - 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:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bf7c16a3-d80e-4723-8086-2b88fe40bd92 - status: 204 No Content - code: 204 - duration: 137.76487ms - - id: 143 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/bc6eeccc-d15c-4db1-af6e-dbaed8e4c007 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 131 - uncompressed: false - body: '{"message":"resource is not found","resource":"filesystem","resource_id":"bc6eeccc-d15c-4db1-af6e-dbaed8e4c007","type":"not_found"}' - headers: - Content-Length: - - "131" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8912c1c7-ecbd-48e5-bc62-35e67a66564b - status: 404 Not Found - code: 404 - duration: 79.665826ms - - id: 144 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d2958d2-ea2d-4722-96c6-afcc457083c8 - 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": "9d2958d2-ea2d-4722-96c6-afcc457083c8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f604be47-914e-48fe-a462-e7e26beb9222 - status: 404 Not Found - code: 404 - duration: 49.695898ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 127 + host: api.scaleway.com + body: "{\"name\":\"filesystem-instance-terraform-test\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"size\":100000000000,\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-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: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 388 + body: "{\"id\":\"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"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-30T15:41:48.422787Z\", \"updated_at\":\"2025-10-30T15:41:48.422787Z\"}" + headers: + Content-Length: + - "388" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 81f6c1df-07a3-4d86-8d45-636c76633c36 + status: 200 OK + code: 200 + duration: 237.481018ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/64bb8bb7-da66-42e6-a9eb-d1ae2a38c470 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 388 + body: "{\"id\":\"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"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-30T15:41:48.422787Z\", \"updated_at\":\"2025-10-30T15:41:48.422787Z\"}" + headers: + Content-Length: + - "388" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 06a36560-51d7-41da-958a-7dc37bc40680 + status: 200 OK + code: 200 + duration: 117.412187ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/64bb8bb7-da66-42e6-a9eb-d1ae2a38c470 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 389 + body: "{\"id\":\"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"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-30T15:41:48.422787Z\", \"updated_at\":\"2025-10-30T15:41:48.422787Z\"}" + headers: + Content-Length: + - "389" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 58b0edcc-5ddc-4b30-b1fe-0bcdb01dfd4e + status: 200 OK + code: 200 + duration: 139.148048ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/64bb8bb7-da66-42e6-a9eb-d1ae2a38c470 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 389 + body: "{\"id\":\"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"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-30T15:41:48.422787Z\", \"updated_at\":\"2025-10-30T15:41:48.422787Z\"}" + headers: + Content-Length: + - "389" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ac177e32-33c8-463a-aa52-32ba01ad2d40 + status: 200 OK + code: 200 + duration: 103.18324ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fdcfd4ca-d3d3-4ac0-9bd8-2fd2d881fe18 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 46.314081ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 13e070e8-591d-41f4-9012-66f6ae86b998 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 42.75786ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/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 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 35a66eed-2f2c-4090-a363-8f76525f528c + status: 200 OK + code: 200 + duration: 48.295117ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 307 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-affectionate-raman\",\"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\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1811 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:54.566108+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1811" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 61c7b3e7-1f4f-47ad-bbac-bc81284cce6e + status: 201 Created + code: 201 + duration: 1.02123408s +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1811 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:54.566108+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1811" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7e879c96-495e-419e-9ebf-70bdc1f33bd7 + status: 200 OK + code: 200 + duration: 136.656787ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1857 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:54.566108+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1857" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fb012792-41cb-4450-936e-325bf1511190 + status: 200 OK + code: 200 + duration: 150.391117ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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-30T15:41:54.706525Z\", \"updated_at\":\"2025-10-30T15:41:54.706525Z\", \"references\":[{\"id\":\"f0bf1f0d-bc1e-40cb-ae83-f6a1919c65f6\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"created_at\":\"2025-10-30T15:41:54.706525Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fdc087f2-61e2-485c-9528-424e0f0c1bc8 + status: 200 OK + code: 200 + duration: 91.774802ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"83e66827-2300-4e3a-a3ec-c1de60ef7506\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/action\", \"href_result\": \"/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"started_at\": \"2025-10-30T15:41:55.840021+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/83e66827-2300-4e3a-a3ec-c1de60ef7506 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bf4afb71-c112-4a19-84db-84f312a662c7 + status: 202 Accepted + code: 202 + duration: 477.425674ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1879 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:55.432031+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: + - "1879" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 01984b65-f7eb-42b8-9286-b9786208f508 + status: 200 OK + code: 200 + duration: 139.109417ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1968 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"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: + - "1968" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0ddbdcf5-e89e-488b-ab6c-4bf2abd0b8e0 + status: 200 OK + code: 200 + duration: 174.94221ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 56 + host: api.scaleway.com + body: "{\"filesystem_id\":\"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/attach-filesystem + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"attaching\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 324887d9-a6c7-4624-b630-5cbc712334c0 + status: 200 OK + code: 200 + duration: 458.129947ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2093 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"attaching\"}], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2093" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f6cd5541-5f26-4443-8cd7-433b8d429266 + status: 200 OK + code: 200 + duration: 151.227929ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"attaching\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 97dc3ec4-95eb-4227-a070-e4a511303ffc + status: 200 OK + code: 200 + duration: 156.939805ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2093 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"attaching\"}], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2093" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a3a59ee4-b3de-4c3d-914f-5f26980fd660 + status: 200 OK + code: 200 + duration: 135.092277ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"attaching\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ea6a670b-4cd6-4635-bb16-2327a42113fc + status: 200 OK + code: 200 + duration: 163.193519ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"attaching\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bfff557b-dc49-4ef5-a104-61dafcb6f996 + status: 200 OK + code: 200 + duration: 145.860067ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"available\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6ff66808-15e8-4002-a49c-b38ae3c6b875 + status: 200 OK + code: 200 + duration: 130.049472ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"available\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 51a4302f-16a5-4ff0-bb67-dbeb08e2563b + status: 200 OK + code: 200 + duration: 141.204676ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 05673caf-a39f-49d6-a02a-3076b493a0f1 + status: 404 Not Found + code: 404 + duration: 29.236771ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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-30T15:41:54.706525Z\", \"updated_at\":\"2025-10-30T15:41:54.706525Z\", \"references\":[{\"id\":\"f0bf1f0d-bc1e-40cb-ae83-f6a1919c65f6\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"created_at\":\"2025-10-30T15:41:54.706525Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d5ce9359-b581-483c-9f30-8693f179017e + status: 200 OK + code: 200 + duration: 81.260456ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2bd58c21-44e0-4044-82a0-7353d894cc4b + status: 200 OK + code: 200 + duration: 100.149517ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:28 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8f1a2e40-ddc4-4493-87a8-453313ea02e2 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 144.584926ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2093 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"available\"}], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2093" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 72799d85-c7e0-4a01-8aa6-435c4be12e86 + status: 200 OK + code: 200 + duration: 133.023902ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/64bb8bb7-da66-42e6-a9eb-d1ae2a38c470 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 389 + body: "{\"id\":\"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"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-30T15:41:48.422787Z\", \"updated_at\":\"2025-10-30T15:41:48.422787Z\"}" + headers: + Content-Length: + - "389" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b3f09ffb-cd6b-4a14-8e9a-8370c9bc0908 + status: 200 OK + code: 200 + duration: 95.376223ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2093 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"available\"}], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2093" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cf8c0a2f-9623-41cc-9d04-2040190233a9 + status: 200 OK + code: 200 + duration: 143.765751ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a64bc826-0890-461b-86d2-7c86969f03b7 + status: 404 Not Found + code: 404 + duration: 24.882724ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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-30T15:41:54.706525Z\", \"updated_at\":\"2025-10-30T15:41:54.706525Z\", \"references\":[{\"id\":\"f0bf1f0d-bc1e-40cb-ae83-f6a1919c65f6\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"created_at\":\"2025-10-30T15:41:54.706525Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 18555660-1b4c-43a6-8cbc-c10892625c6e + status: 200 OK + code: 200 + duration: 86.005356ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 60b43e77-2c6f-4b09-b255-6a1a86f21623 + status: 200 OK + code: 200 + duration: 91.66395ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:28 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 585d0e69-c314-4fe2-91cd-82409384e4de + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 116.037479ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/64bb8bb7-da66-42e6-a9eb-d1ae2a38c470 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 389 + body: "{\"id\":\"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"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-30T15:41:48.422787Z\", \"updated_at\":\"2025-10-30T15:41:48.422787Z\"}" + headers: + Content-Length: + - "389" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c7aafeec-ecc8-42e1-8ab6-a968495b92b4 + status: 200 OK + code: 200 + duration: 79.303665ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"available\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e450e022-3c9c-4273-86e1-fee132c8bcad + status: 200 OK + code: 200 + duration: 143.951069ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1cb6e413-cb17-4367-bb1f-8a952e6bd6ba + status: 404 Not Found + code: 404 + duration: 28.542259ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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-30T15:41:54.706525Z\", \"updated_at\":\"2025-10-30T15:41:54.706525Z\", \"references\":[{\"id\":\"f0bf1f0d-bc1e-40cb-ae83-f6a1919c65f6\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"created_at\":\"2025-10-30T15:41:54.706525Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - be695fdf-f6f6-478a-bcf0-92d53f585186 + status: 200 OK + code: 200 + duration: 75.600138ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 85e03942-715a-402a-bcb0-c96fa83e2794 + status: 200 OK + code: 200 + duration: 97.945984ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2f74c8cd-ef7c-4fbd-9e0e-ae28583cef59 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 117.37061ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 129 + host: api.scaleway.com + body: "{\"name\":\"filesystem-instance-terraform-test-2\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"size\":100000000000,\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-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: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 390 + body: "{\"id\":\"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"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-30T15:42:29.804785Z\", \"updated_at\":\"2025-10-30T15:42:29.804785Z\"}" + headers: + Content-Length: + - "390" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6ff72b34-1512-4180-9e9b-5e0c681c55e3 + status: 200 OK + code: 200 + duration: 220.484227ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 390 + body: "{\"id\":\"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"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-30T15:42:29.804785Z\", \"updated_at\":\"2025-10-30T15:42:29.804785Z\"}" + headers: + Content-Length: + - "390" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f6058764-6f93-4dac-bd11-7890bdbba667 + status: 200 OK + code: 200 + duration: 87.797347ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 391 + body: "{\"id\":\"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"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-30T15:42:29.804785Z\", \"updated_at\":\"2025-10-30T15:42:29.804785Z\"}" + headers: + Content-Length: + - "391" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 88865a83-2648-4c30-8cd4-f3a39105e7be + status: 200 OK + code: 200 + duration: 90.678623ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 391 + body: "{\"id\":\"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"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-30T15:42:29.804785Z\", \"updated_at\":\"2025-10-30T15:42:29.804785Z\"}" + headers: + Content-Length: + - "391" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0a7cdd27-ccf4-42a5-b8b8-d4a94191ca6f + status: 200 OK + code: 200 + duration: 80.124486ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2093 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"available\"}], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2093" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4193f1ac-6685-44e0-a797-c11e1429d375 + status: 200 OK + code: 200 + duration: 144.374455ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 56 + host: api.scaleway.com + body: "{\"filesystem_id\":\"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/detach-filesystem + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"detaching\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 435c2e1c-297a-401e-a4b3-cca8006a87a5 + status: 200 OK + code: 200 + duration: 377.622547ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2093 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"detaching\"}], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2093" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 98d4d008-eb55-4c16-bef8-2516a2e29604 + status: 200 OK + code: 200 + duration: 135.510899ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2014 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"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: + - "2014" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 60c36676-7ca5-4a47-8833-75102c63b8e4 + status: 200 OK + code: 200 + duration: 139.826976ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 56 + host: api.scaleway.com + body: "{\"filesystem_id\":\"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/attach-filesystem + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"attaching\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b0feb3db-8f4a-49b3-846b-118f2d4ced8a + status: 200 OK + code: 200 + duration: 392.174217ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"attaching\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 91f78d53-04b0-4d95-bd56-3a6a453143ae + status: 200 OK + code: 200 + duration: 128.207341ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"available\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c1fcb9bb-9898-46a6-afd7-f21222a03646 + status: 200 OK + code: 200 + duration: 177.724085ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"available\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0dcaf1dc-beda-4f99-a742-9aeb7724cc7b + status: 200 OK + code: 200 + duration: 171.246916ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"available\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c4434c86-b691-41a9-bd3b-70bb08f9dfed + status: 200 OK + code: 200 + duration: 161.908449ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6b3e6d63-a416-48cc-8a1c-12aa65f1b7ee + status: 404 Not Found + code: 404 + duration: 35.155795ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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-30T15:41:54.706525Z\", \"updated_at\":\"2025-10-30T15:41:54.706525Z\", \"references\":[{\"id\":\"f0bf1f0d-bc1e-40cb-ae83-f6a1919c65f6\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"created_at\":\"2025-10-30T15:41:54.706525Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d5b8fe3c-5002-4a56-a722-9f0c64d18d21 + status: 200 OK + code: 200 + duration: 92.177126ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0efcbd85-62b4-488d-a1b0-5b2e28a93bf8 + status: 200 OK + code: 200 + duration: 104.907366ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b23f53f9-d83e-448f-93a3-4c4eaa1d7986 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 118.002039ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"available\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d7081503-fe9b-4845-b735-13b4a0092010 + status: 200 OK + code: 200 + duration: 138.897625ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/64bb8bb7-da66-42e6-a9eb-d1ae2a38c470 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 389 + body: "{\"id\":\"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"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-30T15:41:48.422787Z\", \"updated_at\":\"2025-10-30T15:41:48.422787Z\"}" + headers: + Content-Length: + - "389" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5d6b4a57-8283-42e8-817c-672ded5dd44e + status: 200 OK + code: 200 + duration: 90.208153ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 391 + body: "{\"id\":\"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"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-30T15:42:29.804785Z\", \"updated_at\":\"2025-10-30T15:42:29.804785Z\"}" + headers: + Content-Length: + - "391" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0ecdee39-bfac-4789-951a-dd367c675d4f + status: 200 OK + code: 200 + duration: 90.192073ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"available\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c4a92f3a-76c9-4f2c-b33a-c2b1eb1c2e2a + status: 200 OK + code: 200 + duration: 150.300444ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6ebfebf0-49c1-4d1d-93b8-ce3901be49ee + status: 404 Not Found + code: 404 + duration: 25.579241ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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-30T15:41:54.706525Z\", \"updated_at\":\"2025-10-30T15:41:54.706525Z\", \"references\":[{\"id\":\"f0bf1f0d-bc1e-40cb-ae83-f6a1919c65f6\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"created_at\":\"2025-10-30T15:41:54.706525Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8c42aa44-aa8a-450b-a468-20e194d99441 + status: 200 OK + code: 200 + duration: 126.981854ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 09cbcc65-a688-4a89-8663-5ed1ab171cbe + status: 200 OK + code: 200 + duration: 91.832911ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f72c0507-23e4-4646-bc59-bffb61e5397e + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 125.356204ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 391 + body: "{\"id\":\"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"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-30T15:42:29.804785Z\", \"updated_at\":\"2025-10-30T15:42:29.804785Z\"}" + headers: + Content-Length: + - "391" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f37aac12-842b-4082-a5ab-0cb1cb5c2ad9 + status: 200 OK + code: 200 + duration: 120.822149ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/64bb8bb7-da66-42e6-a9eb-d1ae2a38c470 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 389 + body: "{\"id\":\"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"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-30T15:41:48.422787Z\", \"updated_at\":\"2025-10-30T15:41:48.422787Z\"}" + headers: + Content-Length: + - "389" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c15b40d4-553e-4102-8fd2-fd9029efeb3d + status: 200 OK + code: 200 + duration: 141.112449ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"available\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 42f36614-ceef-436b-9afc-c25f78be3e15 + status: 200 OK + code: 200 + duration: 139.880328ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6c365ceb-8fe9-4159-86df-97542fbb2e2a + status: 404 Not Found + code: 404 + duration: 25.692564ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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-30T15:41:54.706525Z\", \"updated_at\":\"2025-10-30T15:41:54.706525Z\", \"references\":[{\"id\":\"f0bf1f0d-bc1e-40cb-ae83-f6a1919c65f6\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"created_at\":\"2025-10-30T15:41:54.706525Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - baf8f5b2-a4c9-40d1-81a8-45baea6c1f10 + status: 200 OK + code: 200 + duration: 83.913135ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2b1cdfa6-05df-4f53-ae13-d00ac3284fde + status: 200 OK + code: 200 + duration: 95.936538ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3d2cccb3-26bc-489b-bfdd-879016c0b23e + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 89.803975ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"available\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 250b5b20-a187-4bdb-9f2d-600dbdca4a5c + status: 200 OK + code: 200 + duration: 161.07759ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 56 + host: api.scaleway.com + body: "{\"filesystem_id\":\"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/attach-filesystem + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2174 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"available\"}, {\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"attaching\"}], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2174" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5599c863-7cd6-420c-9f47-ac3e2c3a9c39 + status: 200 OK + code: 200 + duration: 542.593551ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2128 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"available\"}, {\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"attaching\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2128" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 096f16d8-6133-4e7c-9517-ae6c4ad5aa0a + status: 200 OK + code: 200 + duration: 143.800522ms +- id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2128 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"available\"}, {\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"available\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2128" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bf54775a-9e90-4472-bfe7-802ed187691f + status: 200 OK + code: 200 + duration: 170.513954ms +- id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2128 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"available\"}, {\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"available\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2128" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 11ddbbec-83ea-4fe0-8708-93c69802421e + status: 200 OK + code: 200 + duration: 178.776422ms +- id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2174 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"available\"}, {\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"available\"}], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2174" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9a348361-4f14-4dd0-9cbc-2af63360b91e + status: 200 OK + code: 200 + duration: 198.395244ms +- id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9be5fd8b-3bd3-4332-85f4-9ae0404ef1c2 + status: 404 Not Found + code: 404 + duration: 33.282001ms +- id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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-30T15:41:54.706525Z\", \"updated_at\":\"2025-10-30T15:41:54.706525Z\", \"references\":[{\"id\":\"f0bf1f0d-bc1e-40cb-ae83-f6a1919c65f6\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"created_at\":\"2025-10-30T15:41:54.706525Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 35c6fc9f-0947-4a8d-b04c-778aab2f6f32 + status: 200 OK + code: 200 + duration: 93.323048ms +- id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 539b1ec7-b2a2-4b1b-b997-ed49b9ac61ba + status: 200 OK + code: 200 + duration: 127.876924ms +- id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 836db858-bffe-4b48-a779-28ac6bc7f842 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 110.573606ms +- id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2128 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"available\"}, {\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"available\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2128" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6b16cb2a-6925-4d5f-93a6-9a9e50ca0e29 + status: 200 OK + code: 200 + duration: 146.599965ms +- id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 391 + body: "{\"id\":\"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"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-30T15:42:29.804785Z\", \"updated_at\":\"2025-10-30T15:42:29.804785Z\"}" + headers: + Content-Length: + - "391" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6954ed82-7481-4ead-ac7c-ac5e1572ebe3 + status: 200 OK + code: 200 + duration: 88.690818ms +- id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/64bb8bb7-da66-42e6-a9eb-d1ae2a38c470 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 389 + body: "{\"id\":\"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"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-30T15:41:48.422787Z\", \"updated_at\":\"2025-10-30T15:41:48.422787Z\"}" + headers: + Content-Length: + - "389" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 13b7b286-4137-4452-9a88-4a314b8f680f + status: 200 OK + code: 200 + duration: 90.948883ms +- id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2128 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"available\"}, {\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"available\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2128" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3d3737bc-3d0c-46c6-ac34-099943edcd9e + status: 200 OK + code: 200 + duration: 171.177359ms +- id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e33857a8-b34d-4b77-827e-5c1d13cbcd7d + status: 404 Not Found + code: 404 + duration: 27.86492ms +- id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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-30T15:41:54.706525Z\", \"updated_at\":\"2025-10-30T15:41:54.706525Z\", \"references\":[{\"id\":\"f0bf1f0d-bc1e-40cb-ae83-f6a1919c65f6\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"created_at\":\"2025-10-30T15:41:54.706525Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8e42155f-f2f0-4f50-a365-973f75595e99 + status: 200 OK + code: 200 + duration: 85.959825ms +- id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d18a78cc-2941-4c71-9e82-b0fae8963760 + status: 200 OK + code: 200 + duration: 108.48034ms +- id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 55e863dc-8fcc-4df5-bf1d-351e49dbb9be + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 107.999378ms +- id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/64bb8bb7-da66-42e6-a9eb-d1ae2a38c470 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 389 + body: "{\"id\":\"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"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-30T15:41:48.422787Z\", \"updated_at\":\"2025-10-30T15:41:48.422787Z\"}" + headers: + Content-Length: + - "389" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 35170526-dbc3-4c0e-88dd-f7c0decce1ab + status: 200 OK + code: 200 + duration: 78.138083ms +- id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 391 + body: "{\"id\":\"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"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-30T15:42:29.804785Z\", \"updated_at\":\"2025-10-30T15:42:29.804785Z\"}" + headers: + Content-Length: + - "391" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5209202c-7393-4879-b251-092f4e6b0946 + status: 200 OK + code: 200 + duration: 101.1505ms +- id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2128 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"available\"}, {\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"available\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2128" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 09d5cf01-90a7-4118-bbdd-299c8d3fd59d + status: 200 OK + code: 200 + duration: 131.694526ms +- id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b42217ed-6589-4a82-92d1-44bb7b2a8154 + status: 404 Not Found + code: 404 + duration: 46.17719ms +- id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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-30T15:41:54.706525Z\", \"updated_at\":\"2025-10-30T15:41:54.706525Z\", \"references\":[{\"id\":\"f0bf1f0d-bc1e-40cb-ae83-f6a1919c65f6\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"created_at\":\"2025-10-30T15:41:54.706525Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9d2056db-aefe-4640-b074-3b030f8e4a75 + status: 200 OK + code: 200 + duration: 95.037705ms +- id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8d92df4a-9810-4b34-a361-65b4ec1356ad + status: 200 OK + code: 200 + duration: 93.733988ms +- id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - adad0bc4-6fdc-4142-900e-436c14144f05 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 104.341656ms +- id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2174 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"available\"}, {\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"available\"}], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2174" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9b37e3e6-f1f3-459a-bec7-89d839039598 + status: 200 OK + code: 200 + duration: 160.467078ms +- id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 155 + host: api.scaleway.com + body: "{\"name\":\"tf-volume-unruffled-sutherland\",\"perf_iops\":15000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"from_empty\":{\"size\":15000000000},\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+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 + content_length: 429 + body: "{\"id\":\"43f9cd6a-55a9-4c81-93c0-5d24cd2a5921\", \"name\":\"tf-volume-unruffled-sutherland\", \"type\":\"sbs_15k\", \"size\":15000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:58.032977Z\", \"updated_at\":\"2025-10-30T15:42:58.032977Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4c925260-2924-4542-832f-9a488ea4258e + status: 200 OK + code: 200 + duration: 215.37197ms +- id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/43f9cd6a-55a9-4c81-93c0-5d24cd2a5921 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 429 + body: "{\"id\":\"43f9cd6a-55a9-4c81-93c0-5d24cd2a5921\", \"name\":\"tf-volume-unruffled-sutherland\", \"type\":\"sbs_15k\", \"size\":15000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:58.032977Z\", \"updated_at\":\"2025-10-30T15:42:58.032977Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 56b720ba-cbd3-4dd2-aeb2-e632816c07b1 + status: 200 OK + code: 200 + duration: 79.77829ms +- id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 56 + host: api.scaleway.com + body: "{\"filesystem_id\":\"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/detach-filesystem + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2174 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"available\"}, {\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"detaching\"}], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2174" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f767601c-2b8c-45e3-8cd3-0890258d9add + status: 200 OK + code: 200 + duration: 448.837481ms +- id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2128 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"available\"}, {\"filesystem_id\": \"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"state\": \"detaching\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2128" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cb07d170-9bf2-48de-befe-bb9c9ab3022a + status: 200 OK + code: 200 + duration: 131.359107ms +- id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/43f9cd6a-55a9-4c81-93c0-5d24cd2a5921 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 430 + body: "{\"id\":\"43f9cd6a-55a9-4c81-93c0-5d24cd2a5921\", \"name\":\"tf-volume-unruffled-sutherland\", \"type\":\"sbs_15k\", \"size\":15000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:58.032977Z\", \"updated_at\":\"2025-10-30T15:42:58.032977Z\", \"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: + - "430" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 95075195-ccd1-432e-83ba-a02d450ff1ee + status: 200 OK + code: 200 + duration: 92.757457ms +- id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/43f9cd6a-55a9-4c81-93c0-5d24cd2a5921 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 430 + body: "{\"id\":\"43f9cd6a-55a9-4c81-93c0-5d24cd2a5921\", \"name\":\"tf-volume-unruffled-sutherland\", \"type\":\"sbs_15k\", \"size\":15000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:58.032977Z\", \"updated_at\":\"2025-10-30T15:42:58.032977Z\", \"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: + - "430" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f1501384-a179-4e13-b71a-ba6eba91d7a6 + status: 200 OK + code: 200 + duration: 99.11327ms +- id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2093 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"available\"}], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2093" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c297ddd1-f48b-4073-91a3-676d370f8ac6 + status: 200 OK + code: 200 + duration: 322.647373ms +- id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"available\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 84bd32b9-fe93-4304-a83f-7ac76c4a7e01 + status: 200 OK + code: 200 + duration: 139.007716ms +- id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"available\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9f23581d-8366-4f99-9dc4-f01ad4a17c94 + status: 200 OK + code: 200 + duration: 159.403335ms +- id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 545d8080-8399-45cc-a128-62c54434a62d + status: 404 Not Found + code: 404 + duration: 61.53528ms +- id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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-30T15:41:54.706525Z\", \"updated_at\":\"2025-10-30T15:41:54.706525Z\", \"references\":[{\"id\":\"f0bf1f0d-bc1e-40cb-ae83-f6a1919c65f6\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"created_at\":\"2025-10-30T15:41:54.706525Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0256d2c8-a9fe-436b-872e-d56f166ac47b + status: 200 OK + code: 200 + duration: 90.59959ms +- id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b816ed7f-f91b-4d71-828a-c0432c73e0ce + status: 200 OK + code: 200 + duration: 108.587062ms +- id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1d34a29b-f19d-44d8-ae0d-3f511263b8fa + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 109.363367ms +- id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"available\"}], \"end_of_service\": false}}" + headers: + Content-Length: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1035232f-01ba-4951-af65-da4a74d5012a + status: 200 OK + code: 200 + duration: 161.925255ms +- id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 391 + body: "{\"id\":\"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"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-30T15:42:29.804785Z\", \"updated_at\":\"2025-10-30T15:42:29.804785Z\"}" + headers: + Content-Length: + - "391" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f1aa5c2a-8de2-4659-b96c-d9d57d547091 + status: 200 OK + code: 200 + duration: 85.592367ms +- id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/43f9cd6a-55a9-4c81-93c0-5d24cd2a5921 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 430 + body: "{\"id\":\"43f9cd6a-55a9-4c81-93c0-5d24cd2a5921\", \"name\":\"tf-volume-unruffled-sutherland\", \"type\":\"sbs_15k\", \"size\":15000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:58.032977Z\", \"updated_at\":\"2025-10-30T15:42:58.032977Z\", \"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: + - "430" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a8b9268b-6ab5-428b-b32a-ca3565db7aa5 + status: 200 OK + code: 200 + duration: 98.853644ms +- id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/64bb8bb7-da66-42e6-a9eb-d1ae2a38c470 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 389 + body: "{\"id\":\"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"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-30T15:41:48.422787Z\", \"updated_at\":\"2025-10-30T15:41:48.422787Z\"}" + headers: + Content-Length: + - "389" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9d43651a-0bf7-42f7-8419-0077a111661c + status: 200 OK + code: 200 + duration: 103.40403ms +- id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2093 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"available\"}], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2093" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d1693607-f308-46aa-a8c7-bc19112b773a + status: 200 OK + code: 200 + duration: 168.090852ms +- id: 115 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3ebc1f19-2377-4c03-afc7-4649ebcd1411 + status: 404 Not Found + code: 404 + duration: 22.717475ms +- id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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-30T15:41:54.706525Z\", \"updated_at\":\"2025-10-30T15:41:54.706525Z\", \"references\":[{\"id\":\"f0bf1f0d-bc1e-40cb-ae83-f6a1919c65f6\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"created_at\":\"2025-10-30T15:41:54.706525Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c95f79a2-7ee2-48e1-8a19-b8a7b6f46b24 + status: 200 OK + code: 200 + duration: 119.403932ms +- id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 00e0575d-c9eb-44cb-b5db-581d7864927d + status: 200 OK + code: 200 + duration: 91.878379ms +- id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 31607a30-cee3-4124-a1a1-b542f14208dc + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 99.586849ms +- id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/43f9cd6a-55a9-4c81-93c0-5d24cd2a5921 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 430 + body: "{\"id\":\"43f9cd6a-55a9-4c81-93c0-5d24cd2a5921\", \"name\":\"tf-volume-unruffled-sutherland\", \"type\":\"sbs_15k\", \"size\":15000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:58.032977Z\", \"updated_at\":\"2025-10-30T15:42:58.032977Z\", \"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: + - "430" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5f18b9f6-210c-45a7-b7a6-c11ef9883854 + status: 200 OK + code: 200 + duration: 77.146615ms +- id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/64bb8bb7-da66-42e6-a9eb-d1ae2a38c470 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 389 + body: "{\"id\":\"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\", \"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-30T15:41:48.422787Z\", \"updated_at\":\"2025-10-30T15:41:48.422787Z\"}" + headers: + Content-Length: + - "389" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e7b9b691-f522-48fc-891f-3f4b2c194e4d + status: 200 OK + code: 200 + duration: 84.822433ms +- id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/64bb8bb7-da66-42e6-a9eb-d1ae2a38c470 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1f85547e-3b01-432c-b40f-2de88a165a8a + status: 204 No Content + code: 204 + duration: 133.772236ms +- id: 122 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/43f9cd6a-55a9-4c81-93c0-5d24cd2a5921 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 880aa64e-a3f3-44f0-9bc0-9e9164501030 + status: 204 No Content + code: 204 + duration: 167.187206ms +- id: 123 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/64bb8bb7-da66-42e6-a9eb-d1ae2a38c470 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 131 + body: "{\"message\":\"resource is not found\",\"resource\":\"filesystem\",\"resource_id\":\"64bb8bb7-da66-42e6-a9eb-d1ae2a38c470\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "131" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e88c2059-d728-445d-8848-b5d47dbaff21 + status: 404 Not Found + code: 404 + duration: 80.676647ms +- id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/43f9cd6a-55a9-4c81-93c0-5d24cd2a5921 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"43f9cd6a-55a9-4c81-93c0-5d24cd2a5921\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 97e6ec2f-e765-4ca5-85a2-98c5a91a5b77 + status: 404 Not Found + code: 404 + duration: 72.33538ms +- id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 56 + host: api.scaleway.com + body: "{\"filesystem_id\":\"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/detach-filesystem + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2093 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"detaching\"}], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2093" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6161747f-e6c6-43c6-8fe8-48c0402b32b3 + status: 200 OK + code: 200 + duration: 403.164242ms +- id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2093 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"node_id\": \"16\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [{\"filesystem_id\": \"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"state\": \"detaching\"}], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2093" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1391ea3d-2509-421f-b52e-9bdf5942a139 + status: 200 OK + code: 200 + duration: 143.097187ms +- id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1968 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"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: + - "1968" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4e37532f-5f1e-4bfc-a68b-0097702b5025 + status: 200 OK + code: 200 + duration: 148.381902ms +- id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1968 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"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: + - "1968" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9e80bd4a-6c3c-4f39-9c12-e93cd5555597 + status: 200 OK + code: 200 + duration: 142.432131ms +- id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2014 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:41:58.036597+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"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: + - "2014" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 534f0b82-0929-44e7-9f20-f3fe5d3627f5 + status: 200 OK + code: 200 + duration: 155.613989ms +- id: 130 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"4b1448d1-a91f-446b-a04d-119ecc9ee59d\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99/action\", \"href_result\": \"/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"started_at\": \"2025-10-30T15:43:12.145015+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4b1448d1-a91f-446b-a04d-119ecc9ee59d + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ae66e32a-87c4-41fb-a197-03a68279a24a + status: 202 Accepted + code: 202 + duration: 303.796858ms +- id: 131 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1931 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:43:11.905641+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"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: + - "1931" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c0f0a8e5-b4ba-4c2a-87f6-5380352f8728 + status: 200 OK + code: 200 + duration: 152.471514ms +- id: 132 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1977 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:43:11.905641+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"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: + - "1977" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0228197b-c739-48bc-8d17-a48b8584fdf1 + status: 200 OK + code: 200 + duration: 140.15962ms +- id: 133 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1977 + body: "{\"server\": {\"id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\", \"name\": \"tf-srv-affectionate-raman\", \"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-affectionate-raman\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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:6c:bf\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.566108+00:00\", \"modification_date\": \"2025-10-30T15:43:11.905641+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"21\", \"hypervisor_id\": \"1001\", \"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: + - "1977" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dbde08d3-b511-418a-9849-7dbb36b5e23b + status: 200 OK + code: 200 + duration: 137.594189ms +- id: 134 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b6d3a96c-9b0d-4149-b9c4-e69d6003df66 + status: 404 Not Found + code: 404 + duration: 45.086136ms +- id: 135 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - be236f19-2a07-4fcc-9129-6ad5e0b9e59c + status: 404 Not Found + code: 404 + duration: 39.339116ms +- id: 136 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 498 + body: "{\"id\":\"4873b01e-85cf-4519-b434-2bf9bbbcdeb8\", \"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-30T15:41:54.706525Z\", \"updated_at\":\"2025-10-30T15:43:23.516465Z\", \"references\":[], \"parent_snapshot_id\":\"36b4ce54-c67a-4f68-ab74-839515834352\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:43:23.516465Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "498" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 11ef3e9e-44f7-4107-90e2-f79090299707 + status: 200 OK + code: 200 + duration: 82.495932ms +- id: 137 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4873b01e-85cf-4519-b434-2bf9bbbcdeb8 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 302626fb-2877-476b-b167-fd8a5849ceb7 + status: 204 No Content + code: 204 + duration: 151.394368ms +- id: 138 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 391 + body: "{\"id\":\"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\", \"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-30T15:42:29.804785Z\", \"updated_at\":\"2025-10-30T15:42:29.804785Z\"}" + headers: + Content-Length: + - "391" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9543e2b4-9158-4604-829b-8ea6b6d8b03e + status: 200 OK + code: 200 + duration: 108.335985ms +- id: 139 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1b4fecad-80aa-4dd2-8bf4-23907823714f + status: 204 No Content + code: 204 + duration: 133.570794ms +- id: 140 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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/f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 131 + body: "{\"message\":\"resource is not found\",\"resource\":\"filesystem\",\"resource_id\":\"f91c4ae3-5baa-4b98-a17f-7f4dd2e97e5f\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "131" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1f58228d-7a85-4246-a654-2df2acd5b0d6 + status: 404 Not Found + code: 404 + duration: 80.693242ms +- id: 141 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b5351865-b0e7-4cbe-aecd-1afe39b7fb99 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"b5351865-b0e7-4cbe-aecd-1afe39b7fb99\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 554d588c-a2dd-4052-9157-07428ee5e78b + status: 404 Not Found + code: 404 + duration: 52.628495ms diff --git a/internal/services/instance/testdata/server-basic.cassette.yaml b/internal/services/instance/testdata/server-basic.cassette.yaml index 3cd503e3f..efe3e2c22 100644 --- a/internal/services/instance/testdata/server-basic.cassette.yaml +++ b/internal/services/instance/testdata/server-basic.cassette.yaml @@ -1,2661 +1,2151 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e6fae2c2-4000-4444-beb3-9db1d00eaf0e - status: 200 OK - code: 200 - duration: 122.157605ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 29d3e82e-e525-4f88-8f25-4e08f6543448 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 40.747678ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 078a500f-9202-4c8b-a92d-ae15cf60d473 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 39.938816ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 278 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test","dynamic_ip_required":false,"commercial_type":"DEV1-M","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","basic"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2245 - uncompressed: false - 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: - - "2245" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 27ddb5c5-26f8-4c4b-83de-31f08831f61d - status: 201 Created - code: 201 - duration: 884.971655ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2205 - uncompressed: false - 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: - - "2205" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cb264ea7-d009-4705-934a-dad9fe203fbb - status: 200 OK - code: 200 - duration: 143.380167ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2159 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f884000c-c51f-4705-a024-c6b6ba383e85 - status: 200 OK - code: 200 - duration: 652.26441ms - - id: 6 - 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/843c0d49-e5d5-415c-86c5-88e1918eddf0/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d5dac4b5-f5fb-40c8-857a-c8bfbf34aa08 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b9fcf49e-ac0f-40bf-b6b4-9b63a8239ade - status: 202 Accepted - code: 202 - duration: 271.404272ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2181 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f78d5a56-fd08-40c2-92b5-8dd5820a7667 - status: 200 OK - code: 200 - duration: 106.155035ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2283 - uncompressed: false - 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: - - "2283" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 797ac606-f15f-4a71-8972-8435592a137e - status: 200 OK - code: 200 - duration: 116.664487ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2360 - uncompressed: false - 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: - - "2360" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 89893484-f338-43fa-b2b4-97222cbb8643 - status: 200 OK - code: 200 - duration: 113.931368ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2360 - uncompressed: false - 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: - - "2360" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 19c74f83-7afe-4089-9c6e-009f4fa9243e - status: 200 OK - code: 200 - duration: 148.980112ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 504 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0594522f-6c4e-42d5-9bc7-940a8f52c3f9 - status: 200 OK - code: 200 - duration: 100.365603ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0/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:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 49a1223c-545b-466c-995d-7f3e994de21f - status: 200 OK - code: 200 - duration: 107.635867ms - - 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/843c0d49-e5d5-415c-86c5-88e1918eddf0/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:50 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c6908e24-ba7f-450b-be9f-7cec54c08d7f - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 113.764656ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2314 - uncompressed: false - 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: - - "2314" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b2fe8565-d309-4949-90b3-694d3918c9b6 - status: 200 OK - code: 200 - duration: 157.501556ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6a929436-52d4-4a5a-b697-363b46e3579d - status: 200 OK - code: 200 - duration: 42.591558ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 905b2f58-e201-4a78-8fa4-2695ac434fdd - status: 200 OK - code: 200 - duration: 42.676306ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2314 - uncompressed: false - 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: - - "2314" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7ce7ef4d-3dc7-4b5e-9871-c04b6f895013 - status: 200 OK - code: 200 - duration: 144.12752ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 504 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 62955778-5fbd-4faa-90be-670c59637802 - status: 200 OK - code: 200 - duration: 90.585266ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0/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:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 520bd99b-5b5f-4db8-9e6b-87cda2524d7b - status: 200 OK - code: 200 - duration: 91.158769ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0/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:51 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1a1a6899-1874-4282-9af5-cde450b75b21 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 103.344895ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ac7a0a36-427b-48d4-82d9-c8510d9888fc - status: 200 OK - code: 200 - duration: 61.446763ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2314 - uncompressed: false - 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: - - "2314" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 99ad859b-d403-4118-8ca7-6d6ec9e357bd - status: 200 OK - code: 200 - duration: 138.998099ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 504 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e7065e45-c27b-40af-a37f-0ddf7f8ea454 - status: 200 OK - code: 200 - duration: 106.876919ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0/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:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a23a3a85-b850-4f9e-90ef-dbcf37f2774e - status: 200 OK - code: 200 - duration: 105.220431ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0/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:52 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 107799e4-7460-4ec7-9ef0-e714f7f2c831 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 100.672519ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2360 - uncompressed: false - 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: - - "2360" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9e957d2d-d2e2-43fe-9fd3-15b7307e69c6 - status: 200 OK - code: 200 - duration: 143.167204ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2400 - uncompressed: false - 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: - - "2400" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2b5e5ae0-c56a-4e6a-b88a-2b437752104a - status: 200 OK - code: 200 - duration: 118.132245ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 22 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"terminate"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/843c0d49-e5d5-415c-86c5-88e1918eddf0/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/408ecb23-90eb-4dd4-b243-2b084b8ea21e - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c5cb6b5f-1a9c-42d2-ba62-77db9ecec6d3 - status: 202 Accepted - code: 202 - duration: 273.157ms - - 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/843c0d49-e5d5-415c-86c5-88e1918eddf0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2323 - uncompressed: false - 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: - - "2323" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6b9211ef-f0f4-4911-9e2c-0242be151afe - status: 200 OK - code: 200 - duration: 148.056147ms - - 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/843c0d49-e5d5-415c-86c5-88e1918eddf0 - 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": "843c0d49-e5d5-415c-86c5-88e1918eddf0"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e26a370b-30c3-479d-a74d-bc516da412ed - status: 404 Not Found - code: 404 - duration: 43.514615ms - - 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/bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06 - 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": "bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8c0fb71e-7ad0-468b-a248-8fe3259bd0e1 - status: 404 Not Found - code: 404 - duration: 28.30736ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"bd4f793d-0ab2-4ceb-9e7f-47fe049a8c06","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 65d34693-3a87-4d78-91b3-84e6a9576fd3 - status: 404 Not Found - code: 404 - duration: 17.855847ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 825b82b2-1292-4fdc-a600-b56e77e07c1c - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 47.698418ms - - 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: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3d5d1160-9af1-46c0-bfa2-c4e6d42f7e26 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 51.773938ms - - id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 278 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","basic"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2159 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:59 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d9ac99c5-1de0-440c-a0f8-4e746180c64d - status: 201 Created - code: 201 - duration: 843.183733ms - - 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/8af385ce-0340-4be6-ac53-5275a04294de - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2205 - uncompressed: false - 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: - - "2205" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 252debaa-4d53-4f1c-bc69-7ea58bf341ab - status: 200 OK - code: 200 - duration: 144.434626ms - - 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/8af385ce-0340-4be6-ac53-5275a04294de - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2205 - uncompressed: false - 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: - - "2205" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ee8af9c1-0229-4a2b-bd62-431ef47b070e - status: 200 OK - code: 200 - duration: 139.781356ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweron"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:59 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b32a18d9-2219-46b7-b185-6f2368fa4ae9 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8f0d4927-ae51-4fe6-933c-1f499750a7dc - status: 202 Accepted - code: 202 - duration: 246.369418ms - - 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/8af385ce-0340-4be6-ac53-5275a04294de - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2181 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7574d1ff-9632-42b5-a0ca-3fd1acc87365 - status: 200 OK - code: 200 - duration: 135.688774ms - - 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/8af385ce-0340-4be6-ac53-5275a04294de - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2329 - uncompressed: false - 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: - - "2329" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3b42fb24-05d4-4e73-afad-04be96ade0b4 - status: 200 OK - code: 200 - duration: 134.296373ms - - 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/8af385ce-0340-4be6-ac53-5275a04294de - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2329 - uncompressed: false - 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: - - "2329" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 67da9992-89bc-4994-9c49-275f03a354b4 - status: 200 OK - code: 200 - duration: 163.741834ms - - 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/8af385ce-0340-4be6-ac53-5275a04294de - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2360 - uncompressed: false - 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: - - "2360" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4533178a-56a7-46cf-8a23-6fcfcecd69d9 - status: 200 OK - code: 200 - duration: 121.267074ms - - 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/8af385ce-0340-4be6-ac53-5275a04294de - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2360 - uncompressed: false - 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: - - "2360" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e07d6a36-6859-46d1-b345-5f59f739230d - status: 200 OK - code: 200 - duration: 124.285448ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9866d34-c36f-4233-aa3d-b293e7dba484 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 504 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e706d149-602e-4fa9-9a09-79a043cf23d9 - status: 200 OK - code: 200 - duration: 78.82359ms - - 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/8af385ce-0340-4be6-ac53-5275a04294de/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:54:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8ecc89ad-2513-4591-9524-d806bd58fc4c - status: 200 OK - code: 200 - duration: 105.759046ms - - 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/8af385ce-0340-4be6-ac53-5275a04294de/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:54:15 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 98840f23-dca9-48be-bb2b-028decf542fe - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 100.599257ms - - 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/8af385ce-0340-4be6-ac53-5275a04294de - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2360 - uncompressed: false - 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: - - "2360" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1b72fa43-02d6-4042-87b0-a57374410b25 - status: 200 OK - code: 200 - duration: 122.236737ms - - 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: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c8b9e862-c5bb-41c5-bc33-88a948da7695 - status: 200 OK - code: 200 - duration: 47.043305ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4eca811a-b3ee-4907-9f23-2de6aa9b4971 - status: 200 OK - code: 200 - duration: 93.607244ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2314 - uncompressed: false - 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: - - "2314" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a6e1eaf0-7e34-432d-acd6-ef518b42df25 - status: 200 OK - code: 200 - duration: 131.540374ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9866d34-c36f-4233-aa3d-b293e7dba484 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 504 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e57116f0-d726-400e-bf4d-e98f07ed0238 - status: 200 OK - code: 200 - duration: 95.267728ms - - 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/8af385ce-0340-4be6-ac53-5275a04294de/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:54:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b2ea81f4-c514-4045-8260-1387b89003a5 - status: 200 OK - code: 200 - duration: 99.727508ms - - 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/8af385ce-0340-4be6-ac53-5275a04294de/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:54:16 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 51397b66-fdac-44d5-b517-9f6f74481bb3 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 116.266123ms - - 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/8af385ce-0340-4be6-ac53-5275a04294de - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2360 - uncompressed: false - 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: - - "2360" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8f0d0735-0cd1-446a-ba69-49c8fe48425c - status: 200 OK - code: 200 - duration: 135.599314ms - - 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/8af385ce-0340-4be6-ac53-5275a04294de - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2360 - uncompressed: false - 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: - - "2360" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f844dc4f-d211-4a9b-87f2-cb34320ef97b - status: 200 OK - code: 200 - duration: 138.743503ms - - id: 56 - 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/8af385ce-0340-4be6-ac53-5275a04294de/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a920d783-ad8d-4aa4-b341-f1f8666949ea - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 425e0098-56dd-4347-92f3-8a49645dbefc - status: 202 Accepted - code: 202 - duration: 252.139379ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2323 - uncompressed: false - 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: - - "2323" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f214f7fc-b44f-4db6-86c5-a7cba95ff321 - status: 200 OK - code: 200 - duration: 115.77762ms - - 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/8af385ce-0340-4be6-ac53-5275a04294de - 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": "8af385ce-0340-4be6-ac53-5275a04294de"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c979496d-e8fb-4a2d-9381-6b83252270e1 - status: 404 Not Found - code: 404 - duration: 51.118757ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9866d34-c36f-4233-aa3d-b293e7dba484 - 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": "a9866d34-c36f-4233-aa3d-b293e7dba484"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 603515fa-20a4-4952-8806-8cef4a2025c5 - status: 404 Not Found - code: 404 - duration: 35.946977ms - - id: 60 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a9866d34-c36f-4233-aa3d-b293e7dba484 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"a9866d34-c36f-4233-aa3d-b293e7dba484","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ad7ca016-4607-4d18-95b7-23de68178750 - status: 404 Not Found - code: 404 - duration: 19.062685ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8af385ce-0340-4be6-ac53-5275a04294de - 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": "8af385ce-0340-4be6-ac53-5275a04294de"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1fcba6a9-c83f-419c-8155-8dcb812e0624 - status: 404 Not Found - code: 404 - duration: 53.694382ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4d31132a-2900-4d16-b5a7-f08fc76c2557 + status: 200 OK + code: 200 + duration: 42.983244ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:04 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ae9508e9-6304-43ee-902e-371791bb19e3 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 69.373464ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:04 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 89392fa9-04cc-42b9-a692-21650ee8c868 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 37.044966ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 278 + host: api.scaleway.com + body: "{\"name\":\"test\",\"dynamic_ip_required\":false,\"commercial_type\":\"DEV1-M\",\"image\":\"a02f91b9-de8a-4bd5-8f95-d79cb7d39806\",\"volumes\":{\"0\":{\"boot\":false}},\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[\"terraform-test\",\"scaleway_instance_server\",\"basic\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2205 + body: "{\"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"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\": \"3c2d500d-8e41-4064-984e-22863cd1ceff\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:05.415771+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:6c:c3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:05.415771+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2205" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:05 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08308411-7ded-4308-b86d-6ba82c14d494 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5ca72596-c42a-43bc-9c64-9286e029b548 + status: 201 Created + code: 201 + duration: 921.63235ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08308411-7ded-4308-b86d-6ba82c14d494 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2205 + body: "{\"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"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\": \"3c2d500d-8e41-4064-984e-22863cd1ceff\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:05.415771+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:6c:c3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:05.415771+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2205" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c1c6fe65-11d1-4be4-9ba5-6438050b94fd + status: 200 OK + code: 200 + duration: 128.442001ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08308411-7ded-4308-b86d-6ba82c14d494 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2159 + body: "{\"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"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\": \"3c2d500d-8e41-4064-984e-22863cd1ceff\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:05.415771+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:6c:c3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:05.415771+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 94e85bdd-4097-452b-add9-f104e75f7228 + status: 200 OK + code: 200 + duration: 131.786043ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08308411-7ded-4308-b86d-6ba82c14d494/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"97078159-a051-4418-bf8f-8b29d0afcfa9\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/08308411-7ded-4308-b86d-6ba82c14d494/action\", \"href_result\": \"/servers/08308411-7ded-4308-b86d-6ba82c14d494\", \"started_at\": \"2025-10-30T15:42:06.193781+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:06 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/97078159-a051-4418-bf8f-8b29d0afcfa9 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ff862285-a835-4ab4-8c23-b04645f0af17 + status: 202 Accepted + code: 202 + duration: 295.845482ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08308411-7ded-4308-b86d-6ba82c14d494 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2181 + body: "{\"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"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\": \"3c2d500d-8e41-4064-984e-22863cd1ceff\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:05.415771+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:6c:c3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:05.951357+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 924b4ebe-8832-4679-bd82-85e2015c287e + status: 200 OK + code: 200 + duration: 127.33275ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08308411-7ded-4308-b86d-6ba82c14d494 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2329 + body: "{\"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"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\": \"3c2d500d-8e41-4064-984e-22863cd1ceff\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:05.415771+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:6c:c3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:05.951357+00:00\", \"bootscript\": 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\": \"501\", \"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: + - "2329" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 36c64cc3-2984-42b0-b1ac-db38cadccd11 + status: 200 OK + code: 200 + duration: 131.254689ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08308411-7ded-4308-b86d-6ba82c14d494 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2360 + body: "{\"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"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\": \"3c2d500d-8e41-4064-984e-22863cd1ceff\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:05.415771+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:6c:c3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:15.643232+00:00\", \"bootscript\": 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\": \"501\", \"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: + - "2360" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - da246c4f-af77-49b2-b81b-0d25744c5b15 + status: 200 OK + code: 200 + duration: 125.10794ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08308411-7ded-4308-b86d-6ba82c14d494 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2314 + body: "{\"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"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\": \"3c2d500d-8e41-4064-984e-22863cd1ceff\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:05.415771+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:6c:c3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:15.643232+00:00\", \"bootscript\": 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\": \"501\", \"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: + - "2314" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7f105b68-e119-4d8d-8d4b-aca7a2bdf004 + status: 200 OK + code: 200 + duration: 123.05539ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3c2d500d-8e41-4064-984e-22863cd1ceff + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 504 + body: "{\"volume\": {\"id\": \"3c2d500d-8e41-4064-984e-22863cd1ceff\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:05.415771+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "504" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ff34d078-f9f5-48b4-b029-1d5abbcc9a66 + status: 200 OK + code: 200 + duration: 102.033368ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08308411-7ded-4308-b86d-6ba82c14d494/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b56ca18a-7228-4ca4-8057-868734859802 + status: 200 OK + code: 200 + duration: 117.994988ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08308411-7ded-4308-b86d-6ba82c14d494/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:17 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aa9cb091-7f9b-4810-8226-94e8acb89c3d + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 108.577244ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08308411-7ded-4308-b86d-6ba82c14d494 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2360 + body: "{\"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"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\": \"3c2d500d-8e41-4064-984e-22863cd1ceff\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:05.415771+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:6c:c3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:15.643232+00:00\", \"bootscript\": 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\": \"501\", \"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: + - "2360" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 79744402-a69a-4f51-b0ed-1df1f8a13db7 + status: 200 OK + code: 200 + duration: 156.872964ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6c0ad5d3-98e7-4677-a505-80965448047f + status: 200 OK + code: 200 + duration: 47.760196ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 30694f10-dcf0-41db-a902-4a42449df1b9 + status: 200 OK + code: 200 + duration: 41.203577ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08308411-7ded-4308-b86d-6ba82c14d494 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2314 + body: "{\"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"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\": \"3c2d500d-8e41-4064-984e-22863cd1ceff\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:05.415771+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:6c:c3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:15.643232+00:00\", \"bootscript\": 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\": \"501\", \"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: + - "2314" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 26e9286d-9835-4e20-bbb5-0df19aa9aa2c + status: 200 OK + code: 200 + duration: 151.789267ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3c2d500d-8e41-4064-984e-22863cd1ceff + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 504 + body: "{\"volume\": {\"id\": \"3c2d500d-8e41-4064-984e-22863cd1ceff\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:05.415771+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "504" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 22869016-3069-49d2-8b7b-1181ab114a73 + status: 200 OK + code: 200 + duration: 111.399286ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08308411-7ded-4308-b86d-6ba82c14d494/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1dfd4a93-6bc7-4eee-b099-1a1f4500d5df + status: 200 OK + code: 200 + duration: 103.849646ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08308411-7ded-4308-b86d-6ba82c14d494/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:18 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 595e62d1-fc29-4d33-aa18-4e6f3c40da7b + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 96.856438ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 97629e7a-c75d-4695-ad20-f5d41be466d5 + status: 200 OK + code: 200 + duration: 52.241352ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08308411-7ded-4308-b86d-6ba82c14d494 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2360 + body: "{\"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"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\": \"3c2d500d-8e41-4064-984e-22863cd1ceff\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:05.415771+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:6c:c3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:15.643232+00:00\", \"bootscript\": 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\": \"501\", \"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: + - "2360" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a0664663-6b88-4019-8d95-630606949cba + status: 200 OK + code: 200 + duration: 127.073257ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3c2d500d-8e41-4064-984e-22863cd1ceff + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 504 + body: "{\"volume\": {\"id\": \"3c2d500d-8e41-4064-984e-22863cd1ceff\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:05.415771+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "504" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1f725fb9-fce9-46ef-8965-a5924a21ce65 + status: 200 OK + code: 200 + duration: 101.948089ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08308411-7ded-4308-b86d-6ba82c14d494/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dc31e39d-822d-4db6-b81b-26aba7e30471 + status: 200 OK + code: 200 + duration: 108.527129ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08308411-7ded-4308-b86d-6ba82c14d494/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:18 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f762a6ab-8f94-438e-8892-c9b27509c5df + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 101.873268ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08308411-7ded-4308-b86d-6ba82c14d494 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2360 + body: "{\"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"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\": \"3c2d500d-8e41-4064-984e-22863cd1ceff\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:05.415771+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:6c:c3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:15.643232+00:00\", \"bootscript\": 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\": \"501\", \"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: + - "2360" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3e983e89-272d-4f84-b0e9-e441a4a9436b + status: 200 OK + code: 200 + duration: 337.287175ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08308411-7ded-4308-b86d-6ba82c14d494 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2360 + body: "{\"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"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\": \"3c2d500d-8e41-4064-984e-22863cd1ceff\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:05.415771+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:6c:c3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:15.643232+00:00\", \"bootscript\": 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\": \"501\", \"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: + - "2360" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a10f0a46-0c52-4dcb-9e50-ada10ddfca7c + status: 200 OK + code: 200 + duration: 107.012137ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08308411-7ded-4308-b86d-6ba82c14d494/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"14c6b9f9-190e-45a3-8c6d-0a528974b6e1\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/08308411-7ded-4308-b86d-6ba82c14d494/action\", \"href_result\": \"/servers/08308411-7ded-4308-b86d-6ba82c14d494\", \"started_at\": \"2025-10-30T15:42:19.482145+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:19 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/14c6b9f9-190e-45a3-8c6d-0a528974b6e1 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 81b06870-1ee2-48a6-b5de-0118c310c35b + status: 202 Accepted + code: 202 + duration: 260.469645ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08308411-7ded-4308-b86d-6ba82c14d494 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2277 + body: "{\"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"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\": \"3c2d500d-8e41-4064-984e-22863cd1ceff\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08308411-7ded-4308-b86d-6ba82c14d494\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:05.415771+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:6c:c3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:05.415771+00:00\", \"modification_date\": \"2025-10-30T15:42:19.270840+00:00\", \"bootscript\": 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\": \"501\", \"node_id\": \"2\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2277" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 298ecbe6-c3ce-44a3-b74c-c6dc527a389a + status: 200 OK + code: 200 + duration: 141.132618ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08308411-7ded-4308-b86d-6ba82c14d494 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"08308411-7ded-4308-b86d-6ba82c14d494\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b31c72ca-7ff5-4bab-b69c-0561797fe03f + status: 404 Not Found + code: 404 + duration: 52.023624ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3c2d500d-8e41-4064-984e-22863cd1ceff + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"3c2d500d-8e41-4064-984e-22863cd1ceff\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d46836fd-ed43-4e30-9e49-1ef317ecae67 + status: 404 Not Found + code: 404 + duration: 26.608812ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3c2d500d-8e41-4064-984e-22863cd1ceff + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"3c2d500d-8e41-4064-984e-22863cd1ceff\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0607db51-39c7-4461-9c6e-c4a5f3c70642 + status: 404 Not Found + code: 404 + duration: 19.336691ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:24 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 547e8e87-5b3e-4de0-94c6-57d749e4c89b + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 55.109983ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:24 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7f052983-5116-4301-ac07-a451f69d6120 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 39.737558ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 278 + host: api.scaleway.com + body: "{\"name\":\"test\",\"dynamic_ip_required\":false,\"commercial_type\":\"DEV1-S\",\"image\":\"a02f91b9-de8a-4bd5-8f95-d79cb7d39806\",\"volumes\":{\"0\":{\"boot\":false}},\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[\"terraform-test\",\"scaleway_instance_server\",\"basic\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2159 + body: "{\"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"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\": \"7c625910-e05f-47a4-9800-18067da5e21f\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:25.576341+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:6c:d5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:25.576341+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:25 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53993e45-6744-46ec-8151-840154831a50 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a80fbe3e-70d8-460a-b88e-76c33cf3385e + status: 201 Created + code: 201 + duration: 991.952283ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53993e45-6744-46ec-8151-840154831a50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2159 + body: "{\"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"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\": \"7c625910-e05f-47a4-9800-18067da5e21f\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:25.576341+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:6c:d5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:25.576341+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c88c0f89-95bf-4cb7-aaeb-f8bcb8186a0e + status: 200 OK + code: 200 + duration: 148.719111ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53993e45-6744-46ec-8151-840154831a50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2159 + body: "{\"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"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\": \"7c625910-e05f-47a4-9800-18067da5e21f\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:25.576341+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:6c:d5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:25.576341+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4fab51bd-dffb-45c0-abd4-be6baaa61b6b + status: 200 OK + code: 200 + duration: 151.73619ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53993e45-6744-46ec-8151-840154831a50/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"fbc345c3-31f5-45af-a654-fe1a9327a75a\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/53993e45-6744-46ec-8151-840154831a50/action\", \"href_result\": \"/servers/53993e45-6744-46ec-8151-840154831a50\", \"started_at\": \"2025-10-30T15:42:26.370744+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:26 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fbc345c3-31f5-45af-a654-fe1a9327a75a + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 06b56bfe-6c65-4ecd-ba0e-c229517eaf3a + status: 202 Accepted + code: 202 + duration: 264.23969ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53993e45-6744-46ec-8151-840154831a50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2227 + body: "{\"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"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\": \"7c625910-e05f-47a4-9800-18067da5e21f\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:25.576341+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:6c:d5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:26.179750+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: + - "2227" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ef15b145-d5e7-4061-bccd-af83e5a3a6e9 + status: 200 OK + code: 200 + duration: 131.640265ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53993e45-6744-46ec-8151-840154831a50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2284 + body: "{\"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"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\": \"7c625910-e05f-47a4-9800-18067da5e21f\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:25.576341+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:6c:d5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:26.179750+00:00\", \"bootscript\": 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\": \"703\", \"node_id\": \"17\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d1d1ebab-5c58-467c-9569-eb67d5bd1b7e + status: 200 OK + code: 200 + duration: 133.34241ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53993e45-6744-46ec-8151-840154831a50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2361 + body: "{\"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"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\": \"7c625910-e05f-47a4-9800-18067da5e21f\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:25.576341+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:6c:d5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:33.427075+00:00\", \"bootscript\": 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\": \"703\", \"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: + - "2361" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 095a35a3-e6f9-4b6d-8882-d349db0394c4 + status: 200 OK + code: 200 + duration: 152.132848ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53993e45-6744-46ec-8151-840154831a50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2361 + body: "{\"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"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\": \"7c625910-e05f-47a4-9800-18067da5e21f\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:25.576341+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:6c:d5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:33.427075+00:00\", \"bootscript\": 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\": \"703\", \"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: + - "2361" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ba15de1b-8eed-4990-ba4f-7e76fdb0e824 + status: 200 OK + code: 200 + duration: 171.54938ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7c625910-e05f-47a4-9800-18067da5e21f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 504 + body: "{\"volume\": {\"id\": \"7c625910-e05f-47a4-9800-18067da5e21f\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:25.576341+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "504" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1d82e3ac-1ea7-4a86-a273-d320b807dbf3 + status: 200 OK + code: 200 + duration: 113.440459ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53993e45-6744-46ec-8151-840154831a50/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ac78e062-9e7c-40c3-a35e-33e043f45af8 + status: 200 OK + code: 200 + duration: 89.570915ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53993e45-6744-46ec-8151-840154831a50/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2ad903da-f1b1-407c-81fd-f1d87f1e8064 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 102.605215ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53993e45-6744-46ec-8151-840154831a50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2361 + body: "{\"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"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\": \"7c625910-e05f-47a4-9800-18067da5e21f\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:25.576341+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:6c:d5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:33.427075+00:00\", \"bootscript\": 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\": \"703\", \"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: + - "2361" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eebe98b1-b19c-4781-8ec3-1f9e6c6ab996 + status: 200 OK + code: 200 + duration: 139.630347ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 62bf579c-bfb7-4248-979d-f2eb576163ea + status: 200 OK + code: 200 + duration: 38.598843ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4f416c1b-0542-44c6-bbb9-35d4beccb23d + status: 200 OK + code: 200 + duration: 72.522366ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53993e45-6744-46ec-8151-840154831a50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2361 + body: "{\"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"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\": \"7c625910-e05f-47a4-9800-18067da5e21f\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:25.576341+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:6c:d5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:33.427075+00:00\", \"bootscript\": 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\": \"703\", \"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: + - "2361" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f3baab65-9c61-4f97-a8d9-aaddb4789bc6 + status: 200 OK + code: 200 + duration: 142.590279ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7c625910-e05f-47a4-9800-18067da5e21f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 504 + body: "{\"volume\": {\"id\": \"7c625910-e05f-47a4-9800-18067da5e21f\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:25.576341+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "504" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d3a49749-fda0-43c2-b2a2-ff06debd04ea + status: 200 OK + code: 200 + duration: 88.644428ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53993e45-6744-46ec-8151-840154831a50/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1691e0cd-5e60-4e3f-ac84-7b90bff902ee + status: 200 OK + code: 200 + duration: 125.132672ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53993e45-6744-46ec-8151-840154831a50/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dbce9e6b-cce9-417d-b64a-d078a0963dda + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 98.7318ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53993e45-6744-46ec-8151-840154831a50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2315 + body: "{\"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"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\": \"7c625910-e05f-47a4-9800-18067da5e21f\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:25.576341+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:6c:d5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:33.427075+00:00\", \"bootscript\": 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\": \"703\", \"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}}" + headers: + Content-Length: + - "2315" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 16a0116a-37f8-438d-b398-d6237fa451d7 + status: 200 OK + code: 200 + duration: 125.53706ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53993e45-6744-46ec-8151-840154831a50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2315 + body: "{\"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"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\": \"7c625910-e05f-47a4-9800-18067da5e21f\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:25.576341+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:6c:d5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:33.427075+00:00\", \"bootscript\": 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\": \"703\", \"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}}" + headers: + Content-Length: + - "2315" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c8591fae-af34-4097-98fc-b4ebe9a3a84d + status: 200 OK + code: 200 + duration: 147.22399ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53993e45-6744-46ec-8151-840154831a50/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"6c4e4280-f7ff-419d-a6dd-e49f4a00f091\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/53993e45-6744-46ec-8151-840154831a50/action\", \"href_result\": \"/servers/53993e45-6744-46ec-8151-840154831a50\", \"started_at\": \"2025-10-30T15:42:38.977095+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6c4e4280-f7ff-419d-a6dd-e49f4a00f091 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8cef366d-2540-47e0-826a-fc1913986c8d + status: 202 Accepted + code: 202 + duration: 254.429977ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53993e45-6744-46ec-8151-840154831a50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2324 + body: "{\"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"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\": \"7c625910-e05f-47a4-9800-18067da5e21f\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:25.576341+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:6c:d5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:38.775218+00:00\", \"bootscript\": 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\": \"703\", \"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: + - "2324" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8d2eec8e-e9b7-43a7-8262-04c0e5087bb6 + status: 200 OK + code: 200 + duration: 128.691048ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53993e45-6744-46ec-8151-840154831a50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2324 + body: "{\"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"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\": \"7c625910-e05f-47a4-9800-18067da5e21f\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:25.576341+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:6c:d5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:38.775218+00:00\", \"bootscript\": 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\": \"703\", \"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: + - "2324" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ed8fec67-6f1b-49bb-a8ec-2f12309c8e94 + status: 200 OK + code: 200 + duration: 150.421801ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53993e45-6744-46ec-8151-840154831a50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2324 + body: "{\"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"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\": \"7c625910-e05f-47a4-9800-18067da5e21f\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"53993e45-6744-46ec-8151-840154831a50\", \"name\": \"test\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:25.576341+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:6c:d5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:25.576341+00:00\", \"modification_date\": \"2025-10-30T15:42:38.775218+00:00\", \"bootscript\": 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\": \"703\", \"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: + - "2324" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 33bfcaea-4aee-4aa2-acf6-588d08ab0604 + status: 200 OK + code: 200 + duration: 161.10347ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53993e45-6744-46ec-8151-840154831a50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"53993e45-6744-46ec-8151-840154831a50\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b7eb7b6f-c545-4341-b195-cdd630a15ef8 + status: 404 Not Found + code: 404 + duration: 53.820978ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7c625910-e05f-47a4-9800-18067da5e21f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"7c625910-e05f-47a4-9800-18067da5e21f\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 72299b42-d781-4840-babf-535f2cbf2116 + status: 404 Not Found + code: 404 + duration: 39.02792ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7c625910-e05f-47a4-9800-18067da5e21f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"7c625910-e05f-47a4-9800-18067da5e21f\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 959b9c35-c8b8-4167-9ada-37c740338861 + status: 404 Not Found + code: 404 + duration: 24.720561ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/53993e45-6744-46ec-8151-840154831a50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"53993e45-6744-46ec-8151-840154831a50\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d350db82-ef9a-4cb5-beab-f0a59425d5d5 + status: 404 Not Found + code: 404 + duration: 56.805867ms diff --git a/internal/services/instance/testdata/server-basic2.cassette.yaml b/internal/services/instance/testdata/server-basic2.cassette.yaml index 1e6f3507b..da4e9a2cb 100644 --- a/internal/services/instance/testdata/server-basic2.cassette.yaml +++ b/internal/services/instance/testdata/server-basic2.cassette.yaml @@ -1,1465 +1,1168 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 08fd356d-8f9f-478a-8687-da2a1cf883d8 - status: 200 OK - code: 200 - duration: 53.596197ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:14 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f55956d1-5e74-45ab-aac8-60bfde15618f - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 37.802873ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:14 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 71ef9f35-b744-4f3d-bb82-922c4495176f - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 32.059562ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 233 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2200 - uncompressed: false - 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: - - "2200" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:14 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9996f3d7-7908-49e4-a629-406fcb0c450e - status: 201 Created - code: 201 - duration: 844.231759ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2154 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f11fce94-5790-4985-b280-bd165056ffae - status: 200 OK - code: 200 - duration: 117.770364ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2200 - uncompressed: false - 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: - - "2200" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c759c78c-d759-46c2-870e-86ce25e00426 - status: 200 OK - code: 200 - duration: 156.691268ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2200 - uncompressed: false - 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: - - "2200" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 01bb970b-b6e7-401f-a775-5f640707a1ea - status: 200 OK - code: 200 - duration: 131.012118ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6635ec0-0644-4d01-8dda-9737753cf558 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 520 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0c44994a-6f26-430f-8f9a-064cfb61f50e - status: 200 OK - code: 200 - duration: 85.943377ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6/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:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a4f742ee-7cb9-4a32-ba92-461feb10ab4c - status: 200 OK - code: 200 - duration: 99.880049ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6/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:55:15 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fea2a0ae-a1af-48a4-98d6-722d70ae5403 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 110.67733ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 41ef2706-8f77-45c4-8e15-8275fcf6df40 - status: 200 OK - code: 200 - duration: 36.999671ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4cdfcf57-b33f-45d3-bfef-261f39ac9dbb - status: 200 OK - code: 200 - duration: 47.852706ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2200 - uncompressed: false - 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: - - "2200" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c04c3b9e-3b5f-452b-9f64-499a8b033fa6 - status: 200 OK - code: 200 - duration: 126.924834ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6635ec0-0644-4d01-8dda-9737753cf558 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 520 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 991ac995-f429-4e1b-ba98-d658d84cff95 - status: 200 OK - code: 200 - duration: 101.694001ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6/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:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a3a71c48-0b03-4fc3-9f0e-d41a88fe1d4b - status: 200 OK - code: 200 - duration: 102.605576ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6/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:55:16 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - abca80b9-4757-489c-bbb8-c0a70151a737 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 119.737353ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c1064d1d-0b2a-4e0c-bcd0-2f49213f58d1 - status: 200 OK - code: 200 - duration: 39.366216ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2200 - uncompressed: false - 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: - - "2200" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1a2dbfaf-2f18-4f7e-8e4d-eee059e25de6 - status: 200 OK - code: 200 - duration: 137.055108ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6635ec0-0644-4d01-8dda-9737753cf558 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 520 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 97fb660b-566a-4c25-ba94-20bae0d1a4da - status: 200 OK - code: 200 - duration: 118.644961ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6/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:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a19b92d2-49ab-4058-bb24-db4f221f2b51 - status: 200 OK - code: 200 - duration: 94.164761ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6/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:55:17 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9e1c40f2-2f45-4f4d-8a3c-bde904ae7685 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 90.90728ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2200 - uncompressed: false - 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: - - "2200" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9fb2ed2a-58e6-4514-afbe-833fc9b434fa - status: 200 OK - code: 200 - duration: 126.86374ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2154 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b421ef96-8292-4293-af9d-256d54f05969 - status: 200 OK - code: 200 - duration: 110.685165ms - - id: 23 - 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/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/631d6ab3-3b37-4ddd-9e9e-9cf90b548fa7 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - df0c5f2f-39f5-4f6e-9c9c-8c4f12a538ef - status: 202 Accepted - code: 202 - duration: 288.643084ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2176 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2374832a-c518-4b89-aef9-0c0f7841dd43 - status: 200 OK - code: 200 - duration: 116.884008ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2279 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e80453d2-9e2c-421d-8973-75a6ea73f1c3 - status: 200 OK - code: 200 - duration: 142.28509ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2325 - uncompressed: false - 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: - - "2325" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 293481de-a30e-4e30-9dae-e72ea1fd2135 - status: 200 OK - code: 200 - duration: 126.372155ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2310 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 06ad55c9-b69b-4b86-80f0-ac5e219b9bf0 - status: 200 OK - code: 200 - duration: 126.955175ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 22 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"terminate"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/776ba552-8e1f-421c-9e5a-7cda78d996fe - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7299aecf-7f24-4838-ad08-427001564139 - status: 202 Accepted - code: 202 - duration: 281.367499ms - - 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/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2319 - uncompressed: false - 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: - - "2319" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bdfe8871-a026-4f20-a76e-36ba31aa08b1 - status: 200 OK - code: 200 - duration: 137.919981ms - - 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/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 - 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": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e8dd5139-2f4a-4319-aaa5-c86b59480e0a - status: 404 Not Found - code: 404 - duration: 62.834656ms - - 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/d6635ec0-0644-4d01-8dda-9737753cf558 - 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": "d6635ec0-0644-4d01-8dda-9737753cf558"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 61c6be4a-cce3-4d43-afe7-610330e4d0f6 - status: 404 Not Found - code: 404 - duration: 52.515459ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/d6635ec0-0644-4d01-8dda-9737753cf558 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"d6635ec0-0644-4d01-8dda-9737753cf558","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c43079a9-586f-47d1-81fb-c2d8566b5ea2 - status: 404 Not Found - code: 404 - duration: 25.486633ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8bc8b7e9-655d-4879-80ff-ef7fd47a82e6 - 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": "8bc8b7e9-655d-4879-80ff-ef7fd47a82e6"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2a9fec50-88dd-4ccc-b5b8-0bc10523e8db - status: 404 Not Found - code: 404 - duration: 52.220607ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 17f8c0af-880a-4fcc-bc26-43ba8de6e186 + status: 200 OK + code: 200 + duration: 44.118346ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1b88d351-7bb4-48ef-96b9-69d5187180f9 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 42.862229ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bdd3c9c6-30e5-470c-83c2-5a13bda7ad5d + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 43.671739ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 235 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-boring-dijkstra\",\"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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2206 + body: "{\"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-boring-dijkstra\", \"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\": \"9129d928-02b5-4910-a989-4d98d9b0ee54\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+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:6c:d7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:31 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6894bbae-5381-47c4-9208-fcb316d20a2a + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2c73f8f9-87e4-418e-bf88-2b7aeeb88ff2 + status: 201 Created + code: 201 + duration: 963.889676ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6894bbae-5381-47c4-9208-fcb316d20a2a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2160 + body: "{\"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-boring-dijkstra\", \"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\": \"9129d928-02b5-4910-a989-4d98d9b0ee54\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+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:6c:d7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9d521a95-1ea2-4d1e-a6b7-88b848696d23 + status: 200 OK + code: 200 + duration: 131.03403ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6894bbae-5381-47c4-9208-fcb316d20a2a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2206 + body: "{\"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-boring-dijkstra\", \"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\": \"9129d928-02b5-4910-a989-4d98d9b0ee54\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+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:6c:d7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b6d7cc4c-4238-430e-b4d5-c32614180a0b + status: 200 OK + code: 200 + duration: 143.364269ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6894bbae-5381-47c4-9208-fcb316d20a2a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2206 + body: "{\"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-boring-dijkstra\", \"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\": \"9129d928-02b5-4910-a989-4d98d9b0ee54\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+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:6c:d7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e552fb51-2db5-4ca2-94d6-0b3495cd9286 + status: 200 OK + code: 200 + duration: 140.457065ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9129d928-02b5-4910-a989-4d98d9b0ee54 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 522 + body: "{\"volume\": {\"id\": \"9129d928-02b5-4910-a989-4d98d9b0ee54\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "522" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8a2bab8e-b9c9-4708-ac2a-a0e991c32ffb + status: 200 OK + code: 200 + duration: 97.594996ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6894bbae-5381-47c4-9208-fcb316d20a2a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 57909bb8-ceaa-480c-aabc-3e5fda85dd83 + status: 200 OK + code: 200 + duration: 98.208217ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6894bbae-5381-47c4-9208-fcb316d20a2a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 39bc62ab-f4de-4b7d-83fb-ce907b899b63 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 102.647844ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 09e782d5-de17-42ed-bbf4-b42883b53f77 + status: 200 OK + code: 200 + duration: 45.564949ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4c4a7cdc-efc0-4e97-bb8d-c7366a67b688 + status: 200 OK + code: 200 + duration: 104.239289ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6894bbae-5381-47c4-9208-fcb316d20a2a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2160 + body: "{\"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-boring-dijkstra\", \"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\": \"9129d928-02b5-4910-a989-4d98d9b0ee54\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+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:6c:d7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 84c819e6-0d58-4630-acc8-bae3c8971158 + status: 200 OK + code: 200 + duration: 130.449123ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9129d928-02b5-4910-a989-4d98d9b0ee54 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 522 + body: "{\"volume\": {\"id\": \"9129d928-02b5-4910-a989-4d98d9b0ee54\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "522" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bcf9e2af-a813-4634-89ff-573a9a8fa247 + status: 200 OK + code: 200 + duration: 106.544473ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6894bbae-5381-47c4-9208-fcb316d20a2a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 056f17cf-3617-4b91-866b-c56aacc56e35 + status: 200 OK + code: 200 + duration: 90.254087ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6894bbae-5381-47c4-9208-fcb316d20a2a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 272b7f08-b5a3-48f8-886f-199edc04f1ac + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 107.490819ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b92f6846-e2bf-4c68-991f-ec3a6cf669ae + status: 200 OK + code: 200 + duration: 39.918518ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6894bbae-5381-47c4-9208-fcb316d20a2a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2160 + body: "{\"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-boring-dijkstra\", \"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\": \"9129d928-02b5-4910-a989-4d98d9b0ee54\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+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:6c:d7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 78bb6c85-4826-4557-8ecf-c6d914b40902 + status: 200 OK + code: 200 + duration: 148.607875ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9129d928-02b5-4910-a989-4d98d9b0ee54 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 522 + body: "{\"volume\": {\"id\": \"9129d928-02b5-4910-a989-4d98d9b0ee54\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "522" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 446d8abd-b7c2-4f9e-87e9-07732c166ab9 + status: 200 OK + code: 200 + duration: 126.413524ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6894bbae-5381-47c4-9208-fcb316d20a2a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 42e1e52b-0652-4db4-a754-e4c971f4f269 + status: 200 OK + code: 200 + duration: 102.486943ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6894bbae-5381-47c4-9208-fcb316d20a2a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:34 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 82c28d6f-9b83-4b56-bf65-b731bb237573 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 89.890945ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6894bbae-5381-47c4-9208-fcb316d20a2a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2160 + body: "{\"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-boring-dijkstra\", \"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\": \"9129d928-02b5-4910-a989-4d98d9b0ee54\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+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:6c:d7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a80a7738-9890-4a9d-b902-bc9ffa243218 + status: 200 OK + code: 200 + duration: 135.336521ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6894bbae-5381-47c4-9208-fcb316d20a2a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2206 + body: "{\"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-boring-dijkstra\", \"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\": \"9129d928-02b5-4910-a989-4d98d9b0ee54\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+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:6c:d7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e3645ff1-792e-4b66-9754-7659c5cb01d8 + status: 200 OK + code: 200 + duration: 144.853463ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6894bbae-5381-47c4-9208-fcb316d20a2a/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"a8599f9c-11f9-43ce-a95c-36b25a1bcd2b\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/6894bbae-5381-47c4-9208-fcb316d20a2a/action\", \"href_result\": \"/servers/6894bbae-5381-47c4-9208-fcb316d20a2a\", \"started_at\": \"2025-10-30T15:42:34.851376+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:34 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a8599f9c-11f9-43ce-a95c-36b25a1bcd2b + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ed5f25c6-c664-4674-a711-6d707dd04cd7 + status: 202 Accepted + code: 202 + duration: 250.3386ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6894bbae-5381-47c4-9208-fcb316d20a2a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2182 + body: "{\"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-boring-dijkstra\", \"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\": \"9129d928-02b5-4910-a989-4d98d9b0ee54\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+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:6c:d7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:34.654725+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: + - "2182" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 966530da-27bd-46e3-9057-cbc83d894e2d + status: 200 OK + code: 200 + duration: 125.453242ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6894bbae-5381-47c4-9208-fcb316d20a2a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2332 + body: "{\"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-boring-dijkstra\", \"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\": \"9129d928-02b5-4910-a989-4d98d9b0ee54\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+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:6c:d7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:34.654725+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1502\", \"node_id\": \"42\"}, \"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: + - "2332" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9e6d29ab-aa75-46ed-9026-f4362da1407d + status: 200 OK + code: 200 + duration: 133.996509ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6894bbae-5381-47c4-9208-fcb316d20a2a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2332 + body: "{\"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-boring-dijkstra\", \"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\": \"9129d928-02b5-4910-a989-4d98d9b0ee54\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+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:6c:d7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:34.654725+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1502\", \"node_id\": \"42\"}, \"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: + - "2332" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 110a64b0-1aba-49e3-98b2-6eb0e71aa5bc + status: 200 OK + code: 200 + duration: 131.375073ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6894bbae-5381-47c4-9208-fcb316d20a2a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2317 + body: "{\"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-boring-dijkstra\", \"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\": \"9129d928-02b5-4910-a989-4d98d9b0ee54\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+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:6c:d7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:45.988261+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1502\", \"node_id\": \"42\"}, \"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: + - "2317" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4e5db2e3-c9eb-4795-a529-92e102058b0b + status: 200 OK + code: 200 + duration: 125.855732ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6894bbae-5381-47c4-9208-fcb316d20a2a/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"a5b66861-f1e5-4455-90c4-a4fcc04632f8\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/6894bbae-5381-47c4-9208-fcb316d20a2a/action\", \"href_result\": \"/servers/6894bbae-5381-47c4-9208-fcb316d20a2a\", \"started_at\": \"2025-10-30T15:42:50.640787+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a5b66861-f1e5-4455-90c4-a4fcc04632f8 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0a78b8b9-a57d-4f9f-a53a-b94f76118e88 + status: 202 Accepted + code: 202 + duration: 266.154875ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6894bbae-5381-47c4-9208-fcb316d20a2a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2280 + body: "{\"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-boring-dijkstra\", \"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\": \"9129d928-02b5-4910-a989-4d98d9b0ee54\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\", \"name\": \"tf-srv-boring-dijkstra\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:31.660929+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:6c:d7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:31.660929+00:00\", \"modification_date\": \"2025-10-30T15:42:50.427113+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1502\", \"node_id\": \"42\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2280" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aa518f5c-6e69-4ede-ad53-f85a440cd319 + status: 200 OK + code: 200 + duration: 141.011992ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6894bbae-5381-47c4-9208-fcb316d20a2a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c36e3cda-9a8a-4931-9865-ca458587691b + status: 404 Not Found + code: 404 + duration: 80.683608ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9129d928-02b5-4910-a989-4d98d9b0ee54 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"9129d928-02b5-4910-a989-4d98d9b0ee54\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3e19ca06-4983-4460-8b71-153267cf5575 + status: 404 Not Found + code: 404 + duration: 40.76093ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9129d928-02b5-4910-a989-4d98d9b0ee54 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"9129d928-02b5-4910-a989-4d98d9b0ee54\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7f2f7586-0150-42d2-bf35-52c184315995 + status: 404 Not Found + code: 404 + duration: 31.853341ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6894bbae-5381-47c4-9208-fcb316d20a2a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"6894bbae-5381-47c4-9208-fcb316d20a2a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b81c3597-c92b-4894-9097-605c2629a2f4 + status: 404 Not Found + code: 404 + duration: 42.074545ms 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 38522b5f1..c131bb2a4 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 @@ -1,2150 +1,1700 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:08 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 364b0904-d619-41f7-97e0-8a755ca77d91 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 42.90157ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:08 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cd41d47c-798e-4df1-9b85-494761ac57df - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 94.843332ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1916d421-8ae7-4b36-afc1-ced4e1572237 - status: 200 OK - code: 200 - duration: 45.569598ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 319 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-tests-instance-block-external-root-volume-iops-update","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false,"size":50000000000,"volume_type":"sbs_volume"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1862 - uncompressed: false - 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: - - "1862" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:09 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4f65ff53-5b58-4a28-927f-25e3ef72ea64 - status: 201 Created - code: 201 - duration: 1.106180052s - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1816 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b6de6e4d-0055-474e-b262-c64b0c220af0 - status: 200 OK - code: 200 - duration: 122.935001ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1816 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ec8422e5-4b90-4544-b5e2-94cd73ca210f - status: 200 OK - code: 200 - duration: 139.773767ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 18 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"perf_iops":5000}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 875291bf-3040-42d7-a8aa-1bf7fb9bff39 - status: 200 OK - code: 200 - duration: 183.579296ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1862 - uncompressed: false - 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: - - "1862" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 43ba0956-09f6-41ac-a82f-b9a778e35176 - status: 200 OK - code: 200 - duration: 142.229379ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9888cbc5-3a04-42f6-ac7d-4fe333685896 - status: 200 OK - code: 200 - duration: 80.287977ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweron"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/86f141c2-1b4c-4d49-af4c-01ceaab12c00 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 01ffa1aa-84ed-490a-bb34-f3f6a18540d4 - status: 202 Accepted - code: 202 - duration: 260.18556ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1884 - uncompressed: false - 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: - - "1884" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 525d84ad-6055-457b-a2fd-b565dc7f29c9 - status: 200 OK - code: 200 - duration: 157.726566ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2018 - uncompressed: false - 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: - - "2018" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bc6d2270-ad0e-4405-bd98-f895f18f7095 - status: 200 OK - code: 200 - duration: 156.562302ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1972 - uncompressed: false - 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: - - "1972" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4ee97714-dcea-4b51-a63a-600811e37892 - status: 200 OK - code: 200 - duration: 131.040949ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 - 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": "0ab28e47-aa65-438f-877d-9144ccac4d41"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 480ad1ed-6971-44c0-a209-47a4c411fd42 - status: 404 Not Found - code: 404 - duration: 27.187407ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2957164a-b442-4f86-994d-7d6126c249a6 - status: 200 OK - code: 200 - duration: 106.880583ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/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:54:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4df2857b-ba2c-4fd8-a5f7-2abe6d22a64f - status: 200 OK - code: 200 - duration: 106.787529ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/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:54:16 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0c8a0453-10a9-4bdd-accd-c56827b568f5 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 97.226932ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1972 - uncompressed: false - 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: - - "1972" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b3fb69c6-3ddb-42e8-847c-d448f90ca98f - status: 200 OK - code: 200 - duration: 146.710359ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 - 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": "0ab28e47-aa65-438f-877d-9144ccac4d41"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 646d7ed5-2148-4e49-9c5d-7dcfba6cc962 - status: 404 Not Found - code: 404 - duration: 34.769685ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ad15b2db-a89f-4392-9cdd-1460f496e6b2 - status: 200 OK - code: 200 - duration: 85.679419ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/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:54:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f12b39d6-2d94-48f9-92f1-382df644ba61 - status: 200 OK - code: 200 - duration: 100.137705ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/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:54:16 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b468c807-2604-478d-977c-6f4c3747891c - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 104.285981ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2018 - uncompressed: false - 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: - - "2018" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b57175a6-132b-4f7c-8abf-f046d9085680 - status: 200 OK - code: 200 - duration: 144.285606ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 - 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": "0ab28e47-aa65-438f-877d-9144ccac4d41"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 53fe7990-9771-4c65-9801-3e5c65e48950 - status: 404 Not Found - code: 404 - duration: 26.874331ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 133faba6-745c-4058-b7f2-f2fe642ed685 - status: 200 OK - code: 200 - duration: 90.984361ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/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:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6e9675cc-fb3b-4093-b247-478dca4263d3 - status: 200 OK - code: 200 - duration: 91.821614ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/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:54:17 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 039e9cb8-94cf-4698-8eba-4aca4088835b - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 100.458585ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2018 - uncompressed: false - 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: - - "2018" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0c369583-4d10-4cfd-b8cc-b30873735899 - status: 200 OK - code: 200 - duration: 152.811268ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 109 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1972 - uncompressed: false - 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: - - "1972" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c69070f3-f3d6-4607-ab1f-c0dd2ef1611c - status: 200 OK - code: 200 - duration: 270.488812ms - - 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/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2018 - uncompressed: false - 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: - - "2018" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a125a9c2-ee65-4d07-80fa-d51d323c402b - status: 200 OK - code: 200 - duration: 150.407965ms - - 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/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2018 - uncompressed: false - 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: - - "2018" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1e791f34-8302-4ae8-9632-5f7235c376a9 - status: 200 OK - code: 200 - duration: 177.61597ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 19 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"perf_iops":15000}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 707 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fe0c6a25-0536-4196-93aa-c2b35f1909ee - status: 200 OK - code: 200 - duration: 264.768976ms - - 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/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1972 - uncompressed: false - 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: - - "1972" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e49486f1-6b9f-4a02-a73e-ed417c6460cd - status: 200 OK - code: 200 - duration: 158.934679ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 - 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": "0ab28e47-aa65-438f-877d-9144ccac4d41"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 586e03e4-4184-4836-9a0b-11a26f6fa378 - status: 404 Not Found - code: 404 - duration: 26.650002ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 707 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4815461b-6f58-4f36-b54c-3d40bdf5dbd4 - status: 200 OK - code: 200 - duration: 85.051226ms - - 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/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/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:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 03528c15-bf9a-4b4b-b5f4-b7bb9761b1f8 - status: 200 OK - code: 200 - duration: 106.186025ms - - 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/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/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:54:19 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 514200c3-9e05-4c63-bc1d-945c4833199b - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 96.436024ms - - 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/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1972 - uncompressed: false - 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: - - "1972" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 84ce87ee-fd0e-46be-a38c-e6aca69da5f5 - status: 200 OK - code: 200 - duration: 134.143643ms - - 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/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 - 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": "0ab28e47-aa65-438f-877d-9144ccac4d41"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b30b0505-85fd-4e79-9e81-bf9446b0951d - status: 404 Not Found - code: 404 - duration: 31.045131ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 707 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 431ed182-1c14-4e7c-8c4e-212ab23e7039 - status: 200 OK - code: 200 - duration: 76.77499ms - - 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/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/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:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e6dd3f99-e3e2-4ad4-9147-d88f6961a29e - status: 200 OK - code: 200 - duration: 108.028861ms - - 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/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/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:54:20 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 77c374d3-4570-4b9e-9444-f8de924c90bc - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 116.113127ms - - 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/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1972 - uncompressed: false - 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: - - "1972" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fea0909c-cee8-4cc7-9336-9c5009ad4cdb - status: 200 OK - code: 200 - duration: 130.299505ms - - 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/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1972 - uncompressed: false - 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: - - "1972" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 809ed3cb-f311-4e7a-8638-881dd9eb542d - status: 200 OK - code: 200 - duration: 141.020983ms - - id: 44 - 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/fe7feb34-1e9b-4b79-997b-fc2a9505dd21/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a8592ca4-26de-42fd-867c-3a6ffd129cf5 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bdc8fc97-d613-4c22-9faf-ade87c3e243a - status: 202 Accepted - code: 202 - duration: 300.925867ms - - 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/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1935 - uncompressed: false - 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: - - "1935" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5e56c160-29d4-44b2-b260-1e85c739f3fd - status: 200 OK - code: 200 - duration: 133.7676ms - - 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/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 - 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": "fe7feb34-1e9b-4b79-997b-fc2a9505dd21"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c32de5e7-5702-404a-b798-379c69569da3 - status: 404 Not Found - code: 404 - duration: 61.84804ms - - 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/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 - 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": "0ab28e47-aa65-438f-877d-9144ccac4d41"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 179a7493-34a9-4a6c-bdc8-13321cccb50d - status: 404 Not Found - code: 404 - duration: 25.997272ms - - id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 500 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 369f6555-91fa-4851-963d-c0400ad15911 - status: 200 OK - code: 200 - duration: 81.476322ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab28e47-aa65-438f-877d-9144ccac4d41 - 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:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b6e3c9f4-a6b7-4bc9-9cdf-a42a531d1127 - status: 204 No Content - code: 204 - duration: 143.703922ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fe7feb34-1e9b-4b79-997b-fc2a9505dd21 - 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": "fe7feb34-1e9b-4b79-997b-fc2a9505dd21"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6321513c-7dc3-4ca1-a67a-1377b2779096 - status: 404 Not Found - code: 404 - duration: 38.271454ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 79c64209-7401-4fcc-ba6d-91909a7f8927 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 50.453064ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5702e870-b2c9-402a-973c-e85e9f835d06 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 47.07108ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/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 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e742d7e6-a016-4997-9d8f-f75e4c1780c5 + status: 200 OK + code: 200 + duration: 40.477122ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 319 + host: api.scaleway.com + body: "{\"name\":\"tf-tests-instance-block-external-root-volume-iops-update\",\"dynamic_ip_required\":false,\"commercial_type\":\"PLAY2-PICO\",\"image\":\"6d3c053e-c728-4294-b23a-560b62a4d592\",\"volumes\":{\"0\":{\"boot\":false,\"size\":50000000000,\"volume_type\":\"sbs_volume\"}},\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1862 + body: "{\"server\": {\"id\": \"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"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\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.775748+00:00\", \"modification_date\": \"2025-10-30T15:41:51.775748+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1862" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 99e4c4c9-09e6-416a-ab22-87c4bb672ac8 + status: 201 Created + code: 201 + duration: 1.019367333s +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1816 + body: "{\"server\": {\"id\": \"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"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\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.775748+00:00\", \"modification_date\": \"2025-10-30T15:41:51.775748+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 497e19d1-130e-4a82-99ff-fda78e9d91ac + status: 200 OK + code: 200 + duration: 136.615839ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1816 + body: "{\"server\": {\"id\": \"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"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\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.775748+00:00\", \"modification_date\": \"2025-10-30T15:41:51.775748+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 54c1bdc3-1f3a-49ac-93ef-ca4077b27426 + status: 200 OK + code: 200 + duration: 156.79595ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 18 + host: api.scaleway.com + body: "{\"perf_iops\":5000}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"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-30T15:41:51.912900Z\", \"updated_at\":\"2025-10-30T15:41:51.912900Z\", \"references\":[{\"id\":\"e44e48ea-ebbf-46fa-a163-30188013ad82\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"created_at\":\"2025-10-30T15:41:51.912900Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 766d8203-b1e8-4084-a41e-a2f1044904b5 + status: 200 OK + code: 200 + duration: 99.333779ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1816 + body: "{\"server\": {\"id\": \"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"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\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.775748+00:00\", \"modification_date\": \"2025-10-30T15:41:51.775748+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5f050710-6e5a-4082-91bf-172645e6a21f + status: 200 OK + code: 200 + duration: 163.231201ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"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-30T15:41:51.912900Z\", \"updated_at\":\"2025-10-30T15:41:51.912900Z\", \"references\":[{\"id\":\"e44e48ea-ebbf-46fa-a163-30188013ad82\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"created_at\":\"2025-10-30T15:41:51.912900Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 19726364-5e35-4e28-96e4-d3bd44f5b9a1 + status: 200 OK + code: 200 + duration: 82.027448ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"06903137-97c7-4e90-9b4a-c968230756e3\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7/action\", \"href_result\": \"/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"started_at\": \"2025-10-30T15:41:53.069370+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/06903137-97c7-4e90-9b4a-c968230756e3 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0428a911-3806-4565-8b9d-fa34ba65f1c7 + status: 202 Accepted + code: 202 + duration: 254.549345ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1838 + body: "{\"server\": {\"id\": \"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"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\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"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:6c:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.775748+00:00\", \"modification_date\": \"2025-10-30T15:41:52.881630+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: + - "1838" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c672c093-badf-4c13-ac51-857bff24b0e4 + status: 200 OK + code: 200 + duration: 138.686273ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1972 + body: "{\"server\": {\"id\": \"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"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\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"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:6c:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.775748+00:00\", \"modification_date\": \"2025-10-30T15:41:55.661282+00:00\", \"bootscript\": 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\": \"101\", \"node_id\": \"190\"}, \"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: + - "1972" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ae4a6110-24c1-4d1f-b708-676868bea797 + status: 200 OK + code: 200 + duration: 131.696293ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1972 + body: "{\"server\": {\"id\": \"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"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\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"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:6c:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.775748+00:00\", \"modification_date\": \"2025-10-30T15:41:55.661282+00:00\", \"bootscript\": 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\": \"101\", \"node_id\": \"190\"}, \"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: + - "1972" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5d66acfe-18a7-4535-83c1-135019158998 + status: 200 OK + code: 200 + duration: 174.673455ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 567e4bad-fa5b-4a19-8de3-91664c6dfa93 + status: 404 Not Found + code: 404 + duration: 29.648061ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"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-30T15:41:51.912900Z\", \"updated_at\":\"2025-10-30T15:41:51.912900Z\", \"references\":[{\"id\":\"e44e48ea-ebbf-46fa-a163-30188013ad82\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"created_at\":\"2025-10-30T15:41:51.912900Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b760d8d8-4ae7-447a-b7bf-145a5f49228e + status: 200 OK + code: 200 + duration: 84.881152ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ea2ca717-22db-462b-a052-26f822b8f209 + status: 200 OK + code: 200 + duration: 113.818881ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dbf210e6-9861-4ad9-adda-ddfa4976a412 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 109.92158ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1972 + body: "{\"server\": {\"id\": \"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"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\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"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:6c:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.775748+00:00\", \"modification_date\": \"2025-10-30T15:41:55.661282+00:00\", \"bootscript\": 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\": \"101\", \"node_id\": \"190\"}, \"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: + - "1972" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d3fc91f7-25c9-40a1-99c5-4a4012e2db04 + status: 200 OK + code: 200 + duration: 138.466542ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 44031b1a-15d8-4e62-864a-ad6d83a4f25b + status: 404 Not Found + code: 404 + duration: 31.680674ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"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-30T15:41:51.912900Z\", \"updated_at\":\"2025-10-30T15:41:51.912900Z\", \"references\":[{\"id\":\"e44e48ea-ebbf-46fa-a163-30188013ad82\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"created_at\":\"2025-10-30T15:41:51.912900Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2aab9e12-2f73-423c-8889-8535f0e22ffd + status: 200 OK + code: 200 + duration: 120.556538ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eb5347a6-7d49-4bfe-a483-22b9009f10a8 + status: 200 OK + code: 200 + duration: 111.656935ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 95eee012-78a0-4eef-8201-f31c1dceacd6 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 110.416158ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2018 + body: "{\"server\": {\"id\": \"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"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\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"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:6c:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.775748+00:00\", \"modification_date\": \"2025-10-30T15:41:55.661282+00:00\", \"bootscript\": 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\": \"101\", \"node_id\": \"190\"}, \"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: + - "2018" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7cb89bad-394d-4c8d-a22b-cb83dd8c59d9 + status: 200 OK + code: 200 + duration: 139.922332ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 20d7ccee-260f-4d23-adcd-2c1bcb6bd16f + status: 404 Not Found + code: 404 + duration: 34.98454ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"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-30T15:41:51.912900Z\", \"updated_at\":\"2025-10-30T15:41:51.912900Z\", \"references\":[{\"id\":\"e44e48ea-ebbf-46fa-a163-30188013ad82\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"created_at\":\"2025-10-30T15:41:51.912900Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2bf2fc29-b351-4ef5-9995-7e2ce2f43f91 + status: 200 OK + code: 200 + duration: 89.836156ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - efc9ee33-6f19-47cc-b49f-46808e86ba02 + status: 200 OK + code: 200 + duration: 101.777996ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bf482b7a-f3df-47fc-b8e1-98638e24d01e + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 106.001868ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2018 + body: "{\"server\": {\"id\": \"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"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\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"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:6c:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.775748+00:00\", \"modification_date\": \"2025-10-30T15:41:55.661282+00:00\", \"bootscript\": 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\": \"101\", \"node_id\": \"190\"}, \"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: + - "2018" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 555c54c1-163f-436c-ba82-12235a601024 + status: 200 OK + code: 200 + duration: 142.099516ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 105 + host: api.scaleway.com + body: "{\"volumes\":{\"0\":{\"id\":\"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\",\"boot\":false,\"name\":\"tf-vol-jovial-hertz\"}}}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1972 + body: "{\"server\": {\"id\": \"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"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\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"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:6c:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.775748+00:00\", \"modification_date\": \"2025-10-30T15:41:55.661282+00:00\", \"bootscript\": 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\": \"101\", \"node_id\": \"190\"}, \"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: + - "1972" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e8fdfd6b-ea30-42f9-96a1-9e7e3c9059dd + status: 200 OK + code: 200 + duration: 226.359634ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1972 + body: "{\"server\": {\"id\": \"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"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\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"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:6c:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.775748+00:00\", \"modification_date\": \"2025-10-30T15:41:55.661282+00:00\", \"bootscript\": 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\": \"101\", \"node_id\": \"190\"}, \"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: + - "1972" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e7e9117e-9038-4189-823f-7f8c81a74cbf + status: 200 OK + code: 200 + duration: 177.928852ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1972 + body: "{\"server\": {\"id\": \"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"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\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"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:6c:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.775748+00:00\", \"modification_date\": \"2025-10-30T15:41:55.661282+00:00\", \"bootscript\": 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\": \"101\", \"node_id\": \"190\"}, \"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: + - "1972" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5f4c5c72-fbf3-473e-9b66-aa8ed217085c + status: 200 OK + code: 200 + duration: 178.393193ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 19 + host: api.scaleway.com + body: "{\"perf_iops\":15000}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 707 + body: "{\"id\":\"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"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-30T15:41:51.912900Z\", \"updated_at\":\"2025-10-30T15:41:51.912900Z\", \"references\":[{\"id\":\"e44e48ea-ebbf-46fa-a163-30188013ad82\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"created_at\":\"2025-10-30T15:41:51.912900Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cf394c28-8880-459d-9542-d2cd511104b0 + status: 200 OK + code: 200 + duration: 269.292083ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2018 + body: "{\"server\": {\"id\": \"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"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\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"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:6c:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.775748+00:00\", \"modification_date\": \"2025-10-30T15:41:55.661282+00:00\", \"bootscript\": 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\": \"101\", \"node_id\": \"190\"}, \"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: + - "2018" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0a3e1505-b242-440a-9499-ed09be12b852 + status: 200 OK + code: 200 + duration: 192.511796ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bc2b31b9-af33-4e72-b29c-2375bffc5f5a + status: 404 Not Found + code: 404 + duration: 27.601132ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 707 + body: "{\"id\":\"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"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-30T15:41:51.912900Z\", \"updated_at\":\"2025-10-30T15:42:01.346991Z\", \"references\":[{\"id\":\"e44e48ea-ebbf-46fa-a163-30188013ad82\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"created_at\":\"2025-10-30T15:41:51.912900Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e648e687-b01c-4b97-b2ff-7c60a66bb697 + status: 200 OK + code: 200 + duration: 85.46074ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 99ff7d93-b14e-424d-9157-3bf001a1fe08 + status: 200 OK + code: 200 + duration: 85.748199ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8eea6416-d2c7-4d1b-9795-a1dfa7b81af2 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 97.000354ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2018 + body: "{\"server\": {\"id\": \"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"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\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"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:6c:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.775748+00:00\", \"modification_date\": \"2025-10-30T15:41:55.661282+00:00\", \"bootscript\": 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\": \"101\", \"node_id\": \"190\"}, \"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: + - "2018" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6b7d687b-1a8b-4d31-a86e-d1c67b0e2bce + status: 200 OK + code: 200 + duration: 131.518751ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ea808cae-0817-44eb-9fae-8787aefb111d + status: 404 Not Found + code: 404 + duration: 30.314031ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 707 + body: "{\"id\":\"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"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-30T15:41:51.912900Z\", \"updated_at\":\"2025-10-30T15:42:01.346991Z\", \"references\":[{\"id\":\"e44e48ea-ebbf-46fa-a163-30188013ad82\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"created_at\":\"2025-10-30T15:41:51.912900Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 03685556-5180-418c-978d-65566cdfcd5f + status: 200 OK + code: 200 + duration: 126.700434ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5221ea64-9c6b-4bac-8a16-a29de261cec5 + status: 200 OK + code: 200 + duration: 112.730289ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 583751be-d140-4bf4-88cd-936c51823da5 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 114.083257ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1972 + body: "{\"server\": {\"id\": \"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"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\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"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:6c:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.775748+00:00\", \"modification_date\": \"2025-10-30T15:41:55.661282+00:00\", \"bootscript\": 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\": \"101\", \"node_id\": \"190\"}, \"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: + - "1972" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 19cee89f-d07d-4c89-9a97-ba195c3341bf + status: 200 OK + code: 200 + duration: 152.498353ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1972 + body: "{\"server\": {\"id\": \"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"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\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"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:6c:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.775748+00:00\", \"modification_date\": \"2025-10-30T15:41:55.661282+00:00\", \"bootscript\": 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\": \"101\", \"node_id\": \"190\"}, \"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: + - "1972" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0891ee5a-22ca-402b-8812-af07089b1aea + status: 200 OK + code: 200 + duration: 145.588161ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"8f34cf7e-357f-4048-b4d6-41da66882207\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7/action\", \"href_result\": \"/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"started_at\": \"2025-10-30T15:42:03.364904+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8f34cf7e-357f-4048-b4d6-41da66882207 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 23d54827-a592-4472-9215-8fae8fe197df + status: 202 Accepted + code: 202 + duration: 332.771523ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1935 + body: "{\"server\": {\"id\": \"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\", \"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\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"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:6c:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.775748+00:00\", \"modification_date\": \"2025-10-30T15:42:03.085507+00:00\", \"bootscript\": 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\": \"101\", \"node_id\": \"190\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1935" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0dbef563-4f80-4c0f-82c9-d966bea965eb + status: 200 OK + code: 200 + duration: 174.468242ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 04a6bb81-fc05-4354-a9af-1dabd71bb106 + status: 404 Not Found + code: 404 + duration: 48.585513ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6ee01640-8b76-4a43-8ab6-8c02f247c9bf + status: 404 Not Found + code: 404 + duration: 29.03392ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 500 + body: "{\"id\":\"c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4\", \"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-30T15:41:51.912900Z\", \"updated_at\":\"2025-10-30T15:42:05.173904Z\", \"references\":[], \"parent_snapshot_id\":\"36b4ce54-c67a-4f68-ab74-839515834352\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":15000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:05.173904Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "500" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 15a4d35c-5980-49ef-bf36-b23d4f85960c + status: 200 OK + code: 200 + duration: 95.043134ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c8bb4be4-3323-4e9b-8e73-83e0ee6a0ad4 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0f0995e0-935c-4247-9f17-cf594218c14c + status: 204 No Content + code: 204 + duration: 145.453701ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bdbe9cac-c65c-45d9-956d-f23c0e5834a7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"bdbe9cac-c65c-45d9-956d-f23c0e5834a7\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ecd2a54c-4318-4a48-85bb-34a55229862f + status: 404 Not Found + code: 404 + duration: 59.733394ms 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 12e2281fa..ca712e911 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 @@ -1,2355 +1,1860 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3bbd37e0-0a0f-418e-b5f5-26d9aa812734 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 45.512699ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cf55ec8a-261d-4121-ab00-b4eac42b2d52 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 51.644043ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5ceda58c-601f-49fe-b744-efef079117d9 - status: 200 OK - code: 200 - duration: 52.34856ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 307 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-tests-instance-block-external-root-volume","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false,"size":50000000000,"volume_type":"sbs_volume"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1792 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9ede0afd-d559-4bfa-a018-4219ca778876 - status: 201 Created - code: 201 - duration: 1.068644886s - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1792 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 332ca86a-b2d8-4d04-9a0a-e103f26aedad - status: 200 OK - code: 200 - duration: 149.005368ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1792 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2780ae85-31f9-4e76-87e2-f7fc1acc3b2c - status: 200 OK - code: 200 - duration: 121.615996ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 19 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"perf_iops":15000}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 707 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6acc6a11-ed2d-4c8d-a0c7-cb92c2524c83 - status: 200 OK - code: 200 - duration: 228.364974ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1838 - uncompressed: false - 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: - - "1838" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 31287092-98fd-4f6f-8614-47d727ef036d - status: 200 OK - code: 200 - duration: 147.496317ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 707 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f6ddbf51-5e47-46c3-bcbf-2a8795749d47 - status: 200 OK - code: 200 - duration: 77.898814ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweron"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/09a7c4c5-6892-44d7-9134-3915c86155c8 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3f9c4e2a-db37-4f52-8dbc-64dc0e0efd2f - status: 202 Accepted - code: 202 - duration: 305.531459ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1860 - uncompressed: false - 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: - - "1860" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d0d71aa2-36a3-4897-a130-7f3a5b8d0d71 - status: 200 OK - code: 200 - duration: 157.775486ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1948 - uncompressed: false - 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: - - "1948" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 34ed84c8-6910-491a-9668-567f23e495f5 - status: 200 OK - code: 200 - duration: 126.97051ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1948 - uncompressed: false - 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: - - "1948" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 399f6f42-0e2e-4157-9ae2-4aa6c492f5bd - status: 200 OK - code: 200 - duration: 151.789378ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 - 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": "fdb1042e-3f37-4924-b39b-bc62b24a7888"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 75bee3f0-b72e-4ba0-af35-62cbd03f78b6 - status: 404 Not Found - code: 404 - duration: 27.989476ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 707 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 930be130-3bf6-4da1-8083-6dff8869a87f - status: 200 OK - code: 200 - duration: 103.8181ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/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:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 511ae9ff-7639-41b5-ad14-0e8a24a19056 - status: 200 OK - code: 200 - duration: 105.633003ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/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:53 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c3ed5480-117f-420a-b9cd-a1d860da5dad - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 100.477443ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1948 - uncompressed: false - 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: - - "1948" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dde8dcac-6e4a-4482-a2f3-77031b0bfd35 - status: 200 OK - code: 200 - duration: 148.515396ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 - 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": "fdb1042e-3f37-4924-b39b-bc62b24a7888"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 09aaec45-17d2-40e0-94d3-aa84451af054 - status: 404 Not Found - code: 404 - duration: 32.912851ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 707 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f280e468-bede-4141-af2e-e15b4c747503 - status: 200 OK - code: 200 - duration: 106.817708ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/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:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 87484d29-1c79-4804-b52d-9e5bf1df6128 - status: 200 OK - code: 200 - duration: 94.478928ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/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:54 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8029a3cd-a5ca-4d61-8d82-c8af18b82395 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 105.408614ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1948 - uncompressed: false - 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: - - "1948" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9fece0b0-e1b0-4ba5-91ec-30ac81a16392 - status: 200 OK - code: 200 - duration: 141.654357ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 - 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": "fdb1042e-3f37-4924-b39b-bc62b24a7888"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 116da094-0da7-4fc6-b67c-d47c51fcd575 - status: 404 Not Found - code: 404 - duration: 25.333569ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 707 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a749a450-58e5-4f41-b115-2972952acf1b - status: 200 OK - code: 200 - duration: 78.24288ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/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:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5211c0f7-fbe2-4eb8-be78-35c189a8b117 - status: 200 OK - code: 200 - duration: 89.611877ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/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: - - caa9f51e-8f35-495f-bc55-7c3c6343a686 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 88.818914ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1948 - uncompressed: false - 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: - - "1948" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9d7eac7e-cb33-4c38-bd17-01d094a5e159 - status: 200 OK - code: 200 - duration: 141.262825ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1994 - uncompressed: false - 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: - - "1994" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 05249777-ff1c-4e6f-89cd-ffe744f2d0cd - status: 200 OK - code: 200 - duration: 121.345473ms - - 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/261acf92-f5ac-4f4a-b8ca-b728faacbb3f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1994 - uncompressed: false - 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: - - "1994" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 596d8634-7c65-4117-aa65-1be56a810686 - status: 200 OK - code: 200 - duration: 148.249859ms - - 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/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 - 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": "fdb1042e-3f37-4924-b39b-bc62b24a7888"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fd044595-bbe9-4287-a876-53f361b578a9 - status: 404 Not Found - code: 404 - duration: 26.296079ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 707 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ce3e71a4-b911-4eaa-8d31-5f4bc89c81c2 - status: 200 OK - code: 200 - duration: 79.025563ms - - id: 32 - 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: '{"size":60000000000}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 709 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5499b476-bd96-4258-9ebd-67d3701faaa9 - status: 200 OK - code: 200 - duration: 211.027031ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 111 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/261acf92-f5ac-4f4a-b8ca-b728faacbb3f - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1948 - uncompressed: false - 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: - - "1948" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6533223e-0731-4ac4-b67e-d5c1235c9a0e - status: 200 OK - code: 200 - duration: 233.86281ms - - 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/261acf92-f5ac-4f4a-b8ca-b728faacbb3f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1933 - uncompressed: false - 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: - - "1933" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a1c77b9e-0c61-4cf6-87fe-927ddea883a4 - status: 200 OK - code: 200 - duration: 122.801066ms - - 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/261acf92-f5ac-4f4a-b8ca-b728faacbb3f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1887 - uncompressed: false - 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: - - "1887" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1b29fc1f-738d-4fdb-8244-338312012385 - status: 200 OK - code: 200 - duration: 129.267786ms - - 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/fdb1042e-3f37-4924-b39b-bc62b24a7888 - 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": "fdb1042e-3f37-4924-b39b-bc62b24a7888"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f29c6c26-33d6-4fde-9b5a-ed755a4edfbf - status: 404 Not Found - code: 404 - duration: 28.107967ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 707 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f3e0600e-6ab6-419c-92e1-8579edbb9e38 - status: 200 OK - code: 200 - duration: 91.69359ms - - 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/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/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:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 15921715-f2ad-44a9-9547-4decbf8e33f4 - status: 200 OK - code: 200 - duration: 100.525143ms - - 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/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/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:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ea5577ad-6a3c-40ef-878a-f409a9aef04d - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 98.899243ms - - 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/261acf92-f5ac-4f4a-b8ca-b728faacbb3f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1948 - uncompressed: false - 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: - - "1948" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 400dc749-a15c-4c9a-afe7-0ee0ad2a2ef6 - status: 200 OK - code: 200 - duration: 149.480661ms - - 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/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 - 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": "fdb1042e-3f37-4924-b39b-bc62b24a7888"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 34e0ee5f-2330-4297-8aac-d040bf6c836c - status: 404 Not Found - code: 404 - duration: 29.790954ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 707 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 808e029f-5744-4cd7-aef9-9bb6e0ecce26 - status: 200 OK - code: 200 - duration: 85.165635ms - - 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/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/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:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 83198cd3-4dcc-43e4-8cf6-3aa0b6a00b18 - status: 200 OK - code: 200 - duration: 89.937276ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/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:57 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - af4cfed6-a3e3-4d73-96f0-340dfec46a85 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 114.001472ms - - 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/261acf92-f5ac-4f4a-b8ca-b728faacbb3f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1948 - uncompressed: false - 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: - - "1948" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2b46bac2-90df-4885-8456-625cda388087 - status: 200 OK - code: 200 - duration: 129.714423ms - - 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/261acf92-f5ac-4f4a-b8ca-b728faacbb3f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1948 - uncompressed: false - 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: - - "1948" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f9c9da2d-da6e-4ec1-afcb-30aa9a989a51 - status: 200 OK - code: 200 - duration: 146.604103ms - - id: 47 - 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/261acf92-f5ac-4f4a-b8ca-b728faacbb3f/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/48378f20-c4a4-4f5f-bff0-233e11a51d86 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1596574c-6164-44df-b3d5-13d1623f8f00 - status: 202 Accepted - code: 202 - duration: 289.869684ms - - 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/261acf92-f5ac-4f4a-b8ca-b728faacbb3f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1911 - uncompressed: false - 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: - - "1911" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 787d6111-b88a-4653-8f82-66b1c308cd90 - status: 200 OK - code: 200 - duration: 147.927718ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/261acf92-f5ac-4f4a-b8ca-b728faacbb3f - 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": "261acf92-f5ac-4f4a-b8ca-b728faacbb3f"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - becceb61-e52b-493b-8316-0948d569ec46 - status: 404 Not Found - code: 404 - duration: 49.66229ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 - 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": "fdb1042e-3f37-4924-b39b-bc62b24a7888"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1a59d71a-78a6-4e8e-b67b-9c44f853d160 - status: 404 Not Found - code: 404 - duration: 34.910176ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 500 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dc3f6714-5b7e-4df1-b818-d521111efa99 - status: 200 OK - code: 200 - duration: 95.712597ms - - id: 52 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 - 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:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 486dcd75-c876-4c70-b7b9-5a09c294c82a - status: 204 No Content - code: 204 - duration: 177.737721ms - - 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/261acf92-f5ac-4f4a-b8ca-b728faacbb3f - 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": "261acf92-f5ac-4f4a-b8ca-b728faacbb3f"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d3e3d6e8-a735-4b64-9497-22efa92b037f - status: 404 Not Found - code: 404 - duration: 52.38429ms - - 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/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 - 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": "fdb1042e-3f37-4924-b39b-bc62b24a7888"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 47c1a07f-d242-46d3-9cc4-c59927a79175 - status: 404 Not Found - code: 404 - duration: 30.516682ms - - id: 55 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdb1042e-3f37-4924-b39b-bc62b24a7888 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"fdb1042e-3f37-4924-b39b-bc62b24a7888","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0a4d6069-4cb1-427c-a9ee-58757772b002 - status: 404 Not Found - code: 404 - duration: 76.26854ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 223fbf35-38f8-4ae6-b0a8-65a641fb6095 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 47.55034ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 67908160-47c1-4594-980b-cc7c656e6d1c + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 49.488595ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/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 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 33671631-6544-4710-adb4-697cfc88bae0 + status: 200 OK + code: 200 + duration: 61.223326ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 307 + host: api.scaleway.com + body: "{\"name\":\"tf-tests-instance-block-external-root-volume\",\"dynamic_ip_required\":false,\"commercial_type\":\"PLAY2-PICO\",\"image\":\"6d3c053e-c728-4294-b23a-560b62a4d592\",\"volumes\":{\"0\":{\"boot\":false,\"size\":50000000000,\"volume_type\":\"sbs_volume\"}},\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1792 + body: "{\"server\": {\"id\": \"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"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\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:bb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.031207+00:00\", \"modification_date\": \"2025-10-30T15:41:54.031207+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 07f18aa2-edc9-4a1b-b18f-894067ee9959 + status: 201 Created + code: 201 + duration: 1.015682226s +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1838 + body: "{\"server\": {\"id\": \"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"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\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:bb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.031207+00:00\", \"modification_date\": \"2025-10-30T15:41:54.031207+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1838" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c6250234-0c7a-4755-bfe8-9c57fe2453e8 + status: 200 OK + code: 200 + duration: 138.107708ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1838 + body: "{\"server\": {\"id\": \"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"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\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:bb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.031207+00:00\", \"modification_date\": \"2025-10-30T15:41:54.031207+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1838" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5980bd7f-bf69-44a3-95fb-94b14e93c041 + status: 200 OK + code: 200 + duration: 176.242006ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 19 + host: api.scaleway.com + body: "{\"perf_iops\":15000}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d7903cff-ab93-4cd1-932c-8a4ba1803dc6 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 707 + body: "{\"id\":\"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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-30T15:41:54.144484Z\", \"updated_at\":\"2025-10-30T15:41:54.144484Z\", \"references\":[{\"id\":\"e736326c-e17c-4faa-bd99-cccfe46893c1\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"created_at\":\"2025-10-30T15:41:54.144484Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f1c00594-cf4f-4c9c-88b8-5d6c091e63aa + status: 200 OK + code: 200 + duration: 171.14191ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1838 + body: "{\"server\": {\"id\": \"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"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\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:bb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.031207+00:00\", \"modification_date\": \"2025-10-30T15:41:54.031207+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1838" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b2ce0062-6fe6-422f-b30b-a7ba29ec8d46 + status: 200 OK + code: 200 + duration: 140.380761ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d7903cff-ab93-4cd1-932c-8a4ba1803dc6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 707 + body: "{\"id\":\"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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-30T15:41:54.144484Z\", \"updated_at\":\"2025-10-30T15:41:55.005762Z\", \"references\":[{\"id\":\"e736326c-e17c-4faa-bd99-cccfe46893c1\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"created_at\":\"2025-10-30T15:41:54.144484Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ba34f045-e59d-48c7-a65c-5cd2e60b292d + status: 200 OK + code: 200 + duration: 112.072965ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"aa4cb86d-e120-409f-b59a-35b4282953a0\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/fb541802-51d2-4bf3-9e47-343d85021b5b/action\", \"href_result\": \"/servers/fb541802-51d2-4bf3-9e47-343d85021b5b\", \"started_at\": \"2025-10-30T15:41:55.493946+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/aa4cb86d-e120-409f-b59a-35b4282953a0 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 11bfa7eb-ed51-4827-a50c-93363417b142 + status: 202 Accepted + code: 202 + duration: 259.836063ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1814 + body: "{\"server\": {\"id\": \"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"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\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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:6c:bb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.031207+00:00\", \"modification_date\": \"2025-10-30T15:41:55.289110+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: + - "1814" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 36467f41-b801-4cb4-ac71-09f17b07f75d + status: 200 OK + code: 200 + duration: 131.950008ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1948 + body: "{\"server\": {\"id\": \"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"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\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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:6c:bb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.031207+00:00\", \"modification_date\": \"2025-10-30T15:41:57.676218+00:00\", \"bootscript\": 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: + - "1948" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d4db4e76-7d6c-4b42-80f5-a8e6d825f8ac + status: 200 OK + code: 200 + duration: 132.779194ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1948 + body: "{\"server\": {\"id\": \"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"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\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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:6c:bb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.031207+00:00\", \"modification_date\": \"2025-10-30T15:41:57.676218+00:00\", \"bootscript\": 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: + - "1948" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 45d19e8e-57ed-431e-958f-ec9b339f69f3 + status: 200 OK + code: 200 + duration: 182.505146ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d7903cff-ab93-4cd1-932c-8a4ba1803dc6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8acb9c07-6093-42cf-807d-0ae540ab1ab8 + status: 404 Not Found + code: 404 + duration: 28.467075ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d7903cff-ab93-4cd1-932c-8a4ba1803dc6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 707 + body: "{\"id\":\"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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-30T15:41:54.144484Z\", \"updated_at\":\"2025-10-30T15:41:55.005762Z\", \"references\":[{\"id\":\"e736326c-e17c-4faa-bd99-cccfe46893c1\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"created_at\":\"2025-10-30T15:41:54.144484Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e158a53f-32c4-4e1b-b1ed-d1ec258fd592 + status: 200 OK + code: 200 + duration: 106.830984ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1ff7c0b5-b6d0-4337-a515-376bd98cd7fe + status: 200 OK + code: 200 + duration: 107.003418ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dd182ddf-1b9a-4d1d-93b6-f60c24e8573a + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 95.495111ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1994 + body: "{\"server\": {\"id\": \"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"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\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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:6c:bb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.031207+00:00\", \"modification_date\": \"2025-10-30T15:41:57.676218+00:00\", \"bootscript\": 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: + - "1994" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a9446799-e40b-4f9a-82f1-19661bb17a5f + status: 200 OK + code: 200 + duration: 191.697308ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d7903cff-ab93-4cd1-932c-8a4ba1803dc6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fbe93b69-1313-4f97-aa5f-bec9d1d58b20 + status: 404 Not Found + code: 404 + duration: 27.670932ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d7903cff-ab93-4cd1-932c-8a4ba1803dc6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 707 + body: "{\"id\":\"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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-30T15:41:54.144484Z\", \"updated_at\":\"2025-10-30T15:41:55.005762Z\", \"references\":[{\"id\":\"e736326c-e17c-4faa-bd99-cccfe46893c1\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"created_at\":\"2025-10-30T15:41:54.144484Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 758ab1de-c576-4209-bc3d-90351815b29d + status: 200 OK + code: 200 + duration: 120.726788ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a0ec9ff1-f9c0-4386-ada5-9d501b87cc19 + status: 200 OK + code: 200 + duration: 106.538425ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9a13c1c3-cf12-4567-9af5-0af09376ab7d + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 90.513156ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1994 + body: "{\"server\": {\"id\": \"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"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\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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:6c:bb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.031207+00:00\", \"modification_date\": \"2025-10-30T15:41:57.676218+00:00\", \"bootscript\": 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: + - "1994" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aad9c7d2-69ea-4474-aedc-a619bbddab62 + status: 200 OK + code: 200 + duration: 181.922534ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d7903cff-ab93-4cd1-932c-8a4ba1803dc6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 24e7565b-4058-48ba-b56a-73931c115eba + status: 404 Not Found + code: 404 + duration: 28.318347ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d7903cff-ab93-4cd1-932c-8a4ba1803dc6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 707 + body: "{\"id\":\"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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-30T15:41:54.144484Z\", \"updated_at\":\"2025-10-30T15:41:55.005762Z\", \"references\":[{\"id\":\"e736326c-e17c-4faa-bd99-cccfe46893c1\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"created_at\":\"2025-10-30T15:41:54.144484Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f6983271-071c-4081-88f6-5735bc1807b2 + status: 200 OK + code: 200 + duration: 79.518874ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7d9a5408-0a34-4c3e-8f74-01f21ee9e104 + status: 200 OK + code: 200 + duration: 108.820365ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1e73e0b1-b356-4e3f-bae4-fb97ae43b36a + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 143.181597ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1994 + body: "{\"server\": {\"id\": \"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"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\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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:6c:bb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.031207+00:00\", \"modification_date\": \"2025-10-30T15:41:57.676218+00:00\", \"bootscript\": 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: + - "1994" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 652084c3-83e9-4d81-b097-61bfc3b3e9ca + status: 200 OK + code: 200 + duration: 133.920436ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1994 + body: "{\"server\": {\"id\": \"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"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\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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:6c:bb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.031207+00:00\", \"modification_date\": \"2025-10-30T15:41:57.676218+00:00\", \"bootscript\": 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: + - "1994" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8af55006-f810-4497-8d99-e522abe700c4 + status: 200 OK + code: 200 + duration: 188.981695ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1994 + body: "{\"server\": {\"id\": \"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"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\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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:6c:bb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.031207+00:00\", \"modification_date\": \"2025-10-30T15:41:57.676218+00:00\", \"bootscript\": 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: + - "1994" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3b6d9fbb-ee6e-40bc-bf99-81e8947601d7 + status: 200 OK + code: 200 + duration: 133.596849ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d7903cff-ab93-4cd1-932c-8a4ba1803dc6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7aebe472-de21-471e-af4c-e354b19313fe + status: 404 Not Found + code: 404 + duration: 26.009707ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d7903cff-ab93-4cd1-932c-8a4ba1803dc6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 707 + body: "{\"id\":\"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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-30T15:41:54.144484Z\", \"updated_at\":\"2025-10-30T15:41:55.005762Z\", \"references\":[{\"id\":\"e736326c-e17c-4faa-bd99-cccfe46893c1\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"created_at\":\"2025-10-30T15:41:54.144484Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fe0848b0-f765-4ef9-a5a9-c50cb23f57d1 + status: 200 OK + code: 200 + duration: 78.075497ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"size\":60000000000}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d7903cff-ab93-4cd1-932c-8a4ba1803dc6 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 709 + body: "{\"id\":\"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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-30T15:41:54.144484Z\", \"updated_at\":\"2025-10-30T15:41:55.005762Z\", \"references\":[{\"id\":\"e736326c-e17c-4faa-bd99-cccfe46893c1\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"created_at\":\"2025-10-30T15:41:54.144484Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5f1b9b13-d3dc-4f25-ad13-a71b5004dd4b + status: 200 OK + code: 200 + duration: 202.01949ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 108 + host: api.scaleway.com + body: "{\"volumes\":{\"0\":{\"id\":\"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\",\"boot\":false,\"name\":\"tf-vol-awesome-ganguly\"}}}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1887 + body: "{\"server\": {\"id\": \"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"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\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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:6c:bb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.031207+00:00\", \"modification_date\": \"2025-10-30T15:41:57.676218+00:00\", \"bootscript\": 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\": [], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1887" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3b064e8c-7181-44a7-a87b-8ea8249d9a32 + status: 200 OK + code: 200 + duration: 186.373864ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1933 + body: "{\"server\": {\"id\": \"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"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\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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:6c:bb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.031207+00:00\", \"modification_date\": \"2025-10-30T15:41:57.676218+00:00\", \"bootscript\": 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\": [], \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 77f70b63-ee68-4f0a-8694-ad2c4a4ecca1 + status: 200 OK + code: 200 + duration: 141.744502ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1887 + body: "{\"server\": {\"id\": \"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"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\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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:6c:bb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.031207+00:00\", \"modification_date\": \"2025-10-30T15:41:57.676218+00:00\", \"bootscript\": 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\": [], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1887" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eb47c224-e1bc-4eae-9208-c07775e6ca26 + status: 200 OK + code: 200 + duration: 135.116009ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d7903cff-ab93-4cd1-932c-8a4ba1803dc6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3ed064d6-1de2-4c03-b531-421e272bae1d + status: 404 Not Found + code: 404 + duration: 34.726897ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d7903cff-ab93-4cd1-932c-8a4ba1803dc6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 707 + body: "{\"id\":\"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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-30T15:41:54.144484Z\", \"updated_at\":\"2025-10-30T15:42:03.640825Z\", \"references\":[{\"id\":\"e736326c-e17c-4faa-bd99-cccfe46893c1\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"created_at\":\"2025-10-30T15:41:54.144484Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3765596a-7d14-4241-9420-c57808fb278b + status: 200 OK + code: 200 + duration: 95.421553ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e6a276d9-7ced-4c6a-8491-088b394423d6 + status: 200 OK + code: 200 + duration: 101.552113ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:04 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 592f6f9a-274d-47b4-a9bb-32c61e1b01f8 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 116.776349ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1948 + body: "{\"server\": {\"id\": \"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"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\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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:6c:bb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.031207+00:00\", \"modification_date\": \"2025-10-30T15:41:57.676218+00:00\", \"bootscript\": 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: + - "1948" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e7030d42-39dc-403a-9bab-81747ff41930 + status: 200 OK + code: 200 + duration: 150.900937ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d7903cff-ab93-4cd1-932c-8a4ba1803dc6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eb9725a3-8811-4d8f-9901-baaba2fd5d8a + status: 404 Not Found + code: 404 + duration: 34.763827ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d7903cff-ab93-4cd1-932c-8a4ba1803dc6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 707 + body: "{\"id\":\"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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-30T15:41:54.144484Z\", \"updated_at\":\"2025-10-30T15:42:03.640825Z\", \"references\":[{\"id\":\"e736326c-e17c-4faa-bd99-cccfe46893c1\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"created_at\":\"2025-10-30T15:41:54.144484Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c57fb006-a4fe-46ec-9cf6-c7c538ab53fd + status: 200 OK + code: 200 + duration: 81.955705ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7faa1e97-ab47-4291-9a6e-2c1c0d0caa0e + status: 200 OK + code: 200 + duration: 124.900208ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:05 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ea59b74a-46af-49ca-85a3-160b72d29a28 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 99.50872ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1994 + body: "{\"server\": {\"id\": \"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"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\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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:6c:bb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.031207+00:00\", \"modification_date\": \"2025-10-30T15:41:57.676218+00:00\", \"bootscript\": 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: + - "1994" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d738debe-c70f-4bfd-a45e-fdfac728e6dd + status: 200 OK + code: 200 + duration: 154.975971ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1994 + body: "{\"server\": {\"id\": \"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"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\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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:6c:bb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.031207+00:00\", \"modification_date\": \"2025-10-30T15:41:57.676218+00:00\", \"bootscript\": 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: + - "1994" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 33f67471-d5df-4e5f-9f91-c270a8f20603 + status: 200 OK + code: 200 + duration: 147.96479ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"fbd58036-5a6b-4dd0-981b-d8e19ba58cf5\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/fb541802-51d2-4bf3-9e47-343d85021b5b/action\", \"href_result\": \"/servers/fb541802-51d2-4bf3-9e47-343d85021b5b\", \"started_at\": \"2025-10-30T15:42:05.967721+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:05 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fbd58036-5a6b-4dd0-981b-d8e19ba58cf5 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e8ecf494-e046-451c-b94c-7520d62e7ef0 + status: 202 Accepted + code: 202 + duration: 274.403523ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1957 + body: "{\"server\": {\"id\": \"fb541802-51d2-4bf3-9e47-343d85021b5b\", \"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\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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:6c:bb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:54.031207+00:00\", \"modification_date\": \"2025-10-30T15:42:05.748778+00:00\", \"bootscript\": 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: + - "1957" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9d5e31d9-2c88-4e61-b8a5-216fb349fd56 + status: 200 OK + code: 200 + duration: 136.123179ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"fb541802-51d2-4bf3-9e47-343d85021b5b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cf2bdecd-d525-4d0e-b800-be46a7e4c4ec + status: 404 Not Found + code: 404 + duration: 45.57186ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d7903cff-ab93-4cd1-932c-8a4ba1803dc6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4aa7c62a-cea6-4c90-aeb1-7a13236f3d06 + status: 404 Not Found + code: 404 + duration: 34.512756ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d7903cff-ab93-4cd1-932c-8a4ba1803dc6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 500 + body: "{\"id\":\"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\", \"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-30T15:41:54.144484Z\", \"updated_at\":\"2025-10-30T15:42:07.708534Z\", \"references\":[], \"parent_snapshot_id\":\"36b4ce54-c67a-4f68-ab74-839515834352\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":15000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:07.708534Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "500" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a362022b-1bc4-4765-84a9-5d53a559bede + status: 200 OK + code: 200 + duration: 90.513258ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d7903cff-ab93-4cd1-932c-8a4ba1803dc6 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 039ff871-0060-4bfb-b426-747216c546d3 + status: 204 No Content + code: 204 + duration: 175.698894ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb541802-51d2-4bf3-9e47-343d85021b5b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"fb541802-51d2-4bf3-9e47-343d85021b5b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e611013e-9b6b-47b5-a8a7-da9cacdacb98 + status: 404 Not Found + code: 404 + duration: 54.212468ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d7903cff-ab93-4cd1-932c-8a4ba1803dc6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4a139a11-12d6-4dda-b613-8408b6f3438e + status: 404 Not Found + code: 404 + duration: 30.184768ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d7903cff-ab93-4cd1-932c-8a4ba1803dc6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"d7903cff-ab93-4cd1-932c-8a4ba1803dc6\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b11d3951-1b01-4dd9-82bb-b83cdf214cef + status: 404 Not Found + code: 404 + duration: 90.796149ms diff --git a/internal/services/instance/testdata/server-block-external.cassette.yaml b/internal/services/instance/testdata/server-block-external.cassette.yaml index 42883da66..8d40e49ad 100644 --- a/internal/services/instance/testdata/server-block-external.cassette.yaml +++ b/internal/services/instance/testdata/server-block-external.cassette.yaml @@ -1,5044 +1,3966 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 147 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-volume-great-mcnulty","perf_iops":5000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":10000000000},"tags":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 420 - uncompressed: false - body: '{"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: - - "420" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e5383727-ca96-4e7f-802f-c3785bd55a0a - status: 200 OK - code: 200 - duration: 299.49534ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 421 - uncompressed: false - 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: - - "421" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 19212b1d-c312-4313-97ae-ca2b1ebcdb31 - status: 200 OK - code: 200 - duration: 206.762949ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 421 - uncompressed: false - 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: - - "421" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cf16e584-78af-4d17-a07a-38a85d4f0bba - status: 200 OK - code: 200 - duration: 99.083548ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:31 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b88388e8-403d-4954-86c2-8fd1431ebb9a - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 187.480092ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:31 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3a0d608d-b910-41bb-9b1d-2f4bcafc67db - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 42.145649ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - 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": "601ae645-7edb-49d8-a59a-636a130cd8ca"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fc41841b-624a-4996-b5ca-08ba0fd7fb27 - status: 404 Not Found - code: 404 - duration: 28.757885ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 421 - uncompressed: false - 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: - - "421" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d2c1a43a-1eeb-4776-9596-6c5a576d0233 - status: 200 OK - code: 200 - duration: 161.413259ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a8f0b0e2-d96b-472b-a646-7b1acc8a45b5 - status: 200 OK - code: 200 - duration: 36.805112ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 314 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-srv-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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1929 - uncompressed: false - 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: - - "1929" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:33 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4eea5f2a-8a16-4c43-ae16-07d8223353a3 - status: 201 Created - code: 201 - duration: 1.626570605s - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1883 - uncompressed: false - 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: - - "1883" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d30dd54d-203d-4fbc-8817-d914c4245bfb - status: 200 OK - code: 200 - duration: 272.63741ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1883 - uncompressed: false - 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: - - "1883" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5d5a1a68-21c1-4616-bae4-08f9ceb43e74 - status: 200 OK - code: 200 - duration: 170.215199ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f92cb0a4-9d14-48a9-95e1-0e67325b4b0f - status: 200 OK - code: 200 - duration: 209.651532ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 653 - uncompressed: false - 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: - - "653" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d67416b1-a960-4675-9772-c19d2b5832dc - status: 200 OK - code: 200 - duration: 80.405472ms - - id: 13 - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:34 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9cf9e7d6-5be5-41da-9d95-01b002158132 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4d93c121-4e58-4ca7-a7e9-60030e6f40ae - status: 202 Accepted - code: 202 - duration: 238.94571ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1905 - uncompressed: false - 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: - - "1905" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f06745b0-ff80-460d-8571-ea58ebb6dc3a - status: 200 OK - code: 200 - duration: 230.084871ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2039 - uncompressed: false - 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: - - "2039" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6c81e4ff-33d4-4e75-b75b-ba729b774983 - status: 200 OK - code: 200 - duration: 208.766771ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2085 - uncompressed: false - 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: - - "2085" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ae4d723a-d1fa-45eb-aab4-a28c64bf7e1c - status: 200 OK - code: 200 - duration: 166.720657ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - 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": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1532465e-d7de-4930-9945-fbd42ef7e541 - status: 404 Not Found - code: 404 - duration: 26.164357ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 25bfeca4-b058-4a26-8472-f4906ac4b66b - status: 200 OK - code: 200 - duration: 113.42632ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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:54:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aed044e0-8e26-4960-b11e-2d749ada6a26 - status: 200 OK - code: 200 - duration: 117.552987ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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:54:40 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3c201200-4468-414f-b4e9-14fb34315c4d - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 196.130543ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 653 - uncompressed: false - 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: - - "653" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d9e13032-90cb-422f-98c7-d48dd4c4b320 - status: 200 OK - code: 200 - duration: 132.592379ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2039 - uncompressed: false - 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: - - "2039" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 38c197d3-9ed9-4002-8e51-37a73332ea88 - status: 200 OK - code: 200 - duration: 149.359754ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - 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": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a6b0c449-91c8-4d66-9655-4149e3362387 - status: 404 Not Found - code: 404 - duration: 27.023893ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fff694a0-623f-42d0-80f6-91189cefb928 - status: 200 OK - code: 200 - duration: 121.550382ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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:54:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8da5f5a9-a914-4ed0-9ab8-727ef8e18856 - status: 200 OK - code: 200 - duration: 115.158129ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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:54:41 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bdc83c20-f08f-4138-9c09-ee6ce8fb35dd - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 197.188431ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 653 - uncompressed: false - 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: - - "653" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 77231634-326e-4ab5-8f5b-7aa6430b0d81 - status: 200 OK - code: 200 - duration: 126.854721ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2085 - uncompressed: false - 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: - - "2085" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 70e5410c-88c3-43c8-bb36-c808e0c8850c - status: 200 OK - code: 200 - duration: 148.440145ms - - 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/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - 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": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dcb2e60b-41bd-4445-bb9c-28a4f70a4a59 - status: 404 Not Found - code: 404 - duration: 93.853281ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 94c3b174-2508-4281-81f1-beb08041a2ce - status: 200 OK - code: 200 - duration: 87.457631ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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:54:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a81ad1d3-4854-42d2-bd25-eb74e1c840be - status: 200 OK - code: 200 - duration: 102.34011ms - - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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:54:42 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9947375f-63ee-410d-a208-c716da0d8570 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 113.008149ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2085 - uncompressed: false - 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: - - "2085" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b5c24835-cce7-4e9f-af56-a4614fe0727f - status: 200 OK - code: 200 - duration: 157.579925ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 107 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1900 - uncompressed: false - 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: - - "1900" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - def03f35-06ae-4f70-8afe-0a1ef0dc32a7 - status: 200 OK - code: 200 - duration: 287.384203ms - - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1900 - uncompressed: false - 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: - - "1900" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8f9700d1-81ac-4ba1-858b-2d9bf71f69f0 - status: 200 OK - code: 200 - duration: 179.988859ms - - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1946 - uncompressed: false - 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: - - "1946" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c37f8f61-396d-45b6-96e0-de5ddb10b237 - status: 200 OK - code: 200 - duration: 147.293911ms - - 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/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - 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": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 82d68f00-8948-41e4-8ef9-9e649679747e - status: 404 Not Found - code: 404 - duration: 29.418351ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 885ab54d-cb1d-41b4-8140-df6a9cd0c82e - status: 200 OK - code: 200 - duration: 126.120588ms - - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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:54:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 38cd2c49-71ae-4fbf-b3dc-0f423003215f - status: 200 OK - code: 200 - duration: 121.330391ms - - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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:54:43 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c0fa7808-e2ff-414c-b567-3458964d1dca - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 90.375688ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 654 - uncompressed: false - 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: - - "654" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4d06bd06-0a2d-46b4-bd84-239417fcce5e - status: 200 OK - code: 200 - duration: 90.239634ms - - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1946 - uncompressed: false - 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: - - "1946" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8db02dc4-89fc-4dd7-b34e-9b53b967fcdf - status: 200 OK - code: 200 - duration: 209.346808ms - - 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/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - 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": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a9096cc8-932f-4aa5-b4d3-53fe279d080a - status: 404 Not Found - code: 404 - duration: 27.79749ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6d6fe48e-9e50-4cf0-a97e-1ab2e0135ad2 - status: 200 OK - code: 200 - duration: 157.714058ms - - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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:54:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9808b3b3-17ce-44a2-a00a-519dd8d3bddc - status: 200 OK - code: 200 - duration: 118.657534ms - - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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:54:44 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b19454e8-a360-4ab6-bbda-9b365567d2e3 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 83.729189ms - - id: 47 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 654 - uncompressed: false - 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: - - "654" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6ab08cd3-b770-4978-8129-d82b22964fbf - status: 200 OK - code: 200 - duration: 80.507716ms - - id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 654 - uncompressed: false - 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: - - "654" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d721fb7c-f060-4b51-bf41-68584a45254d - status: 200 OK - code: 200 - duration: 86.715647ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 654 - uncompressed: false - 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: - - "654" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4764dcf5-c3c5-43c7-afa9-f97152a6bda0 - status: 200 OK - code: 200 - duration: 80.05416ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 654 - uncompressed: false - 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: - - "654" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4073feae-d068-4020-aacd-599bc14d2d75 - status: 200 OK - code: 200 - duration: 83.517749ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 654 - uncompressed: false - 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: - - "654" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7040dbff-ac72-43cf-ab6f-7d4cd7b13894 - status: 200 OK - code: 200 - duration: 100.615442ms - - id: 52 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 654 - uncompressed: false - 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: - - "654" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 69f483a5-1a04-41ea-bacc-e3592f3ca10d - status: 200 OK - code: 200 - duration: 76.31968ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 654 - uncompressed: false - 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: - - "654" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 09eb8ee7-ceea-403c-9f46-4a836c37485c - status: 200 OK - code: 200 - duration: 85.993572ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 654 - uncompressed: false - 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: - - "654" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e8f7ca26-3919-4d28-98b6-e76ffcb98b85 - status: 200 OK - code: 200 - duration: 95.829167ms - - id: 55 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 446 - uncompressed: false - 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: - - "446" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ddfa4354-11d1-4146-aece-7166463bcb08 - status: 200 OK - code: 200 - duration: 84.184891ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 446 - uncompressed: false - 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: - - "446" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 29dd7768-b61a-4e3c-b126-34fec0806782 - status: 200 OK - code: 200 - duration: 91.329533ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1946 - uncompressed: false - 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: - - "1946" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 056b01cf-b81d-4cfc-b33c-8332f8eb6a5e - status: 200 OK - code: 200 - duration: 147.981096ms - - 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/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - 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": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bc89cd4a-24e5-45e6-a051-641fbe21f0e0 - status: 404 Not Found - code: 404 - duration: 34.815667ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1f801a7b-08d0-4f71-859a-78213e8c9224 - status: 200 OK - code: 200 - duration: 90.082691ms - - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b06ef64c-d4b6-453e-ae95-c7d646fae930 - status: 200 OK - code: 200 - duration: 101.433828ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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:55:30 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e314ce7c-4d1c-46fc-b561-4e5d26caac6c - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 90.22136ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1946 - uncompressed: false - 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: - - "1946" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 04025aad-6c35-4d55-82ad-2ddd16605910 - status: 200 OK - code: 200 - duration: 151.318247ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - 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": "601ae645-7edb-49d8-a59a-636a130cd8ca"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 95749e51-c40a-4ca5-8782-bd95861917dc - status: 404 Not Found - code: 404 - duration: 27.910414ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 446 - uncompressed: false - 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: - - "446" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 791e3631-ee83-460a-935a-1190cd2a426a - status: 200 OK - code: 200 - duration: 79.923673ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 186 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2025 - uncompressed: false - 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: - - "2025" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b5cf4695-1f8a-4752-813d-5276116cb916 - status: 200 OK - code: 200 - duration: 428.731088ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1979 - uncompressed: false - 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: - - "1979" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 47e11dfd-567d-4bfa-aa18-2ab126c33ad0 - status: 200 OK - code: 200 - duration: 147.397034ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2025 - uncompressed: false - 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: - - "2025" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 62fe5e6d-60fb-44ca-a439-d5eaf305d827 - status: 200 OK - code: 200 - duration: 121.834299ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - 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": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 17c27e35-8d46-47e3-bbe8-3ea944f6f7a9 - status: 404 Not Found - code: 404 - duration: 26.754252ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 464019a3-e9f0-447f-9f7f-38d778f2efcd - status: 200 OK - code: 200 - duration: 89.715334ms - - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - de26e5e1-4d56-4083-90cc-df5bf65a7abc - status: 200 OK - code: 200 - duration: 89.578098ms - - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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:55:31 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 40c84e30-9729-407b-af10-290c5a257ef2 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 105.929045ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 678 - uncompressed: false - 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: - - "678" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 00ce555c-1ba0-4984-9c18-1272c9400ab7 - status: 200 OK - code: 200 - duration: 87.617622ms - - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2085 - uncompressed: false - 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: - - "2085" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 229a9c5c-cc99-4a91-9fd2-c129aef1a949 - status: 200 OK - code: 200 - duration: 137.995452ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - 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": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c7c5701a-f430-4439-a38d-d295b6927087 - status: 404 Not Found - code: 404 - duration: 35.010462ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 148a926a-b232-42c1-9844-9eb99d2c5ea6 - status: 200 OK - code: 200 - duration: 76.336745ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d8b1ddad-edbe-4578-b654-99825e51367a - status: 200 OK - code: 200 - duration: 101.313113ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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:55:32 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 919b1c4c-48d5-409e-92b2-985010cea8a0 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 99.479394ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 678 - uncompressed: false - 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: - - "678" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3abfd79e-0079-4017-b627-a74a8a2e9391 - status: 200 OK - code: 200 - duration: 73.038638ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2039 - uncompressed: false - 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: - - "2039" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c2416dd4-f3d7-43b1-9206-f45f679b368b - status: 200 OK - code: 200 - duration: 177.83228ms - - 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/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - 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": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 79eb88b4-b23a-449f-912d-ae9ddb2e9bbd - status: 404 Not Found - code: 404 - duration: 29.76345ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fc667edf-7eaf-4429-84d7-e2b2f6e93799 - status: 200 OK - code: 200 - duration: 94.191736ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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: - - 30e289aa-437d-4447-9686-0804a592ff75 - status: 200 OK - code: 200 - duration: 99.780557ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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:55:33 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e13a126b-ddd8-48c5-8eb9-dbb9c1b23714 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 110.668499ms - - id: 84 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 149 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+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: 423 - uncompressed: false - 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: - - "423" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 924a893f-5540-470e-9cb8-f65cec1155f1 - status: 200 OK - code: 200 - duration: 370.499724ms - - id: 85 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e62ff282-cf88-4f1f-bfde-793a543685c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 424 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 58248dae-9540-43f3-a5cd-8648adbf972e - status: 200 OK - code: 200 - duration: 97.355924ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e62ff282-cf88-4f1f-bfde-793a543685c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 424 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1903c744-060e-4467-8ec9-df757d0f18b6 - status: 200 OK - code: 200 - duration: 101.018593ms - - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2085 - uncompressed: false - 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: - - "2085" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3e5bcde7-ae7a-472b-891e-0d06eb827ef1 - status: 200 OK - code: 200 - duration: 159.290676ms - - 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/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - 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": "601ae645-7edb-49d8-a59a-636a130cd8ca"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b1ca10dc-074e-4c8e-8d54-abff754c98c5 - status: 404 Not Found - code: 404 - duration: 32.038103ms - - id: 89 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 678 - uncompressed: false - 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: - - "678" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1cf58468-cd0f-424d-a1ed-deae62a5e4a1 - status: 200 OK - code: 200 - duration: 86.174994ms - - 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/volumes/e62ff282-cf88-4f1f-bfde-793a543685c3 - 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": "e62ff282-cf88-4f1f-bfde-793a543685c3"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 444bea60-fd4a-485c-a59f-b4587d84d1d5 - status: 404 Not Found - code: 404 - duration: 24.669875ms - - id: 91 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e62ff282-cf88-4f1f-bfde-793a543685c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 424 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7b8552cb-6343-4261-8548-3fc068a54fd6 - status: 200 OK - code: 200 - duration: 111.880015ms - - id: 92 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 264 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2164 - uncompressed: false - 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: - - "2164" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f4c45a8a-ad70-49c9-a706-16f895b571db - status: 200 OK - code: 200 - duration: 392.701445ms - - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2118 - uncompressed: false - 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: - - "2118" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 53dcb87c-b12b-40e9-8ad7-9c7a426de819 - status: 200 OK - code: 200 - duration: 152.823462ms - - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2118 - uncompressed: false - 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: - - "2118" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 039d33d3-ee40-4808-8b02-f19f74680931 - status: 200 OK - code: 200 - duration: 177.276632ms - - 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/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - 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": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 756b34ed-1210-4b37-8ce5-aa11855410d2 - status: 404 Not Found - code: 404 - duration: 28.219843ms - - id: 96 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 803f5a42-eb90-4d9b-ad14-2706ef6a2b1e - status: 200 OK - code: 200 - duration: 82.06615ms - - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d7a98332-990a-4483-9ce2-88f03fc78ded - status: 200 OK - code: 200 - duration: 84.095856ms - - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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:55:35 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0a69dba0-f662-4413-821f-a47c170419e8 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 113.09677ms - - id: 99 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 678 - uncompressed: false - 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: - - "678" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cc3c144d-5aa2-4800-99d0-b6cb23c6c0c9 - status: 200 OK - code: 200 - duration: 81.319855ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e62ff282-cf88-4f1f-bfde-793a543685c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 656 - uncompressed: false - 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: - - "656" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 07640b73-cd3a-45d4-a651-ff616dcdd326 - status: 200 OK - code: 200 - duration: 83.917503ms - - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2178 - uncompressed: false - 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: - - "2178" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2f903292-a8a5-44b9-9612-f9a3b4c722a4 - status: 200 OK - code: 200 - duration: 131.735226ms - - id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - 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": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a3af37b6-04e5-46de-b45b-5ce8ccb182f8 - status: 404 Not Found - code: 404 - duration: 27.060987ms - - id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 527c42e4-f53d-4c1b-9790-cc916f10e329 - status: 200 OK - code: 200 - duration: 89.487228ms - - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dc9b170b-20ac-44f7-8116-11b0b95b44d1 - status: 200 OK - code: 200 - duration: 99.221512ms - - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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:55:36 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9085f12b-bff7-4db0-b5d3-f5a39b38d5dd - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 88.982315ms - - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2178 - uncompressed: false - 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: - - "2178" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b06a0357-5eae-4a62-b471-b0f58d6daa90 - status: 200 OK - code: 200 - duration: 166.864111ms - - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2178 - uncompressed: false - 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: - - "2178" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8e81c8c9-7358-4775-b945-36bd594c7ecf - status: 200 OK - code: 200 - duration: 139.932146ms - - id: 108 - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:37 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/68848e25-aa22-452d-8f85-12d0b9a7bb08 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 108f02ec-c7e1-4058-bd34-0a0864744ce4 - status: 202 Accepted - code: 202 - duration: 256.587862ms - - 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/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2187 - uncompressed: false - 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: - - "2187" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9a1a8fd3-2ffe-44df-94bf-bae2377a784e - status: 200 OK - code: 200 - duration: 142.139564ms - - id: 110 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - 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": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9bd774de-67b9-483f-a479-f860c251fc27 - status: 404 Not Found - code: 404 - duration: 43.475734ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - 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": "cd02bd9e-6199-4cdf-a539-2150d85a23cc"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 56c94dfc-f6b8-4a03-99d5-b36c045d213a - status: 404 Not Found - code: 404 - duration: 34.159461ms - - id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 498 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6173e2e1-f1cb-46a5-b059-910fc45ec611 - status: 200 OK - code: 200 - duration: 74.746814ms - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cd02bd9e-6199-4cdf-a539-2150d85a23cc - 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:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ff96340f-8d70-4eac-84a2-d4d6ad9529f6 - status: 204 No Content - code: 204 - duration: 147.585921ms - - id: 114 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e62ff282-cf88-4f1f-bfde-793a543685c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 449 - uncompressed: false - 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: - - "449" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d8569689-aa8e-40af-87aa-72e05ef792c6 - status: 200 OK - code: 200 - duration: 72.678266ms - - id: 115 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 446 - uncompressed: false - 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: - - "446" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7c5978cd-485e-4589-8199-2451fa6088aa - status: 200 OK - code: 200 - duration: 101.173475ms - - id: 116 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e62ff282-cf88-4f1f-bfde-793a543685c3 - 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:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a721cccc-b898-49bc-8863-2bbe4f11c368 - status: 204 No Content - code: 204 - duration: 170.691651ms - - id: 117 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - 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:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 146ed3d3-97d8-4043-aae4-9314c3dea45c - status: 204 No Content - code: 204 - duration: 161.677293ms - - id: 118 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e62ff282-cf88-4f1f-bfde-793a543685c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"e62ff282-cf88-4f1f-bfde-793a543685c3","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6d08de2a-09e8-4ac2-8e1c-dd241d60a96a - status: 404 Not Found - code: 404 - duration: 80.073627ms - - id: 119 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/601ae645-7edb-49d8-a59a-636a130cd8ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"601ae645-7edb-49d8-a59a-636a130cd8ca","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7d30c08a-fd64-451d-a968-e15a7ad5842c - status: 404 Not Found - code: 404 - duration: 86.52992ms - - id: 120 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1ca1e0be-34fd-4d45-b30b-19eeb8ead628 - 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": "1ca1e0be-34fd-4d45-b30b-19eeb8ead628"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d1526515-ef14-476a-97e0-805d1cd92103 - status: 404 Not Found - code: 404 - duration: 45.34514ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 153 + host: api.scaleway.com + body: "{\"name\":\"tf-volume-intelligent-wozniak\",\"perf_iops\":5000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"from_empty\":{\"size\":10000000000},\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+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 + content_length: 426 + body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:46.847002Z\", \"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: + - "426" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 98011db5-bbcf-4bd6-8bd0-ceb4a6101bcb + status: 200 OK + code: 200 + duration: 547.757485ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 427 + body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:46.847002Z\", \"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: + - "427" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 25efcdfb-2460-4f96-925f-3bf99e20cadb + status: 200 OK + code: 200 + duration: 147.910863ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 427 + body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:46.847002Z\", \"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: + - "427" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2f9eb867-1f03-4e03-92b7-1e21dc59a59f + status: 200 OK + code: 200 + duration: 78.676972ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0f605dfe-0d7a-4d44-8d26-59c97880a4c8 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 51.847269ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 36fe2366-e8ca-4478-81d8-c3a3d6ad3d56 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 49.625471ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - afc279d3-2cbc-4261-b2dd-dd148d82ac5b + status: 404 Not Found + code: 404 + duration: 28.57114ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 427 + body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:46.847002Z\", \"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: + - "427" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1ad7fae5-cf2d-4cd7-9dc8-d30a2799052c + status: 200 OK + code: 200 + duration: 71.413519ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/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 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 787cf1e1-74b3-4c21-bb96-21311270756f + status: 200 OK + code: 200 + duration: 44.475041ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 316 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-nice-mirzakhani\",\"dynamic_ip_required\":false,\"commercial_type\":\"PLAY2-PICO\",\"image\":\"6d3c053e-c728-4294-b23a-560b62a4d592\",\"volumes\":{\"0\":{\"boot\":false},\"1\":{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\",\"volume_type\":\"sbs_volume\"}},\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1887 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:48.374336+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 52bde644-1ad0-4a23-9bca-39b7078f0b19 + status: 201 Created + code: 201 + duration: 1.30244615s +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1887 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:48.374336+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3cf89d8f-ef27-4657-b7a5-f7f9093903d6 + status: 200 OK + code: 200 + duration: 151.116977ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1887 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:48.374336+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5f7bebf9-2654-43b9-b068-3383f28d71da + status: 200 OK + code: 200 + duration: 124.896556ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6eba496c-4fc4-4a5d-949a-953b41b6891d + status: 200 OK + code: 200 + duration: 113.639241ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 659 + body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:48.628302Z\", \"references\":[{\"id\":\"22861352-4b65-4172-a8a2-a846beeb59ea\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.628302Z\", \"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: + - "659" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dcffa370-038b-4a35-8c75-9943cae9c9a5 + status: 200 OK + code: 200 + duration: 76.909367ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"e9b45aec-cc2c-4278-9e29-007155f622c7\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/action\", \"href_result\": \"/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"started_at\": \"2025-10-30T15:41:49.727617+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e9b45aec-cc2c-4278-9e29-007155f622c7 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c5dde769-3395-4190-81e0-6863a2d71081 + status: 202 Accepted + code: 202 + duration: 241.820949ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1909 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:49.541688+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8eb6e254-68cf-4075-932e-b1520b6870b4 + status: 200 OK + code: 200 + duration: 153.371557ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2044 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": 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: + - "2044" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 55a1af77-f46f-46a3-9123-ed2e63e51d68 + status: 200 OK + code: 200 + duration: 149.990997ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2044 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": 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: + - "2044" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 331de26e-a514-4c49-9a5b-96dfc9708d77 + status: 200 OK + code: 200 + duration: 156.496429ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3dd533ce-4fd3-4a3b-9d94-dd37843f7cfc + status: 404 Not Found + code: 404 + duration: 28.545502ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2cb67ccc-7539-4a42-855c-e479a101c7b8 + status: 200 OK + code: 200 + duration: 86.593483ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - adfcb04c-6220-4cd1-8d7e-be97c643041f + status: 200 OK + code: 200 + duration: 96.73736ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4d4fcfd1-e83f-4474-990c-499cc6b7506a + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 96.992298ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 659 + body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:48.628302Z\", \"references\":[{\"id\":\"22861352-4b65-4172-a8a2-a846beeb59ea\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.628302Z\", \"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: + - "659" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 35d40d45-b4cb-4d6b-9fd7-c930d814a21f + status: 200 OK + code: 200 + duration: 80.73802ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2090 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": 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: + - "2090" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4d0a3636-66ef-4fd5-99f0-27c0f4fdd95b + status: 200 OK + code: 200 + duration: 144.718528ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4f0c7611-5fbd-4f07-a77a-0a51b28ea6e9 + status: 404 Not Found + code: 404 + duration: 28.007374ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9ac5622d-37c4-42f4-a53b-fe6ea34db65f + status: 200 OK + code: 200 + duration: 157.122724ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 948e5931-95d7-4f1e-8f9e-46a5f315abcd + status: 200 OK + code: 200 + duration: 117.008953ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7960d51c-f698-4942-9658-c2663a498339 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 100.827332ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 659 + body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:48.628302Z\", \"references\":[{\"id\":\"22861352-4b65-4172-a8a2-a846beeb59ea\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.628302Z\", \"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: + - "659" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5e78f627-1182-47f8-a404-c4802f4f6b8c + status: 200 OK + code: 200 + duration: 76.59521ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2044 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": 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: + - "2044" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c96092aa-db80-4a95-bfa5-784e8499dcb9 + status: 200 OK + code: 200 + duration: 152.783305ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 152db8ae-1276-400b-b549-2f85b0ad863c + status: 404 Not Found + code: 404 + duration: 28.109636ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a100d2f6-0a57-470c-b3f6-19e97d4bd062 + status: 200 OK + code: 200 + duration: 93.453059ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6441c88f-af2b-4e10-889d-6181f1aec127 + status: 200 OK + code: 200 + duration: 100.834785ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:57 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ebab82c4-1a12-4ea3-9f61-87f1c8d5fc2f + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 114.233087ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2044 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": 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: + - "2044" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a27087ba-4bd4-4003-8462-87fb393b531f + status: 200 OK + code: 200 + duration: 164.149666ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 108 + host: api.scaleway.com + body: "{\"volumes\":{\"0\":{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\",\"boot\":false,\"name\":\"tf-vol-nervous-neumann\"}}}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1905 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": 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: + - "1905" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 758a2e95-c9fa-4947-b4fe-91d10795c4ad + status: 200 OK + code: 200 + duration: 327.212191ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1951 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": 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: + - "1951" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 900eb85c-d1fa-44c7-ad1d-8b1019dab4d5 + status: 200 OK + code: 200 + duration: 159.562601ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1905 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": 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: + - "1905" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 992c90cc-2668-4f7b-a095-312ba97823e9 + status: 200 OK + code: 200 + duration: 136.816115ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 398ee248-74da-4056-ac97-d35f215feb13 + status: 404 Not Found + code: 404 + duration: 25.134825ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ad6c4e78-a0d4-4154-9804-d7eecba8d52d + status: 200 OK + code: 200 + duration: 106.095794ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6c59b6d8-8207-4703-8c8f-69ada04f4802 + status: 200 OK + code: 200 + duration: 111.095672ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0f2a0717-f82b-412e-88ae-47a5797f382d + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 107.350598ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 660 + body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:48.628302Z\", \"references\":[{\"id\":\"22861352-4b65-4172-a8a2-a846beeb59ea\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.628302Z\", \"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: + - "660" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 732684c8-0efe-4939-ab13-6b22abc56826 + status: 200 OK + code: 200 + duration: 79.234309ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1951 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": 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: + - "1951" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9bedb26d-9a98-4011-a6f3-85f01678d343 + status: 200 OK + code: 200 + duration: 138.95052ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 156e4468-d86c-4e69-9ac1-94912a0d461f + status: 404 Not Found + code: 404 + duration: 25.037002ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 746c71a9-4ea0-46ca-8df1-d0bf88d76af7 + status: 200 OK + code: 200 + duration: 101.542845ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fe0655e0-8dbf-4a39-a667-c49174e1e569 + status: 200 OK + code: 200 + duration: 120.459777ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9d768102-db02-42c4-be7a-5d712d639e46 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 111.344409ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 660 + body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:48.628302Z\", \"references\":[{\"id\":\"22861352-4b65-4172-a8a2-a846beeb59ea\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.628302Z\", \"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: + - "660" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 67873fff-0015-4ca9-b8a6-f95799f037d2 + status: 200 OK + code: 200 + duration: 85.883914ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 660 + body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:48.628302Z\", \"references\":[{\"id\":\"22861352-4b65-4172-a8a2-a846beeb59ea\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.628302Z\", \"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: + - "660" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 998ebe87-6710-48e1-bcac-a743552f0d3b + status: 200 OK + code: 200 + duration: 80.895908ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 660 + body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:48.628302Z\", \"references\":[{\"id\":\"22861352-4b65-4172-a8a2-a846beeb59ea\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.628302Z\", \"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: + - "660" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6e998169-785e-4e28-9207-59d6774176dd + status: 200 OK + code: 200 + duration: 81.244593ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 660 + body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:48.628302Z\", \"references\":[{\"id\":\"22861352-4b65-4172-a8a2-a846beeb59ea\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.628302Z\", \"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: + - "660" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 004c1d3f-a060-48b4-b411-ff2b971838ab + status: 200 OK + code: 200 + duration: 96.616298ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 660 + body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:48.628302Z\", \"references\":[{\"id\":\"22861352-4b65-4172-a8a2-a846beeb59ea\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.628302Z\", \"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: + - "660" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fd8c4125-c8c0-4dcb-a0d6-479a10f19f5c + status: 200 OK + code: 200 + duration: 83.521456ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 660 + body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:48.628302Z\", \"references\":[{\"id\":\"22861352-4b65-4172-a8a2-a846beeb59ea\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.628302Z\", \"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: + - "660" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 959bb8a1-37e1-4058-824c-a20d1bb64b0c + status: 200 OK + code: 200 + duration: 89.021824ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 660 + body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:48.628302Z\", \"references\":[{\"id\":\"22861352-4b65-4172-a8a2-a846beeb59ea\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.628302Z\", \"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: + - "660" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a1553b30-76a5-4d92-b2d2-ae418400a188 + status: 200 OK + code: 200 + duration: 91.184332ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 452 + body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:42:39.151581Z\", \"references\":[], \"parent_snapshot_id\":null, \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:39.151581Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "452" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 35a47af6-c89b-47ea-b694-95502aa32198 + status: 200 OK + code: 200 + duration: 82.343128ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 452 + body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:42:39.151581Z\", \"references\":[], \"parent_snapshot_id\":null, \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:39.151581Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "452" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 04ce9878-a3d7-409d-9754-3cb6d2b9ee08 + status: 200 OK + code: 200 + duration: 93.68318ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1905 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": 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: + - "1905" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 450c99f8-16ed-4c89-bbc3-c490238b4941 + status: 200 OK + code: 200 + duration: 131.403535ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4ca0d730-d340-4a49-b71b-a66fb4412298 + status: 404 Not Found + code: 404 + duration: 31.877966ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - edbe6ee8-a5c5-4f5a-92e7-d4809e1ce544 + status: 200 OK + code: 200 + duration: 118.1954ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ad0431a8-d0fa-471e-ba43-9786fb4b81e4 + status: 200 OK + code: 200 + duration: 88.022141ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a43bef87-acf5-45c4-9df0-e0c6830e2a47 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 96.38577ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1951 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": 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: + - "1951" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 52173472-b788-4799-9612-92f5a513cabd + status: 200 OK + code: 200 + duration: 140.748785ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ae6a4c07-6f5e-4261-8760-dd17ba56b545 + status: 404 Not Found + code: 404 + duration: 31.028613ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 452 + body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:42:39.151581Z\", \"references\":[], \"parent_snapshot_id\":null, \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:39.151581Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "452" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e51d5fec-6f3f-459b-bd26-8f5ce904d51e + status: 200 OK + code: 200 + duration: 96.55088ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 184 + host: api.scaleway.com + body: "{\"volumes\":{\"0\":{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\",\"boot\":false,\"name\":\"tf-vol-friendly-booth\"},\"1\":{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\",\"volume_type\":\"sbs_volume\"}}}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1984 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": 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\": [], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1984" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 12468299-8eee-42e8-bae0-4ae201d23b4c + status: 200 OK + code: 200 + duration: 439.994406ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1984 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": 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\": [], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1984" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8a9b8ff4-d4c8-4871-95bf-494a1b7ac24f + status: 200 OK + code: 200 + duration: 134.347157ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2030 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": 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\": [], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2030" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b51cb30e-fe8f-4f2e-ab17-5393740d9351 + status: 200 OK + code: 200 + duration: 153.511716ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - badb5fb8-05f4-43e6-af39-32330cd67051 + status: 404 Not Found + code: 404 + duration: 34.779499ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9c93b3e0-be38-40bb-b046-a8461d6bfb8b + status: 200 OK + code: 200 + duration: 93.637735ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 44437097-471c-4068-90a7-194f736784c4 + status: 200 OK + code: 200 + duration: 102.336943ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4329313c-7da0-483b-9379-0ebbd7ee3ad2 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 101.560116ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 684 + body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:42:40.602381Z\", \"references\":[{\"id\":\"f1f1b906-f6d0-43cb-96cb-11d782a6476c\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:42:40.602381Z\", \"type\":\"exclusive\", \"status\":\"attached\"}], \"parent_snapshot_id\":null, \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:39.151581Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "684" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1b86ff37-559d-4379-9d9f-61f1748ba668 + status: 200 OK + code: 200 + duration: 100.701074ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2090 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": 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: + - "2090" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 337fc962-2701-4945-bd71-0297cd360d54 + status: 200 OK + code: 200 + duration: 163.641367ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 964aa50c-0b14-4b82-afa8-1b500694fd00 + status: 404 Not Found + code: 404 + duration: 32.762296ms +- id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f324e580-0bab-4d41-8622-daa24574c425 + status: 200 OK + code: 200 + duration: 105.422451ms +- id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 12328584-55fc-4c87-8bc1-b9bb86de0ca5 + status: 200 OK + code: 200 + duration: 104.755921ms +- id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 41b24df7-9bc8-477b-8ace-a5b5bab22bcb + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 90.708862ms +- id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 684 + body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:42:40.602381Z\", \"references\":[{\"id\":\"f1f1b906-f6d0-43cb-96cb-11d782a6476c\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:42:40.602381Z\", \"type\":\"exclusive\", \"status\":\"attached\"}], \"parent_snapshot_id\":null, \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:39.151581Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "684" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8e28dbf1-0995-4460-bee0-2512d19f3cdf + status: 200 OK + code: 200 + duration: 83.470734ms +- id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2044 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": 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: + - "2044" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 90da755b-ae6c-4ee0-825a-9c9da984afa0 + status: 200 OK + code: 200 + duration: 149.384565ms +- id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 110a86cd-e581-4bb3-b906-85a4dd82d183 + status: 404 Not Found + code: 404 + duration: 25.034399ms +- id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 59069d45-18ae-45bd-8132-983cc2826f42 + status: 200 OK + code: 200 + duration: 79.429444ms +- id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bef64d13-6222-401c-9edb-834eb75935d7 + status: 200 OK + code: 200 + duration: 99.567168ms +- id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:43 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7cd7183d-abf0-49ba-89b1-8cae64f18778 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 102.065184ms +- id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 147 + host: api.scaleway.com + body: "{\"name\":\"tf-volume-nice-davinci\",\"perf_iops\":15000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"from_empty\":{\"size\":15000000000},\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+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 + content_length: 421 + body: "{\"id\":\"7b8c853d-939c-4852-b689-889cf61b5401\", \"name\":\"tf-volume-nice-davinci\", \"type\":\"sbs_15k\", \"size\":15000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:43.348440Z\", \"updated_at\":\"2025-10-30T15:42:43.348440Z\", \"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: + - "421" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 07a2b58e-56fb-4124-8a17-8c6d020d258b + status: 200 OK + code: 200 + duration: 200.326401ms +- id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b8c853d-939c-4852-b689-889cf61b5401 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 421 + body: "{\"id\":\"7b8c853d-939c-4852-b689-889cf61b5401\", \"name\":\"tf-volume-nice-davinci\", \"type\":\"sbs_15k\", \"size\":15000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:43.348440Z\", \"updated_at\":\"2025-10-30T15:42:43.348440Z\", \"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: + - "421" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e93b407a-b635-4c29-9a7a-c355762f21f0 + status: 200 OK + code: 200 + duration: 87.432837ms +- id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b8c853d-939c-4852-b689-889cf61b5401 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 422 + body: "{\"id\":\"7b8c853d-939c-4852-b689-889cf61b5401\", \"name\":\"tf-volume-nice-davinci\", \"type\":\"sbs_15k\", \"size\":15000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:43.348440Z\", \"updated_at\":\"2025-10-30T15:42:43.348440Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9b88d67b-c0fa-4754-979b-37386febe27b + status: 200 OK + code: 200 + duration: 98.88553ms +- id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b8c853d-939c-4852-b689-889cf61b5401 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 422 + body: "{\"id\":\"7b8c853d-939c-4852-b689-889cf61b5401\", \"name\":\"tf-volume-nice-davinci\", \"type\":\"sbs_15k\", \"size\":15000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:43.348440Z\", \"updated_at\":\"2025-10-30T15:42:43.348440Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fd8a0a17-2a5f-44bb-8662-7506ae3179a2 + status: 200 OK + code: 200 + duration: 80.676945ms +- id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2090 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": 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: + - "2090" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a540843d-d4e3-4f03-8a22-7070ed3fc02a + status: 200 OK + code: 200 + duration: 160.218639ms +- id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ed1b7158-aad8-484e-9124-458fdb31c277 + status: 404 Not Found + code: 404 + duration: 26.035728ms +- id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 684 + body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:42:40.602381Z\", \"references\":[{\"id\":\"f1f1b906-f6d0-43cb-96cb-11d782a6476c\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:42:40.602381Z\", \"type\":\"exclusive\", \"status\":\"attached\"}], \"parent_snapshot_id\":null, \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:39.151581Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "684" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d42d3f70-9a09-4d47-b123-ae40eebdf26f + status: 200 OK + code: 200 + duration: 98.091981ms +- id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7b8c853d-939c-4852-b689-889cf61b5401 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"7b8c853d-939c-4852-b689-889cf61b5401\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 136f43ca-aa32-48a6-b820-dd06377b1e00 + status: 404 Not Found + code: 404 + duration: 28.214445ms +- id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b8c853d-939c-4852-b689-889cf61b5401 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 422 + body: "{\"id\":\"7b8c853d-939c-4852-b689-889cf61b5401\", \"name\":\"tf-volume-nice-davinci\", \"type\":\"sbs_15k\", \"size\":15000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:43.348440Z\", \"updated_at\":\"2025-10-30T15:42:43.348440Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - db4b6766-0c00-48e0-bc27-05a76035abfb + status: 200 OK + code: 200 + duration: 82.400307ms +- id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 264 + host: api.scaleway.com + body: "{\"volumes\":{\"0\":{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\",\"boot\":false,\"name\":\"tf-vol-flamboyant-newton\"},\"1\":{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\",\"volume_type\":\"sbs_volume\"},\"2\":{\"id\":\"7b8c853d-939c-4852-b689-889cf61b5401\",\"volume_type\":\"sbs_volume\"}}}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2123 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"2\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"7b8c853d-939c-4852-b689-889cf61b5401\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": 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\": [], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2123" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 081f8c38-9586-4689-bdad-4cc7f33574b6 + status: 200 OK + code: 200 + duration: 441.881935ms +- id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2169 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"2\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"7b8c853d-939c-4852-b689-889cf61b5401\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": 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\": [], \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aca8dcaf-90cb-4a88-9dc9-c40e29a3ea3f + status: 200 OK + code: 200 + duration: 146.922288ms +- id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2169 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"2\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"7b8c853d-939c-4852-b689-889cf61b5401\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": 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\": [], \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e1d106ec-51ee-494d-bc14-5df47f42b946 + status: 200 OK + code: 200 + duration: 160.402004ms +- id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7a82da36-89dc-4024-a61d-0afa2142e8d0 + status: 404 Not Found + code: 404 + duration: 32.782594ms +- id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aa33e930-abee-4964-bf33-d9888a205512 + status: 200 OK + code: 200 + duration: 77.576048ms +- id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c050d2b7-aaa8-4435-a655-10e90b40b47a + status: 200 OK + code: 200 + duration: 107.367602ms +- id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3a194418-d38d-4a6c-b4a8-8abb6c9f046c + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 96.984474ms +- id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b8c853d-939c-4852-b689-889cf61b5401 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 654 + body: "{\"id\":\"7b8c853d-939c-4852-b689-889cf61b5401\", \"name\":\"tf-volume-nice-davinci\", \"type\":\"sbs_15k\", \"size\":15000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:43.348440Z\", \"updated_at\":\"2025-10-30T15:42:49.280530Z\", \"references\":[{\"id\":\"a2731bad-25e6-44c4-aef3-c5e540db9746\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:42:49.280530Z\", \"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: + - "654" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 540d59e2-4158-4ada-87b4-c23e771b19cf + status: 200 OK + code: 200 + duration: 96.617035ms +- id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 684 + body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:42:40.602381Z\", \"references\":[{\"id\":\"f1f1b906-f6d0-43cb-96cb-11d782a6476c\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:42:40.602381Z\", \"type\":\"exclusive\", \"status\":\"attached\"}], \"parent_snapshot_id\":null, \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:39.151581Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "684" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9a16b8b3-31f7-40dd-a8f0-12f2cb607d58 + status: 200 OK + code: 200 + duration: 96.438761ms +- id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2183 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"2\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"7b8c853d-939c-4852-b689-889cf61b5401\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": 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: + - "2183" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3c426662-3bcf-48cd-9023-92b4f3c97e42 + status: 200 OK + code: 200 + duration: 160.881573ms +- id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b4aaa6da-6a1b-4581-8921-f449d82c6982 + status: 404 Not Found + code: 404 + duration: 25.906125ms +- id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3dc18a05-80cf-4e0a-92a3-a349dd9fd940 + status: 200 OK + code: 200 + duration: 98.750578ms +- id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aaca8ed5-f0b1-4c66-b7e1-7d5b9457c790 + status: 200 OK + code: 200 + duration: 95.245762ms +- id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6aa3d89c-bd7c-4082-b6b8-2dbebf1c3efb + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 99.722901ms +- id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2229 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"2\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"7b8c853d-939c-4852-b689-889cf61b5401\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": 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: + - "2229" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 26841ec6-30af-4c67-a779-4c2394f4ece0 + status: 200 OK + code: 200 + duration: 162.796485ms +- id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2183 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"2\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"7b8c853d-939c-4852-b689-889cf61b5401\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": 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: + - "2183" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f490b294-fe77-4e36-95fe-b4ab8a518f31 + status: 200 OK + code: 200 + duration: 164.975894ms +- id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"8493a631-fab0-4504-b486-6eeb38616f0a\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/action\", \"href_result\": \"/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"started_at\": \"2025-10-30T15:42:51.850310+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8493a631-fab0-4504-b486-6eeb38616f0a + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 58320e52-2261-4460-92f6-1c7b9cb94a47 + status: 202 Accepted + code: 202 + duration: 362.256615ms +- id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2192 + body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"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-nice-mirzakhani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"2\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"7b8c853d-939c-4852-b689-889cf61b5401\", \"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:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:42:51.594744+00:00\", \"bootscript\": 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, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2192" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2ba523b8-8d2a-4f81-b13d-f015636ccf99 + status: 200 OK + code: 200 + duration: 158.559718ms +- id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 522439bb-1824-4f8b-888d-986327cb7fa6 + status: 404 Not Found + code: 404 + duration: 72.099756ms +- id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ad627e4e-3f24-459f-a437-c245e6eb9ce2 + status: 404 Not Found + code: 404 + duration: 35.609647ms +- id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 498 + body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:42:53.762844Z\", \"references\":[], \"parent_snapshot_id\":\"36b4ce54-c67a-4f68-ab74-839515834352\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:53.762844Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "498" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4e6aec0d-971e-4b9e-8431-dc38841d206b + status: 200 OK + code: 200 + duration: 113.147524ms +- id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3f8af24b-b4a6-4d16-b842-8b00325beb63 + status: 204 No Content + code: 204 + duration: 192.237533ms +- id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 452 + body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:42:53.844364Z\", \"references\":[], \"parent_snapshot_id\":null, \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:53.844364Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "452" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dfee3e7e-b2a9-460f-a5c8-da81e835bab4 + status: 200 OK + code: 200 + duration: 102.286111ms +- id: 115 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b8c853d-939c-4852-b689-889cf61b5401 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 447 + body: "{\"id\":\"7b8c853d-939c-4852-b689-889cf61b5401\", \"name\":\"tf-volume-nice-davinci\", \"type\":\"sbs_15k\", \"size\":15000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:43.348440Z\", \"updated_at\":\"2025-10-30T15:42:53.916545Z\", \"references\":[], \"parent_snapshot_id\":null, \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":15000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:53.916545Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "447" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0865f3ba-eb35-420c-b327-b74a0da3a7a7 + status: 200 OK + code: 200 + duration: 106.676596ms +- id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 52c3b120-bfed-439b-9807-6b0111c1961b + status: 204 No Content + code: 204 + duration: 171.503811ms +- id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b8c853d-939c-4852-b689-889cf61b5401 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 01d308af-5931-4a47-949b-032f338bbdcb + status: 204 No Content + code: 204 + duration: 172.625424ms +- id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6d3e0561-a00e-490b-929d-f7d84cea9686 + status: 404 Not Found + code: 404 + duration: 89.404657ms +- id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b8c853d-939c-4852-b689-889cf61b5401 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"7b8c853d-939c-4852-b689-889cf61b5401\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5849c634-0fbe-4130-be3e-e64d978c7af1 + status: 404 Not Found + code: 404 + duration: 86.497605ms +- id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7296540b-0007-439e-8bd3-817fc384e989 + status: 404 Not Found + code: 404 + duration: 60.246582ms 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 b27167692..521779721 100644 --- a/internal/services/instance/testdata/server-custom-diff-image.cassette.yaml +++ b/internal/services/instance/testdata/server-custom-diff-image.cassette.yaml @@ -1,7345 +1,5741 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:00 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3f7fea11-d94f-4e6c-9daa-db82435d0162 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 43.649294ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:00 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 33555cef-9789-401e-9210-26bfe4726ed8 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 42.380692ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:00 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 78640ab1-5eb1-4e3a-8a93-d63a269f42eb - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 49.024836ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:00 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - de651c44-6fb9-42a6-a149-7107f7d80b6b - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 49.82877ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 19ed1c03-d312-4dc0-8aa2-ec9974b575de - status: 200 OK - code: 200 - duration: 49.713244ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1348d787-d1c4-4375-afe8-ffa5f64aaec3 - status: 200 OK - code: 200 - duration: 57.568062ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 246 - 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","tags":["control"]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1783 - 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": ["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: - - "1783" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:01 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2eed81c9-2db9-4a58-8881-e97b4c4f0555 - status: 201 Created - code: 201 - duration: 1.277751841s - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 240 - 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","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 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1774 - uncompressed: false - 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: - - "1774" - Content-Type: - - application/json - Date: - - 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;edge03) - X-Request-Id: - - 3c967060-3945-4c0c-a711-24dffd80444e - status: 201 Created - code: 201 - duration: 1.36371952s - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 1783 - 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": ["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: - - "1783" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c4268351-dc55-4770-9c1b-60cda0766044 - status: 200 OK - code: 200 - duration: 183.456524ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1774 - uncompressed: false - 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: - - "1774" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 192557ac-79a3-4d9a-93ef-46743f78118e - status: 200 OK - code: 200 - duration: 169.521976ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1737 - 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": ["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: - - "1737" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c66b03ea-b880-4dca-a221-7faf70254838 - status: 200 OK - code: 200 - duration: 176.848717ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1728 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3da27cda-f2e7-4fd9-a751-12e7971e43e2 - status: 200 OK - code: 200 - duration: 176.513811ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1737 - 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": ["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: - - "1737" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 48de13f5-8104-403d-8a28-5af2c3e93aab - status: 200 OK - code: 200 - duration: 171.446475ms - - 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/5482e87c-50db-46f1-a362-030d2b4c49c7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1728 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7d487f79-cef3-4200-bdb5-34b179ef6bb3 - status: 200 OK - code: 200 - duration: 127.934286ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/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:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9ebfb875-9590-46f8-901a-1e19850fecb5 - status: 404 Not Found - code: 404 - duration: 34.863454ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 - 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": "6f15a087-0697-40f6-b645-b2020057a336"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a812c468-7c60-4a4b-ac47-48505d77b293 - status: 404 Not Found - code: 404 - duration: 27.285264ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - befe74b5-9db4-4481-88eb-269f72616061 - status: 200 OK - code: 200 - duration: 78.893581ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f696818-eb10-4822-9698-0b7e2469ca58 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - 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: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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1a74a00f-d266-4981-b350-84f621afc4bf - status: 200 OK - code: 200 - duration: 89.326961ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 17 - uncompressed: false - body: '{"user_data": []}' - headers: - Content-Length: - - "17" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3a1ad65c-1203-48d0-af64-581f44019220 - status: 200 OK - code: 200 - duration: 120.797672ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 17 - uncompressed: false - body: '{"user_data": []}' - headers: - Content-Length: - - "17" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 88f953c3-a328-46fc-988d-43687959c49c - status: 200 OK - code: 200 - duration: 117.219271ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 20 - uncompressed: false - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:02 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 71aec292-4a58-47bd-bded-6f69f5a2b4ed - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 97.305942ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7/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:55:02 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f970cba0-4dad-4aad-9b85-c62364810b1e - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 104.30525ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1774 - uncompressed: false - 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: - - "1774" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 37439335-4365-45bc-9248-32822621f18d - status: 200 OK - code: 200 - duration: 147.504954ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1783 - 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": ["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: - - "1783" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1a717ec9-bbaa-4bf6-975f-832c06ca0042 - status: 200 OK - code: 200 - duration: 150.236503ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1774 - uncompressed: false - 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: - - "1774" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 91ae0a4e-c1a5-451a-8b79-69d34b24840a - status: 200 OK - code: 200 - duration: 145.599281ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1737 - 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": ["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: - - "1737" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 858942c8-f6b2-4e36-aa5e-d023ecbc92d0 - status: 200 OK - code: 200 - duration: 163.691173ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 - 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": "6f15a087-0697-40f6-b645-b2020057a336"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 820c2ddf-9f10-47eb-8802-3a4dbd1b8e38 - status: 404 Not Found - code: 404 - duration: 28.191217ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/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:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 28f9aede-4613-4ae2-92a6-11f83c12a8ae - status: 404 Not Found - code: 404 - duration: 29.698967ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 82fd120d-1ed2-4121-94a4-f872fba13687 - status: 200 OK - code: 200 - duration: 90.970495ms - - 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/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: 705 - 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: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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d0e81a02-8efd-4f5b-9eec-991f84511832 - status: 200 OK - code: 200 - duration: 111.269795ms - - 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/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: 17 - uncompressed: false - body: '{"user_data": []}' - headers: - Content-Length: - - "17" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1a3335bc-ddfd-471e-ba46-f724850e0cef - status: 200 OK - code: 200 - duration: 116.163035ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 17 - uncompressed: false - body: '{"user_data": []}' - headers: - Content-Length: - - "17" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d27fcefe-655c-44e2-ace7-06d2b400d51b - status: 200 OK - code: 200 - duration: 95.067166ms - - 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/5482e87c-50db-46f1-a362-030d2b4c49c7/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:55:03 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 53ff8f5f-e2ac-412b-9631-6fddd029ae51 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 96.360034ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 20 - uncompressed: false - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 27e31267-2736-4e72-ae52-787c5407dfc8 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 111.207218ms - - 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: - 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/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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 23bd61b0-ac83-4bd7-adaf-f225a2811a84 - status: 200 OK - code: 200 - duration: 45.963311ms - - 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/2bb452d6-9784-45ac-8627-ffff97dd2451 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1737 - 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": ["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: - - "1737" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6e24ea0c-034e-4043-80b0-337ee5cb0163 - status: 200 OK - code: 200 - duration: 140.470522ms - - 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/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:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aeff8d3e-0a9c-4bcc-a944-7523a0398aba - status: 404 Not Found - code: 404 - duration: 30.43368ms - - 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/5482e87c-50db-46f1-a362-030d2b4c49c7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1728 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bfc72a9c-c7f4-45f9-9392-b75c1b9ea6ca - status: 200 OK - code: 200 - duration: 170.880287ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f696818-eb10-4822-9698-0b7e2469ca58 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - 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: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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2bf02ec9-904a-453b-a40f-a4fb07f22ba8 - status: 200 OK - code: 200 - duration: 82.075451ms - - 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/volumes/6f15a087-0697-40f6-b645-b2020057a336 - 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": "6f15a087-0697-40f6-b645-b2020057a336"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ee82a411-c902-4467-88fb-1c432bbe7a71 - status: 404 Not Found - code: 404 - duration: 32.067246ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a4e5f912-58ef-4c69-8d85-97d34459df5f - status: 200 OK - code: 200 - duration: 79.531434ms - - 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/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: 17 - uncompressed: false - body: '{"user_data": []}' - headers: - Content-Length: - - "17" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d66389d1-46d6-4174-a681-54020e38df2b - status: 200 OK - code: 200 - duration: 89.039525ms - - 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/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: 20 - uncompressed: false - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dc685c3f-682d-41a6-94b9-b26ee1d1d722 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 101.679872ms - - 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/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: 17 - uncompressed: false - body: '{"user_data": []}' - headers: - Content-Length: - - "17" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - af15da88-45c0-4a5c-999f-2bce994c6965 - status: 200 OK - code: 200 - duration: 116.244217ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7/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:55:04 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 76e0b47e-958c-4149-bfb1-624ec874cd7f - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 159.080542ms - - 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/5482e87c-50db-46f1-a362-030d2b4c49c7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1774 - uncompressed: false - 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: - - "1774" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3ccadca2-cfd8-47d7-8ecc-05c7fb2131aa - status: 200 OK - code: 200 - duration: 157.86605ms - - 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/5482e87c-50db-46f1-a362-030d2b4c49c7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1728 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7b27c235-c378-442d-acd8-763614f55f01 - status: 200 OK - code: 200 - duration: 161.494355ms - - 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/2bb452d6-9784-45ac-8627-ffff97dd2451 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1737 - 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": ["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: - - "1737" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8963ed96-74eb-4a5e-9582-f46af26a0c7f - status: 200 OK - code: 200 - duration: 161.176231ms - - 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/5482e87c-50db-46f1-a362-030d2b4c49c7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1774 - uncompressed: false - 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: - - "1774" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f83e093c-54a5-46ce-a59b-0215ff24ba15 - status: 200 OK - code: 200 - duration: 170.128872ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1728 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f34b0e8c-7108-4a6a-9cd4-793ae4a3f035 - status: 200 OK - code: 200 - duration: 155.17577ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 21 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"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/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1738 - 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": "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: - - "1738" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 69f2ee1d-8022-4fc6-ad7b-8bc14af8226f - status: 200 OK - code: 200 - duration: 408.481764ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1774 - uncompressed: false - 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: - - "1774" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0a50995f-47d8-4674-a113-67844ccf6046 - status: 200 OK - code: 200 - duration: 139.690623ms - - 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/volumes/6f15a087-0697-40f6-b645-b2020057a336 - 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": "6f15a087-0697-40f6-b645-b2020057a336"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4739f2db-286b-431d-ae2f-acc426f2e15d - status: 404 Not Found - code: 404 - duration: 29.289432ms - - 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/2bb452d6-9784-45ac-8627-ffff97dd2451 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1784 - 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": "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: - - "1784" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d0202fbf-13c6-4adc-816f-2787bb2120b2 - status: 200 OK - code: 200 - duration: 159.745856ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - eb2d3035-7055-4e9f-b15c-ec05ce28ca43 - status: 200 OK - code: 200 - duration: 97.515175ms - - 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/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: 17 - uncompressed: false - body: '{"user_data": []}' - headers: - Content-Length: - - "17" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c9d48f16-1369-49c9-8166-48b4cd10c9ca - status: 200 OK - code: 200 - duration: 94.394077ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1784 - 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": "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: - - "1784" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 00c5c395-61ea-48ef-99e4-0126fdfa2a00 - status: 200 OK - code: 200 - duration: 169.915974ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/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:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b05811d9-5a15-45ad-a319-e7b5b0290959 - status: 404 Not Found - code: 404 - duration: 22.269084ms - - 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/5482e87c-50db-46f1-a362-030d2b4c49c7/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:55:05 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d4f65dca-32ff-4b44-96b2-fd8d56d296e0 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 142.273041ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f696818-eb10-4822-9698-0b7e2469ca58 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - 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: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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 709ae66e-ba3e-48a6-93f9-27ee2ec5224e - status: 200 OK - code: 200 - duration: 77.838719ms - - 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/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: 17 - uncompressed: false - body: '{"user_data": []}' - headers: - Content-Length: - - "17" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d60c5bf2-3e64-41cf-85b5-7fcb192cca8c - status: 200 OK - code: 200 - duration: 97.300362ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 20 - uncompressed: false - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 01789952-79d2-4cbe-a93b-484323be5a22 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 102.98855ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1774 - uncompressed: false - 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: - - "1774" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9aaeaa27-550e-4593-9ee2-e400096ec810 - status: 200 OK - code: 200 - duration: 150.532277ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1738 - 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": "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: - - "1738" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 572e02ef-44d6-4b61-beb1-f3d6b78c7e9d - status: 200 OK - code: 200 - duration: 132.308718ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f4d1255c-3b07-40c3-8522-b9c960585eb5 - status: 200 OK - code: 200 - duration: 48.00478ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a687955e-9979-4b3b-9226-b00ada65950f - status: 200 OK - code: 200 - duration: 45.588162ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 84af056b-2d43-45f7-bd7b-ed1ab1a91d76 - status: 200 OK - code: 200 - duration: 54.239979ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1738 - 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": "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: - - "1738" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2d7618c2-6aeb-4dd0-830f-b77c9e9b8591 - status: 200 OK - code: 200 - duration: 144.885247ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/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:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f68df96e-5149-4f7c-83a8-81c6d2f26f8a - status: 404 Not Found - code: 404 - duration: 30.126978ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1728 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6e561d35-1910-4581-8a85-0b2189cf9fbe - status: 200 OK - code: 200 - duration: 126.997627ms - - 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/volumes/6f15a087-0697-40f6-b645-b2020057a336 - 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": "6f15a087-0697-40f6-b645-b2020057a336"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 27776bd5-3f65-434f-bd72-ccaefab7c168 - status: 404 Not Found - code: 404 - duration: 26.651849ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f696818-eb10-4822-9698-0b7e2469ca58 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - 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: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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 600b0f49-0f67-47b5-93d4-e149a8e9d9de - status: 200 OK - code: 200 - duration: 85.561201ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d31226f3-0306-44dd-8744-50eb899dbdfa - status: 200 OK - code: 200 - duration: 92.143339ms - - 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/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: 17 - uncompressed: false - body: '{"user_data": []}' - headers: - Content-Length: - - "17" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 34cd4625-6699-4de2-9fd0-1ba49e8fd672 - status: 200 OK - code: 200 - duration: 110.415378ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 17 - uncompressed: false - body: '{"user_data": []}' - headers: - Content-Length: - - "17" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d744d54c-7055-4218-b3d0-ef8a2cc10135 - status: 200 OK - code: 200 - duration: 104.159329ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/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: 20 - uncompressed: false - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e9e7a1d6-22d0-4687-8fab-2535aeccc3c8 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 107.390663ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7/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:55:07 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f9baa9ed-652d-49b5-bfe3-6e930e184e8c - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 101.634107ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8ef08d66-687e-4599-a036-309de519cd31 - status: 200 OK - code: 200 - duration: 59.033894ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1784 - 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": "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: - - "1784" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 18796773-6ab7-4873-b2e9-51f01b810d00 - status: 200 OK - code: 200 - duration: 145.301586ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/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:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 64a58f6b-7f11-4848-acab-9a8ae71fa03f - status: 404 Not Found - code: 404 - duration: 33.287608ms - - 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/5482e87c-50db-46f1-a362-030d2b4c49c7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1728 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0cdfe1c9-9114-4967-9e0b-282226dc9c05 - status: 200 OK - code: 200 - duration: 127.41114ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 - 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": "6f15a087-0697-40f6-b645-b2020057a336"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2f4ce748-0ce3-481b-96e2-96fdefca9311 - status: 404 Not Found - code: 404 - duration: 31.954886ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f696818-eb10-4822-9698-0b7e2469ca58 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - 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: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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 24c96400-f0b5-405f-a8d4-a95b6569671e - status: 200 OK - code: 200 - duration: 119.896508ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bb78c204-f15c-41e1-a4ac-867576255a86 - status: 200 OK - code: 200 - duration: 79.634507ms - - 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/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: 17 - uncompressed: false - body: '{"user_data": []}' - headers: - Content-Length: - - "17" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f057b2c6-38cf-4d82-a244-5b6d19b21a24 - status: 200 OK - code: 200 - duration: 85.749093ms - - 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/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: 17 - uncompressed: false - body: '{"user_data": []}' - headers: - Content-Length: - - "17" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d4812628-a01b-4256-a084-5f1124df18e2 - status: 200 OK - code: 200 - duration: 111.886089ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 20 - uncompressed: false - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b0ad8a09-140f-4da1-a9b5-8b5c83795247 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 108.530133ms - - 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/5482e87c-50db-46f1-a362-030d2b4c49c7/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:55:08 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b96be744-1b01-444e-83e3-0f9791f7f561 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 111.262352ms - - 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/5482e87c-50db-46f1-a362-030d2b4c49c7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1774 - uncompressed: false - 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: - - "1774" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1ae6a28a-0871-4bdd-b9ed-c0c38fe8d7ff - status: 200 OK - code: 200 - duration: 167.895838ms - - 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/marketplace/v2/local-images/6d3c053e-c728-4294-b23a-560b62a4d592 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 971 - uncompressed: false - 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: - - "971" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4391e42b-3008-4da1-9950-c57696112d3c - status: 200 OK - code: 200 - duration: 43.276258ms - - 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/5482e87c-50db-46f1-a362-030d2b4c49c7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1728 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 44942e98-b3dd-48a1-afe0-0d31414d9431 - status: 200 OK - code: 200 - duration: 139.616124ms - - 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/5482e87c-50db-46f1-a362-030d2b4c49c7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1774 - uncompressed: false - 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: - - "1774" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 568b8616-485c-40c8-bf39-b64119e4442e - status: 200 OK - code: 200 - duration: 169.388449ms - - id: 92 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d19e7fa0-53e2-4b7c-bf49-3bc0bbb16dff - status: 200 OK - code: 200 - duration: 85.331281ms - - id: 93 - 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/5482e87c-50db-46f1-a362-030d2b4c49c7/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": "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-Length: - - "357" - Content-Type: - - application/json - Date: - - 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;edge03) - X-Request-Id: - - 4113a60a-afc2-47f9-b0ea-c308d6cd848c - status: 202 Accepted - code: 202 - duration: 268.060667ms - - 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/5482e87c-50db-46f1-a362-030d2b4c49c7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1796 - uncompressed: false - 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: - - "1796" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e4b013be-28d6-4fd7-8418-cd0f201db162 - status: 200 OK - code: 200 - duration: 152.129515ms - - 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/5482e87c-50db-46f1-a362-030d2b4c49c7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1929 - uncompressed: false - 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: - - "1929" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e3752a3e-a434-4821-946d-a95647471ea8 - status: 200 OK - code: 200 - duration: 138.924253ms - - id: 96 - 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/5482e87c-50db-46f1-a362-030d2b4c49c7/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": "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: - - "353" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:14 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/90032d6e-46f7-4d07-ac49-3fc7ec804c4f - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6506b5ff-6881-4c4a-85af-1a3df2167f7b - status: 202 Accepted - code: 202 - duration: 240.784394ms - - 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/5482e87c-50db-46f1-a362-030d2b4c49c7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1892 - uncompressed: false - 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: - - "1892" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5a49d46d-640b-4504-9310-2c80198e6a91 - status: 200 OK - code: 200 - duration: 131.859631ms - - 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/5482e87c-50db-46f1-a362-030d2b4c49c7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1892 - uncompressed: false - 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: - - "1892" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ebbc11a4-a5e2-462f-8a37-873a1b3a2b54 - status: 200 OK - code: 200 - duration: 129.475505ms - - 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/5482e87c-50db-46f1-a362-030d2b4c49c7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1892 - uncompressed: false - 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: - - "1892" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d479f40a-c98f-4574-b87e-ef7ce526ba01 - status: 200 OK - code: 200 - duration: 159.720558ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5482e87c-50db-46f1-a362-030d2b4c49c7 - 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": "5482e87c-50db-46f1-a362-030d2b4c49c7"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aa534ec2-5b5f-49d2-a70e-62c2b780715c - status: 404 Not Found - code: 404 - duration: 42.38324ms - - 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/volumes/6f15a087-0697-40f6-b645-b2020057a336 - 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": "6f15a087-0697-40f6-b645-b2020057a336"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 55009d2e-965b-466b-9dff-3a2fa9819ba2 - status: 404 Not Found - code: 404 - duration: 34.756417ms - - id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 498 - uncompressed: false - 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: - - "498" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c79304b5-dd97-47e5-a683-08df15fc2e67 - status: 200 OK - code: 200 - duration: 86.688153ms - - id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f15a087-0697-40f6-b645-b2020057a336 - 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:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 75c02aaa-a1fb-4f4c-a82e-9e236e450961 - status: 204 No Content - code: 204 - duration: 135.617775ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 56b16a78-535f-4132-b3a6-96f96c2665e2 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 44.871212ms - - 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: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0d96129c-d540-4491-b789-7b35dd24ff66 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 49.412255ms - - id: 106 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 240 - 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","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 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1770 - 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": "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: - - "1770" - Content-Type: - - application/json - Date: - - 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;edge03) - X-Request-Id: - - b6ad1e0f-668d-4266-bd0e-8afb8d3826af - status: 201 Created - code: 201 - duration: 1.074311159s - - 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/1a862eb0-b63b-4128-bd82-83151709b765 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1770 - 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": "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: - - "1770" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 82a5c50e-97f9-4abd-bf42-3a477403f650 - status: 200 OK - code: 200 - duration: 138.325378ms - - 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/1a862eb0-b63b-4128-bd82-83151709b765 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1770 - 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": "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: - - "1770" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e00c200a-9c52-4ebf-b692-450c859554a7 - status: 200 OK - code: 200 - duration: 129.081862ms - - 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/1a862eb0-b63b-4128-bd82-83151709b765 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1770 - 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": "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: - - "1770" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9025a78c-2404-46b4-ad03-f662ed28107e - status: 200 OK - code: 200 - duration: 149.804746ms - - id: 110 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/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:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e348bd94-97a6-4f49-b05f-41a4ea1525b8 - status: 404 Not Found - code: 404 - duration: 30.29823ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/02442d1b-ca87-4923-b82e-2184566848c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - 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: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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fee4179d-3ac1-4ea4-b2f8-9b7fce8673b6 - status: 200 OK - code: 200 - duration: 98.489142ms - - id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765/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:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1c224bb9-7e32-445f-a29c-9ca417fbbe72 - status: 200 OK - code: 200 - duration: 100.563091ms - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765/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:55:32 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 84de0168-1e52-4981-972d-3372cda87134 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 104.485045ms - - 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/1a862eb0-b63b-4128-bd82-83151709b765 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1724 - 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": "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: - - "1724" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b2293d47-50a6-4356-ac56-b97aa273f385 - status: 200 OK - code: 200 - duration: 132.616854ms - - id: 115 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1738 - 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": "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: - - "1738" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5943c0e0-d441-4a7b-917c-9432cf629142 - status: 200 OK - code: 200 - duration: 158.030238ms - - id: 116 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b19aefad-bf10-4c4d-bc65-26affd34dba6 - status: 200 OK - code: 200 - duration: 59.65542ms - - id: 117 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e3a7f878-36cb-45b6-9aca-2d5ca92bd024 - status: 200 OK - code: 200 - duration: 94.572738ms - - id: 118 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b954db5b-f847-4e86-99c7-8116603a942e - status: 200 OK - code: 200 - duration: 43.912219ms - - id: 119 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1784 - 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": "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: - - "1784" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 311c255a-002b-4ba8-a044-7f39962c9efb - status: 200 OK - code: 200 - duration: 134.997225ms - - id: 120 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/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:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 96e89259-1a25-41e2-a29d-7b4d11f1eb66 - status: 404 Not Found - code: 404 - duration: 26.742911ms - - id: 121 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1770 - 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": "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: - - "1770" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5178ca6c-9c63-4e4a-bd54-93eb36cc90f1 - status: 200 OK - code: 200 - duration: 147.174548ms - - id: 122 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/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:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 06f53082-c728-4e15-8256-1b22fe3980d0 - status: 404 Not Found - code: 404 - duration: 30.133311ms - - id: 123 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f696818-eb10-4822-9698-0b7e2469ca58 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - 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: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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cccea50e-95cd-41c7-a3ac-06cbbb870934 - status: 200 OK - code: 200 - duration: 96.887637ms - - id: 124 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/02442d1b-ca87-4923-b82e-2184566848c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - 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: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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 65438e60-a07e-44c0-b747-589e18cd4006 - status: 200 OK - code: 200 - duration: 86.135511ms - - id: 125 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 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: - - 3f3876a6-2902-4aed-a0d3-dc3d26bebd3c - status: 200 OK - code: 200 - duration: 97.794834ms - - id: 126 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765/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: - - 6150955e-e431-4398-881c-8388bccb5969 - status: 200 OK - code: 200 - duration: 112.055612ms - - id: 127 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 20 - uncompressed: false - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c302426d-2802-4c2b-9ab1-d6cd2b31f933 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 101.025395ms - - id: 128 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765/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:55:33 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bbbd15d6-6268-420d-818c-fc64312b5276 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 94.838365ms - - id: 129 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1784 - 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": "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: - - "1784" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - de047198-987a-4992-ab1e-180e7d000cb6 - status: 200 OK - code: 200 - duration: 148.64088ms - - id: 130 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1770 - 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": "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: - - "1770" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7a97f396-a53f-4d90-b9cc-ffd42b00bebe - status: 200 OK - code: 200 - duration: 176.326195ms - - id: 131 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1738 - 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": "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: - - "1738" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0b082a79-8b79-457c-9260-a5b998f1a0ee - status: 200 OK - code: 200 - duration: 148.28764ms - - id: 132 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1770 - 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": "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: - - "1770" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0b597d2a-3975-4614-bc32-a50094979b49 - status: 200 OK - code: 200 - duration: 124.295533ms - - id: 133 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 701 - 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: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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0a201c63-92d8-48b9-a410-5b77ec133fbe - status: 200 OK - code: 200 - duration: 91.765369ms - - id: 134 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 705 - 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: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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b116b794-eb1c-41c4-93d3-fd9ab56e6352 - status: 200 OK - code: 200 - duration: 95.745492ms - - id: 135 - 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/1a862eb0-b63b-4128-bd82-83151709b765/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": "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: - - "357" - Content-Type: - - application/json - Date: - - 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;edge03) - X-Request-Id: - - 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: 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/2bb452d6-9784-45ac-8627-ffff97dd2451/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": "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: - - "357" - Content-Type: - - application/json - Date: - - 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;edge03) - X-Request-Id: - - 67a46652-63c9-41ca-b144-437345787697 - status: 202 Accepted - code: 202 - duration: 296.305765ms - - id: 137 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1792 - 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": "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: - - "1792" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aa5e8767-b9a2-4388-94a7-6319ca8209c1 - status: 200 OK - code: 200 - duration: 165.695214ms - - id: 138 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1806 - 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": "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-Length: - - "1806" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 32a9e855-abb3-48fa-8926-ff99485def3e - status: 200 OK - code: 200 - duration: 166.513994ms - - id: 139 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a862eb0-b63b-4128-bd82-83151709b765 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1880 - 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": "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: - - "1880" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 706bcb51-b02a-4490-94bb-301134130840 - status: 200 OK - code: 200 - duration: 146.331233ms - - id: 140 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1893 - 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": "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: - - "1893" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4d333a8a-2966-4c56-93ce-7e3f60152732 - status: 200 OK - code: 200 - duration: 147.866414ms - - id: 141 - 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/2bb452d6-9784-45ac-8627-ffff97dd2451/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": "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: - - "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/817039b7-4f6a-4e55-a7e9-01ba0e8ff658 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 754da3ac-217f-4feb-8b41-4459feb0295f - status: 202 Accepted - code: 202 - duration: 282.999987ms - - id: 142 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2bb452d6-9784-45ac-8627-ffff97dd2451 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1856 - 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}}' - headers: - Content-Length: - - "1856" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 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 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+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:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a89157ea-5a55-43c9-af5a-a0e79f34c48a - status: 200 OK - code: 200 - duration: 127.395643ms - - id: 145 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a9604f3d-d01f-4043-b52e-cdb093d5d48d - status: 200 OK - code: 200 - duration: 141.831129ms - - id: 146 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 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 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+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: - - 1690c304-8e11-426e-8b52-3726ac4e780c - status: 404 Not Found - code: 404 - duration: 43.0945ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d4cb50cb-5029-4cd1-a25d-be683d75d152 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 44.277648ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7d1095f9-8b48-44c8-8f76-f94ffad86870 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 50.205869ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 716e0dfa-0bf0-4008-aa9e-b9a3e11b7c8e + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 49.892782ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 440c975c-5d98-4469-b361-37b16106fc70 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 63.962985ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/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 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f82d2366-a92a-457d-aade-c7e9783129be + status: 200 OK + code: 200 + duration: 65.778551ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/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 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2bf78e7c-ec32-4ec6-987a-0d5b1545b49a + status: 200 OK + code: 200 + duration: 42.493572ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 240 + host: api.scaleway.com + 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\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1774 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:14.706399+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:15 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 242321f2-6008-41cc-bb43-4780bd0cf37e + status: 201 Created + code: 201 + duration: 1.277040455s +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1774 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:14.706399+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f5e70ccf-da08-4921-8d2c-59ec481ffe6c + status: 200 OK + code: 200 + duration: 148.066372ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 246 + host: api.scaleway.com + 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\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1737 + body: "{\"server\": {\"id\": \"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"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\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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:6d:09\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.740651+00:00\", \"modification_date\": \"2025-10-30T15:43:14.740651+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1737" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:15 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f9e80fbe-ba81-49ba-a9dd-00040fb9f50b + status: 201 Created + code: 201 + duration: 1.552747632s +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1728 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:14.706399+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b9e2e31c-1fe9-4bcc-ae03-1d4636da37eb + status: 200 OK + code: 200 + duration: 243.553131ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1737 + body: "{\"server\": {\"id\": \"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"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\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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:6d:09\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.740651+00:00\", \"modification_date\": \"2025-10-30T15:43:14.740651+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1737" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b5286bc7-449a-4f9f-8509-f14d3cad4db6 + status: 200 OK + code: 200 + duration: 167.014275ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1774 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:14.706399+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 86a79e52-1cd7-4615-8193-fa78ef271379 + status: 200 OK + code: 200 + duration: 195.607302ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1783 + body: "{\"server\": {\"id\": \"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"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\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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:6d:09\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.740651+00:00\", \"modification_date\": \"2025-10-30T15:43:14.740651+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1783" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2390b1d2-72e5-458f-a34e-1e958a2de385 + status: 200 OK + code: 200 + duration: 147.029777ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a23f9da3-cb28-4550-9345-6b4b1dcf3d67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a3caa66c-c6a2-4114-b38b-ef550d1da703 + status: 404 Not Found + code: 404 + duration: 35.86621ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a23f9da3-cb28-4550-9345-6b4b1dcf3d67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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-30T15:43:14.840520Z\", \"updated_at\":\"2025-10-30T15:43:14.840520Z\", \"references\":[{\"id\":\"7fb00400-1a43-4888-b432-019800a0f798\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"created_at\":\"2025-10-30T15:43:14.840520Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d10af7d8-ac06-4e2f-8fb2-7ee7d2615755 + status: 200 OK + code: 200 + duration: 146.912457ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1737 + body: "{\"server\": {\"id\": \"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"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\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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:6d:09\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.740651+00:00\", \"modification_date\": \"2025-10-30T15:43:14.740651+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1737" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b76210f3-f7a0-4423-a930-b19ce599a67b + status: 200 OK + code: 200 + duration: 189.037167ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ff20820-d9a8-4e1b-95db-701c753c8380 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 28cf8fa2-d1d2-4844-949a-a2902e8d7b7d + status: 404 Not Found + code: 404 + duration: 35.141741ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 62f889c6-3bad-4d35-8647-5d6796f05b10 + status: 200 OK + code: 200 + duration: 86.468794ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff20820-d9a8-4e1b-95db-701c753c8380 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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-30T15:43:14.880756Z\", \"updated_at\":\"2025-10-30T15:43:14.880756Z\", \"references\":[{\"id\":\"045cb36d-3139-4b3a-8763-c8bb84da82ab\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"created_at\":\"2025-10-30T15:43:14.880756Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bdb5fcd3-abe9-4b2a-991a-78981756655a + status: 200 OK + code: 200 + duration: 93.745523ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e480e722-d85b-454a-9b91-ce7be5960d8d + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 122.689338ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4eb29da8-3b4d-4a9f-8499-ee856e01f1ee + status: 200 OK + code: 200 + duration: 101.464924ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f20cb1aa-13fb-4f6b-a386-1589609659a5 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 132.443144ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1774 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:14.706399+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7a537b60-20ae-4999-8c65-ce4992bfcbfd + status: 200 OK + code: 200 + duration: 372.840728ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1737 + body: "{\"server\": {\"id\": \"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"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\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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:6d:09\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.740651+00:00\", \"modification_date\": \"2025-10-30T15:43:14.740651+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1737" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 06856936-6027-48ab-8dce-4abc2fe12c5c + status: 200 OK + code: 200 + duration: 172.415278ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1783 + body: "{\"server\": {\"id\": \"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"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\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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:6d:09\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.740651+00:00\", \"modification_date\": \"2025-10-30T15:43:14.740651+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1783" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fd28baf3-3b4a-49d9-8d16-be6afb23507a + status: 200 OK + code: 200 + duration: 126.824054ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1728 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:14.706399+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1cfcbdec-6683-4919-b95f-777bc3b59da2 + status: 200 OK + code: 200 + duration: 134.576747ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ff20820-d9a8-4e1b-95db-701c753c8380 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f8115f79-d123-48ee-88ce-28feee98736a + status: 404 Not Found + code: 404 + duration: 27.176068ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a23f9da3-cb28-4550-9345-6b4b1dcf3d67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f7f9b870-cdaa-4070-bb10-52a2a26281b0 + status: 404 Not Found + code: 404 + duration: 31.387158ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff20820-d9a8-4e1b-95db-701c753c8380 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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-30T15:43:14.880756Z\", \"updated_at\":\"2025-10-30T15:43:14.880756Z\", \"references\":[{\"id\":\"045cb36d-3139-4b3a-8763-c8bb84da82ab\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"created_at\":\"2025-10-30T15:43:14.880756Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 75bf110e-6a79-45b7-ac6b-ab5fa14e9246 + status: 200 OK + code: 200 + duration: 85.087012ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a23f9da3-cb28-4550-9345-6b4b1dcf3d67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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-30T15:43:14.840520Z\", \"updated_at\":\"2025-10-30T15:43:14.840520Z\", \"references\":[{\"id\":\"7fb00400-1a43-4888-b432-019800a0f798\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"created_at\":\"2025-10-30T15:43:14.840520Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3494aac2-4c20-4c3c-8617-5d759362df68 + status: 200 OK + code: 200 + duration: 96.681311ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ab8250e0-79cc-4982-8b15-03266476275d + status: 200 OK + code: 200 + duration: 103.298814ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b0f00be2-65db-4063-bec6-7469d73dd581 + status: 200 OK + code: 200 + duration: 96.424289ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6ee0f19d-fba8-48c9-9aeb-968f66b40b98 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 114.563706ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - afe8daf3-00d2-4fc7-aa37-55259d99c25b + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 136.151101ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/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 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5b20a640-d41b-42e6-a03c-1037a08da573 + status: 200 OK + code: 200 + duration: 32.09162ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1783 + body: "{\"server\": {\"id\": \"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"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\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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:6d:09\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.740651+00:00\", \"modification_date\": \"2025-10-30T15:43:14.740651+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1783" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9917749e-e0e5-4ce4-8bba-3e5d03f28452 + status: 200 OK + code: 200 + duration: 145.294753ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1728 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:14.706399+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a9b4388f-8781-47dd-a6af-b5c06f64ac77 + status: 200 OK + code: 200 + duration: 134.684199ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ff20820-d9a8-4e1b-95db-701c753c8380 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9a50c2f9-a9fe-4407-bb7c-eb22db74d9e1 + status: 404 Not Found + code: 404 + duration: 24.951255ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a23f9da3-cb28-4550-9345-6b4b1dcf3d67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ae95842c-ae39-4c5d-8832-2281aa45f89c + status: 404 Not Found + code: 404 + duration: 22.337091ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a23f9da3-cb28-4550-9345-6b4b1dcf3d67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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-30T15:43:14.840520Z\", \"updated_at\":\"2025-10-30T15:43:14.840520Z\", \"references\":[{\"id\":\"7fb00400-1a43-4888-b432-019800a0f798\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"created_at\":\"2025-10-30T15:43:14.840520Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - de1b218a-d4bc-4beb-8626-90aa9da14db0 + status: 200 OK + code: 200 + duration: 99.338606ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff20820-d9a8-4e1b-95db-701c753c8380 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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-30T15:43:14.880756Z\", \"updated_at\":\"2025-10-30T15:43:14.880756Z\", \"references\":[{\"id\":\"045cb36d-3139-4b3a-8763-c8bb84da82ab\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"created_at\":\"2025-10-30T15:43:14.880756Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 07220882-e802-4ac8-9048-1f813f7c6fd6 + status: 200 OK + code: 200 + duration: 130.134244ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3c8d1ad7-1632-4b11-8a1f-56bcabee14d0 + status: 200 OK + code: 200 + duration: 97.676819ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4845a475-802c-4a84-bd8f-c695ef713ff0 + status: 200 OK + code: 200 + duration: 129.048106ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - db9be34e-fc0f-4559-bf0e-dd0b84943a88 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 134.563453ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c3bb254a-c4c9-46cf-ad10-a267d4d7bf4e + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 103.788513ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1774 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:14.706399+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3ed3a86f-b17b-4e58-be7e-05f9b4f6906d + status: 200 OK + code: 200 + duration: 137.548572ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1774 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:14.706399+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dde4a02c-2cf5-472a-95d2-1de03eb796cf + status: 200 OK + code: 200 + duration: 130.119978ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1737 + body: "{\"server\": {\"id\": \"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"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\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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:6d:09\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.740651+00:00\", \"modification_date\": \"2025-10-30T15:43:14.740651+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1737" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fc70e21b-8a92-4d68-af67-09e24468a26c + status: 200 OK + code: 200 + duration: 141.387694ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1774 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:14.706399+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a06d1cc2-9433-4417-bd8c-6f23ebe2085e + status: 200 OK + code: 200 + duration: 150.318467ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 21 + host: api.scaleway.com + body: "{\"tags\":[\"conntrol\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1738 + body: "{\"server\": {\"id\": \"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"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\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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:6d:09\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.740651+00:00\", \"modification_date\": \"2025-10-30T15:43:18.997048+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fd6c4da2-0cbf-4238-8df9-bbcf937bf839 + status: 200 OK + code: 200 + duration: 196.671369ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1728 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:14.706399+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a1b88bc7-ef6c-4bce-8f6f-25c1326b013b + status: 200 OK + code: 200 + duration: 176.704614ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1784 + body: "{\"server\": {\"id\": \"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"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\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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:6d:09\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.740651+00:00\", \"modification_date\": \"2025-10-30T15:43:18.997048+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1784" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2970ad31-2f3b-432c-95e4-e37bbfcf31a5 + status: 200 OK + code: 200 + duration: 179.119885ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1774 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:14.706399+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eb26175b-9de2-490d-9cde-c9c4a14179eb + status: 200 OK + code: 200 + duration: 134.579764ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a23f9da3-cb28-4550-9345-6b4b1dcf3d67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 752d88bb-323f-4762-97db-a9621a167fc1 + status: 404 Not Found + code: 404 + duration: 27.052246ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1738 + body: "{\"server\": {\"id\": \"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"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\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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:6d:09\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.740651+00:00\", \"modification_date\": \"2025-10-30T15:43:18.997048+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8fcd4152-37cb-4fae-8500-96bc9ee37975 + status: 200 OK + code: 200 + duration: 158.936533ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ff20820-d9a8-4e1b-95db-701c753c8380 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c4b4c9ca-bb33-4b41-8885-299340dbd107 + status: 404 Not Found + code: 404 + duration: 28.7013ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a23f9da3-cb28-4550-9345-6b4b1dcf3d67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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-30T15:43:14.840520Z\", \"updated_at\":\"2025-10-30T15:43:14.840520Z\", \"references\":[{\"id\":\"7fb00400-1a43-4888-b432-019800a0f798\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"created_at\":\"2025-10-30T15:43:14.840520Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eebf3619-faca-436c-abc7-5070f8a33865 + status: 200 OK + code: 200 + duration: 89.353935ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff20820-d9a8-4e1b-95db-701c753c8380 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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-30T15:43:14.880756Z\", \"updated_at\":\"2025-10-30T15:43:14.880756Z\", \"references\":[{\"id\":\"045cb36d-3139-4b3a-8763-c8bb84da82ab\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"created_at\":\"2025-10-30T15:43:14.880756Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 21fc15a3-b150-4f60-ba3b-6a98fa5f297d + status: 200 OK + code: 200 + duration: 85.981239ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 49e52497-f09d-4e8e-adf5-9c3c9e7aa106 + status: 200 OK + code: 200 + duration: 106.506371ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7a55830c-bd45-48e9-8cb1-7228a23c4571 + status: 200 OK + code: 200 + duration: 124.314006ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 943a2367-0a1f-4e20-b2c0-b83a31c27f6c + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 117.706923ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d6444d3e-f388-46fe-a0f0-bc6cc66c343e + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 115.108107ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1774 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:14.706399+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 47deb838-0781-48c0-94d5-483e83b4fdd2 + status: 200 OK + code: 200 + duration: 167.035186ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1784 + body: "{\"server\": {\"id\": \"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"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\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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:6d:09\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.740651+00:00\", \"modification_date\": \"2025-10-30T15:43:18.997048+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1784" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 13dda197-dd84-40fb-b520-e4d0214cecd9 + status: 200 OK + code: 200 + duration: 131.90683ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/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 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fe561879-ccae-426f-87e5-adb07694622c + status: 200 OK + code: 200 + duration: 46.045044ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/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 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4141806a-92ba-4f84-ad08-acf3d9b7f063 + status: 200 OK + code: 200 + duration: 44.779761ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/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 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 68a013fa-06e1-4c98-a049-d523a743502d + status: 200 OK + code: 200 + duration: 39.734456ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1784 + body: "{\"server\": {\"id\": \"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"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\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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:6d:09\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.740651+00:00\", \"modification_date\": \"2025-10-30T15:43:18.997048+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1784" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 29bd58c2-bfe7-4954-9dc4-e3f14d43203a + status: 200 OK + code: 200 + duration: 147.099089ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ff20820-d9a8-4e1b-95db-701c753c8380 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fe107443-757d-4f83-b3b4-72ecabad3cd0 + status: 404 Not Found + code: 404 + duration: 32.306543ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1728 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:14.706399+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7461aa35-695c-4c19-8b0e-22951f4046b8 + status: 200 OK + code: 200 + duration: 164.191482ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a23f9da3-cb28-4550-9345-6b4b1dcf3d67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7014bef8-257f-4079-a682-8e03cd4e2599 + status: 404 Not Found + code: 404 + duration: 23.82911ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff20820-d9a8-4e1b-95db-701c753c8380 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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-30T15:43:14.880756Z\", \"updated_at\":\"2025-10-30T15:43:14.880756Z\", \"references\":[{\"id\":\"045cb36d-3139-4b3a-8763-c8bb84da82ab\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"created_at\":\"2025-10-30T15:43:14.880756Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2d09886c-57d7-40ce-8435-7b849a65a20e + status: 200 OK + code: 200 + duration: 98.48283ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a23f9da3-cb28-4550-9345-6b4b1dcf3d67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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-30T15:43:14.840520Z\", \"updated_at\":\"2025-10-30T15:43:14.840520Z\", \"references\":[{\"id\":\"7fb00400-1a43-4888-b432-019800a0f798\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"created_at\":\"2025-10-30T15:43:14.840520Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 35767bd0-7d6c-40f6-a5c3-6b2ad13b7a09 + status: 200 OK + code: 200 + duration: 79.531921ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 473ebfb8-67a8-4da9-891f-38d1327027f2 + status: 200 OK + code: 200 + duration: 90.215102ms +- id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 411e9d4d-1f6d-4073-96f7-af3629643eab + status: 200 OK + code: 200 + duration: 106.691159ms +- id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9252b2bf-1e8c-40af-b314-f0e21c83d07e + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 94.511131ms +- id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - baf397ce-8724-471d-ada6-6a63093af562 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 93.0077ms +- id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 33e65d51-6aeb-4938-a490-c5df490a095a + status: 200 OK + code: 200 + duration: 43.913977ms +- id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1738 + body: "{\"server\": {\"id\": \"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"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\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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:6d:09\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.740651+00:00\", \"modification_date\": \"2025-10-30T15:43:18.997048+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d8c9b851-f485-4a70-aae7-0a4f431f6f52 + status: 200 OK + code: 200 + duration: 121.625142ms +- id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ff20820-d9a8-4e1b-95db-701c753c8380 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0801c2a6-ad60-4b9e-b6d0-5a67c8015738 + status: 404 Not Found + code: 404 + duration: 26.891004ms +- id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1774 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:14.706399+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e470540f-0e83-4792-a9f7-b7ad185f452f + status: 200 OK + code: 200 + duration: 147.050287ms +- id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a23f9da3-cb28-4550-9345-6b4b1dcf3d67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 931478d3-7e9d-4461-bcef-56da41197a34 + status: 404 Not Found + code: 404 + duration: 27.670686ms +- id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff20820-d9a8-4e1b-95db-701c753c8380 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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-30T15:43:14.880756Z\", \"updated_at\":\"2025-10-30T15:43:14.880756Z\", \"references\":[{\"id\":\"045cb36d-3139-4b3a-8763-c8bb84da82ab\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"created_at\":\"2025-10-30T15:43:14.880756Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - efe6127f-c975-4ef1-bfcc-6bea1a2b6f08 + status: 200 OK + code: 200 + duration: 94.423536ms +- id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a23f9da3-cb28-4550-9345-6b4b1dcf3d67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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-30T15:43:14.840520Z\", \"updated_at\":\"2025-10-30T15:43:14.840520Z\", \"references\":[{\"id\":\"7fb00400-1a43-4888-b432-019800a0f798\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"created_at\":\"2025-10-30T15:43:14.840520Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f36a3034-322b-4fe0-b2af-33245b7acb6a + status: 200 OK + code: 200 + duration: 86.968953ms +- id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 674e6093-dae7-4241-8335-2a7ef53c54aa + status: 200 OK + code: 200 + duration: 104.611858ms +- id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 11dda9f0-512b-4955-98e4-1040430f112c + status: 200 OK + code: 200 + duration: 88.162601ms +- id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 54a35f7a-8c1c-4431-98ec-331a0815034b + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 97.993954ms +- id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 31efb93f-f650-4c81-a4d1-1cf3265309df + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 85.259406ms +- id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1728 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:14.706399+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b0b03cef-1764-413b-859a-66e681408c5f + status: 200 OK + code: 200 + duration: 142.100391ms +- id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 971 + 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: + - "971" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - df3d3c09-21b3-471c-9a54-2b843a1c3026 + status: 200 OK + code: 200 + duration: 57.888792ms +- id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1728 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:14.706399+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 25d1e85a-530d-4717-828a-477045dd1a8d + status: 200 OK + code: 200 + duration: 140.422475ms +- id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1728 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:14.706399+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 21c185c9-8bee-46b9-979f-1b09b8e0c7fd + status: 200 OK + code: 200 + duration: 161.452475ms +- id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a23f9da3-cb28-4550-9345-6b4b1dcf3d67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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-30T15:43:14.840520Z\", \"updated_at\":\"2025-10-30T15:43:14.840520Z\", \"references\":[{\"id\":\"7fb00400-1a43-4888-b432-019800a0f798\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"created_at\":\"2025-10-30T15:43:14.840520Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9c6b7825-a899-4b4f-ba9d-d8f719a6ea3d + status: 200 OK + code: 200 + duration: 118.860827ms +- id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"75c888df-684d-45fc-9d1b-866adfbbb286\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897/action\", \"href_result\": \"/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"started_at\": \"2025-10-30T15:43:22.588099+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/75c888df-684d-45fc-9d1b-866adfbbb286 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3646a319-1cb7-4751-b641-4668d3bd90b8 + status: 202 Accepted + code: 202 + duration: 275.980294ms +- id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1796 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:22.372414+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aec8fa49-eeb2-4aa3-9685-e8eb8a19d3ac + status: 200 OK + code: 200 + duration: 144.419422ms +- id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1884 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:25.246072+00:00\", \"bootscript\": 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: + - "1884" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9ab83d3a-bba6-4e10-8195-666b5fd1f38f + status: 200 OK + code: 200 + duration: 145.940817ms +- id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"f6925b84-7625-47d7-a7b4-9f79dd9c5735\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897/action\", \"href_result\": \"/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"started_at\": \"2025-10-30T15:43:28.175899+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f6925b84-7625-47d7-a7b4-9f79dd9c5735 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2b5cd504-fa99-47a1-ac4e-30d18f4dbbcb + status: 202 Accepted + code: 202 + duration: 292.112117ms +- id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1893 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:27.939447+00:00\", \"bootscript\": 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: + - "1893" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 359fedd0-c41e-44ce-874b-23c95c8997e6 + status: 200 OK + code: 200 + duration: 145.233942ms +- id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1847 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:27.939447+00:00\", \"bootscript\": 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: + - "1847" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 54c916cc-0283-4637-8e12-4966a32da219 + status: 200 OK + code: 200 + duration: 133.836893ms +- id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1847 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:27.939447+00:00\", \"bootscript\": 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: + - "1847" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f1849fbb-2472-4509-8e0a-b702160aa450 + status: 200 OK + code: 200 + duration: 141.873301ms +- id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1893 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:27.939447+00:00\", \"bootscript\": 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: + - "1893" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 91e795dd-615c-4b03-8c71-f0bc964acc13 + status: 200 OK + code: 200 + duration: 135.968284ms +- id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1893 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:27.939447+00:00\", \"bootscript\": 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: + - "1893" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 07ad62f8-aa1b-4a3c-bc49-fad68c6220de + status: 200 OK + code: 200 + duration: 158.582067ms +- id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1847 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:27.939447+00:00\", \"bootscript\": 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: + - "1847" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f24bdaa6-80e2-45e2-acbc-9a7f908c856f + status: 200 OK + code: 200 + duration: 155.167934ms +- id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1847 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:27.939447+00:00\", \"bootscript\": 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: + - "1847" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e1f4b0ee-c913-4bf3-8ed4-7f5949bcb5df + status: 200 OK + code: 200 + duration: 121.882194ms +- id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1893 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:27.939447+00:00\", \"bootscript\": 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: + - "1893" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1461328e-c950-4444-aa35-0a4fd1fe024e + status: 200 OK + code: 200 + duration: 119.931665ms +- id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1893 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:27.939447+00:00\", \"bootscript\": 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: + - "1893" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 13d88a16-92f6-4248-aa16-91b457bd75b9 + status: 200 OK + code: 200 + duration: 155.339951ms +- id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1893 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:27.939447+00:00\", \"bootscript\": 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: + - "1893" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2c84855d-110f-42cb-9fe1-5a12b4049275 + status: 200 OK + code: 200 + duration: 151.835758ms +- id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1893 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:27.939447+00:00\", \"bootscript\": 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: + - "1893" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2880a353-f51c-4cb0-96a2-b4888a727d17 + status: 200 OK + code: 200 + duration: 156.822325ms +- id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1893 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:27.939447+00:00\", \"bootscript\": 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: + - "1893" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0d697a89-47ea-4578-b745-f6f3de384e81 + status: 200 OK + code: 200 + duration: 149.127521ms +- id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1893 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:27.939447+00:00\", \"bootscript\": 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: + - "1893" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b752c698-8b11-4736-9585-66f797528a44 + status: 200 OK + code: 200 + duration: 157.785164ms +- id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1847 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:27.939447+00:00\", \"bootscript\": 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: + - "1847" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ca6701d1-15d0-4bd1-8c3d-e55368419f66 + status: 200 OK + code: 200 + duration: 1.786567682s +- id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1847 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:27.939447+00:00\", \"bootscript\": 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: + - "1847" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 27c9cdda-21a4-4ed9-8c31-875544c84e59 + status: 200 OK + code: 200 + duration: 145.791225ms +- id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1893 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:27.939447+00:00\", \"bootscript\": 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: + - "1893" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3eb17a68-295c-4343-84f6-3a5406713c07 + status: 200 OK + code: 200 + duration: 157.336587ms +- id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1847 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:27.939447+00:00\", \"bootscript\": 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: + - "1847" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c23f5f54-c08f-4012-9c03-8650c03fc277 + status: 200 OK + code: 200 + duration: 153.061948ms +- id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1847 + body: "{\"server\": {\"id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\", \"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\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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:6d:07\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.706399+00:00\", \"modification_date\": \"2025-10-30T15:43:27.939447+00:00\", \"bootscript\": 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: + - "1847" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b36b88ca-1054-430e-83fb-c9e587904b1c + status: 200 OK + code: 200 + duration: 163.426243ms +- id: 115 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5eb28ce0-62be-4a88-9593-9ce6ff254897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"5eb28ce0-62be-4a88-9593-9ce6ff254897\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 72bc6a97-dab1-4b4c-b4e1-98f1470e0545 + status: 404 Not Found + code: 404 + duration: 71.323405ms +- id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a23f9da3-cb28-4550-9345-6b4b1dcf3d67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 29ef7aa7-cc42-49bc-9f07-7b2360155a22 + status: 404 Not Found + code: 404 + duration: 37.210889ms +- id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a23f9da3-cb28-4550-9345-6b4b1dcf3d67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 498 + body: "{\"id\":\"a23f9da3-cb28-4550-9345-6b4b1dcf3d67\", \"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-30T15:43:14.840520Z\", \"updated_at\":\"2025-10-30T15:44:59.562283Z\", \"references\":[], \"parent_snapshot_id\":\"36b4ce54-c67a-4f68-ab74-839515834352\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:44:59.562283Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "498" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 281ddf9e-b42d-4663-8b86-fa5ab068e1ae + status: 200 OK + code: 200 + duration: 219.395705ms +- id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a23f9da3-cb28-4550-9345-6b4b1dcf3d67 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a9884977-4a22-4a7e-876e-45bdcc04ec58 + status: 204 No Content + code: 204 + duration: 203.457245ms +- id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:03 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9c1e1d93-1e28-416f-8dcc-33ec404c4269 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 41.074628ms +- id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:03 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e13b3470-72c4-4378-b9ad-e47dd551ac49 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 38.671289ms +- id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 240 + host: api.scaleway.com + 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\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1724 + body: "{\"server\": {\"id\": \"66648409-dea6-4aac-84e3-510b765ef569\", \"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\": \"3fc41261-b05e-4dac-9260-922b20033af1\", \"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:6d:41\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:03.757922+00:00\", \"modification_date\": \"2025-10-30T15:45:03.757922+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1724" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:04 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/66648409-dea6-4aac-84e3-510b765ef569 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 68ada49c-c2b4-4b8a-a663-97ce802fd1e5 + status: 201 Created + code: 201 + duration: 1.393574155s +- id: 122 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/66648409-dea6-4aac-84e3-510b765ef569 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1770 + body: "{\"server\": {\"id\": \"66648409-dea6-4aac-84e3-510b765ef569\", \"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\": \"3fc41261-b05e-4dac-9260-922b20033af1\", \"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:6d:41\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:03.757922+00:00\", \"modification_date\": \"2025-10-30T15:45:03.757922+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1770" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1ab9d627-6e07-4819-a650-f866af28fea3 + status: 200 OK + code: 200 + duration: 168.10933ms +- id: 123 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/66648409-dea6-4aac-84e3-510b765ef569 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1724 + body: "{\"server\": {\"id\": \"66648409-dea6-4aac-84e3-510b765ef569\", \"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\": \"3fc41261-b05e-4dac-9260-922b20033af1\", \"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:6d:41\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:03.757922+00:00\", \"modification_date\": \"2025-10-30T15:45:03.757922+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1724" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 67a08902-fb86-4124-8c2d-32cbaae8ca30 + status: 200 OK + code: 200 + duration: 228.969779ms +- id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/66648409-dea6-4aac-84e3-510b765ef569 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1770 + body: "{\"server\": {\"id\": \"66648409-dea6-4aac-84e3-510b765ef569\", \"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\": \"3fc41261-b05e-4dac-9260-922b20033af1\", \"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:6d:41\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:03.757922+00:00\", \"modification_date\": \"2025-10-30T15:45:03.757922+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1770" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 02b0efe1-aadb-4143-b8f2-db8267edf1a7 + status: 200 OK + code: 200 + duration: 152.006651ms +- id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3fc41261-b05e-4dac-9260-922b20033af1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"3fc41261-b05e-4dac-9260-922b20033af1\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 22e9c265-f365-45aa-aa11-31ca657768b9 + status: 404 Not Found + code: 404 + duration: 45.22815ms +- id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3fc41261-b05e-4dac-9260-922b20033af1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"3fc41261-b05e-4dac-9260-922b20033af1\", \"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-30T15:45:03.891014Z\", \"updated_at\":\"2025-10-30T15:45:03.891014Z\", \"references\":[{\"id\":\"33e93e97-008f-4cb4-9c96-9515d3541546\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"66648409-dea6-4aac-84e3-510b765ef569\", \"created_at\":\"2025-10-30T15:45:03.891014Z\", \"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: + - Thu, 30 Oct 2025 15:45:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cd6cf79b-e3b7-4ffb-ac84-a74e1a96d1f4 + status: 200 OK + code: 200 + duration: 77.575455ms +- id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/66648409-dea6-4aac-84e3-510b765ef569/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b83835bf-9d62-4dbb-9e43-98c79b404afc + status: 200 OK + code: 200 + duration: 103.308662ms +- id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/66648409-dea6-4aac-84e3-510b765ef569/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:05 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cc8975ba-70e7-4383-927d-c7e131145700 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 150.254715ms +- id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/66648409-dea6-4aac-84e3-510b765ef569 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1724 + body: "{\"server\": {\"id\": \"66648409-dea6-4aac-84e3-510b765ef569\", \"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\": \"3fc41261-b05e-4dac-9260-922b20033af1\", \"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:6d:41\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:03.757922+00:00\", \"modification_date\": \"2025-10-30T15:45:03.757922+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1724" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f2db2adc-30b5-4572-93ad-560a77a96203 + status: 200 OK + code: 200 + duration: 232.234202ms +- id: 130 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1784 + body: "{\"server\": {\"id\": \"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"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\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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:6d:09\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.740651+00:00\", \"modification_date\": \"2025-10-30T15:43:18.997048+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1784" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0317b174-6fe4-4efc-8cc4-9b3ea1737e3b + status: 200 OK + code: 200 + duration: 169.758876ms +- id: 131 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/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 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ce72a4d5-67ab-4a76-8c4f-b5e52fdfd058 + status: 200 OK + code: 200 + duration: 54.993531ms +- id: 132 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4dbb8448-4f45-47db-8a5d-ad1322e4d89e + status: 200 OK + code: 200 + duration: 67.902057ms +- id: 133 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 587949f4-b92d-4a6f-9946-b9e742aa9d5d + status: 200 OK + code: 200 + duration: 52.617683ms +- id: 134 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1738 + body: "{\"server\": {\"id\": \"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"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\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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:6d:09\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.740651+00:00\", \"modification_date\": \"2025-10-30T15:43:18.997048+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:45:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1f8c85aa-77f4-44c9-aac4-bbe2449f0cec + status: 200 OK + code: 200 + duration: 152.322014ms +- id: 135 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ff20820-d9a8-4e1b-95db-701c753c8380 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c7749240-32ee-42f1-8e51-40a2dfd10b22 + status: 404 Not Found + code: 404 + duration: 38.299611ms +- id: 136 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/66648409-dea6-4aac-84e3-510b765ef569 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1724 + body: "{\"server\": {\"id\": \"66648409-dea6-4aac-84e3-510b765ef569\", \"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\": \"3fc41261-b05e-4dac-9260-922b20033af1\", \"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:6d:41\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:03.757922+00:00\", \"modification_date\": \"2025-10-30T15:45:03.757922+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1724" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 63854787-052c-463f-b4d8-c781958293c4 + status: 200 OK + code: 200 + duration: 179.604266ms +- id: 137 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3fc41261-b05e-4dac-9260-922b20033af1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"3fc41261-b05e-4dac-9260-922b20033af1\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 28234023-dd2f-4569-bcff-eb2489c43de0 + status: 404 Not Found + code: 404 + duration: 37.521422ms +- id: 138 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff20820-d9a8-4e1b-95db-701c753c8380 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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-30T15:43:14.880756Z\", \"updated_at\":\"2025-10-30T15:43:14.880756Z\", \"references\":[{\"id\":\"045cb36d-3139-4b3a-8763-c8bb84da82ab\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"created_at\":\"2025-10-30T15:43:14.880756Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c732f64f-2ead-44d1-a2e7-587607ab35a5 + status: 200 OK + code: 200 + duration: 105.491978ms +- id: 139 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3fc41261-b05e-4dac-9260-922b20033af1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"3fc41261-b05e-4dac-9260-922b20033af1\", \"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-30T15:45:03.891014Z\", \"updated_at\":\"2025-10-30T15:45:03.891014Z\", \"references\":[{\"id\":\"33e93e97-008f-4cb4-9c96-9515d3541546\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"66648409-dea6-4aac-84e3-510b765ef569\", \"created_at\":\"2025-10-30T15:45:03.891014Z\", \"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: + - Thu, 30 Oct 2025 15:45:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 96d74cb6-b0ba-4fa6-a20f-9f85a777a6c8 + status: 200 OK + code: 200 + duration: 116.544443ms +- id: 140 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 72d5b301-6900-47e8-8984-351887af1555 + status: 200 OK + code: 200 + duration: 139.653898ms +- id: 141 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:06 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e0b97b4b-714c-437d-bf27-bb09578c69ba + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 291.388809ms +- id: 142 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/66648409-dea6-4aac-84e3-510b765ef569/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5ef63e8e-9393-4859-9385-b8b5e0b83e6f + status: 200 OK + code: 200 + duration: 351.271272ms +- id: 143 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/66648409-dea6-4aac-84e3-510b765ef569/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:07 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0781cd1c-11e6-402d-a90a-cf6db55b5196 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 99.96558ms +- id: 144 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/66648409-dea6-4aac-84e3-510b765ef569 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1724 + body: "{\"server\": {\"id\": \"66648409-dea6-4aac-84e3-510b765ef569\", \"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\": \"3fc41261-b05e-4dac-9260-922b20033af1\", \"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:6d:41\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:03.757922+00:00\", \"modification_date\": \"2025-10-30T15:45:03.757922+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1724" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - be4e732b-e61d-4201-8c7a-a12e5cdb2dc7 + status: 200 OK + code: 200 + duration: 131.038876ms +- id: 145 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1784 + body: "{\"server\": {\"id\": \"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"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\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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:6d:09\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.740651+00:00\", \"modification_date\": \"2025-10-30T15:43:18.997048+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1784" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 06541984-05e2-4c71-982e-f0dac4343af6 + status: 200 OK + code: 200 + duration: 152.239419ms +- id: 146 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1784 + body: "{\"server\": {\"id\": \"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"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\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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:6d:09\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.740651+00:00\", \"modification_date\": \"2025-10-30T15:43:18.997048+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1784" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 30cc46a9-f3eb-408c-bb79-20963d8668eb + status: 200 OK + code: 200 + duration: 172.253236ms +- id: 147 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/66648409-dea6-4aac-84e3-510b765ef569 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1724 + body: "{\"server\": {\"id\": \"66648409-dea6-4aac-84e3-510b765ef569\", \"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\": \"3fc41261-b05e-4dac-9260-922b20033af1\", \"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:6d:41\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:03.757922+00:00\", \"modification_date\": \"2025-10-30T15:45:03.757922+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1724" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 38649b9e-cea4-474e-9f96-ec75a4104747 + status: 200 OK + code: 200 + duration: 203.686136ms +- id: 148 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff20820-d9a8-4e1b-95db-701c753c8380 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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-30T15:43:14.880756Z\", \"updated_at\":\"2025-10-30T15:43:14.880756Z\", \"references\":[{\"id\":\"045cb36d-3139-4b3a-8763-c8bb84da82ab\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"created_at\":\"2025-10-30T15:43:14.880756Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 35c7efbd-afa2-4a72-8d10-479622750de9 + status: 200 OK + code: 200 + duration: 111.967817ms +- id: 149 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3fc41261-b05e-4dac-9260-922b20033af1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"3fc41261-b05e-4dac-9260-922b20033af1\", \"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-30T15:45:03.891014Z\", \"updated_at\":\"2025-10-30T15:45:03.891014Z\", \"references\":[{\"id\":\"33e93e97-008f-4cb4-9c96-9515d3541546\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"66648409-dea6-4aac-84e3-510b765ef569\", \"created_at\":\"2025-10-30T15:45:03.891014Z\", \"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: + - Thu, 30 Oct 2025 15:45:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 20b288f8-2e0a-4aab-8be4-a489d933f605 + status: 200 OK + code: 200 + duration: 104.706294ms +- id: 150 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"595a7059-8211-4e59-bf5b-f075be7e8389\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226/action\", \"href_result\": \"/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"started_at\": \"2025-10-30T15:45:08.015666+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:08 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/595a7059-8211-4e59-bf5b-f075be7e8389 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a6cc1820-b938-4fc2-be2d-36d5a516aa00 + status: 202 Accepted + code: 202 + duration: 321.071175ms +- id: 151 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/66648409-dea6-4aac-84e3-510b765ef569/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"c0cc18d4-0d67-4280-9ddb-d777d8400b30\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/66648409-dea6-4aac-84e3-510b765ef569/action\", \"href_result\": \"/servers/66648409-dea6-4aac-84e3-510b765ef569\", \"started_at\": \"2025-10-30T15:45:08.046227+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:08 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c0cc18d4-0d67-4280-9ddb-d777d8400b30 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cf250b76-e617-440a-8399-d4e8da3b1a23 + status: 202 Accepted + code: 202 + duration: 354.807697ms +- id: 152 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/66648409-dea6-4aac-84e3-510b765ef569 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1746 + body: "{\"server\": {\"id\": \"66648409-dea6-4aac-84e3-510b765ef569\", \"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\": \"3fc41261-b05e-4dac-9260-922b20033af1\", \"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:6d:41\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:03.757922+00:00\", \"modification_date\": \"2025-10-30T15:45:07.793021+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: + - "1746" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9e633aa4-4dca-4415-9cbe-2d5e267fe5e3 + status: 200 OK + code: 200 + duration: 137.009046ms +- id: 153 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1806 + body: "{\"server\": {\"id\": \"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"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\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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:6d:09\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.740651+00:00\", \"modification_date\": \"2025-10-30T15:45:07.769835+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: + - "1806" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e1b9614e-0f8c-4828-abce-56883da52171 + status: 200 OK + code: 200 + duration: 179.079923ms +- id: 154 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/66648409-dea6-4aac-84e3-510b765ef569 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1927 + body: "{\"server\": {\"id\": \"66648409-dea6-4aac-84e3-510b765ef569\", \"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\": \"3fc41261-b05e-4dac-9260-922b20033af1\", \"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:6d:41\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:03.757922+00:00\", \"modification_date\": \"2025-10-30T15:45:12.320013+00:00\", \"bootscript\": 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\": \"1102\", \"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, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "1927" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f82cd3aa-5fbd-46e5-a8f8-565b865851bb + status: 200 OK + code: 200 + duration: 153.85467ms +- id: 155 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1894 + body: "{\"server\": {\"id\": \"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"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\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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:6d:09\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.740651+00:00\", \"modification_date\": \"2025-10-30T15:45:12.636361+00:00\", \"bootscript\": 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\": \"302\", \"node_id\": \"52\"}, \"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: + - "1894" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 62e5effc-3b6a-4ac1-a8bc-9161ce88a7c6 + status: 200 OK + code: 200 + duration: 176.064427ms +- id: 156 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/66648409-dea6-4aac-84e3-510b765ef569/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"62121dc6-7657-4635-8bbc-dcdca978dea6\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/66648409-dea6-4aac-84e3-510b765ef569/action\", \"href_result\": \"/servers/66648409-dea6-4aac-84e3-510b765ef569\", \"started_at\": \"2025-10-30T15:45:13.658169+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:13 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/62121dc6-7657-4635-8bbc-dcdca978dea6 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ae1e3e95-18a9-464d-82e4-233bcfc74ba7 + status: 202 Accepted + code: 202 + duration: 301.188266ms +- id: 157 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"c6a7252b-8a42-4692-bba6-2a611ded0577\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226/action\", \"href_result\": \"/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"started_at\": \"2025-10-30T15:45:13.712179+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:13 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c6a7252b-8a42-4692-bba6-2a611ded0577 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3108f8d0-fa90-4783-a8c0-3ba7363a455d + status: 202 Accepted + code: 202 + duration: 336.175304ms +- id: 158 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/66648409-dea6-4aac-84e3-510b765ef569 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1844 + body: "{\"server\": {\"id\": \"66648409-dea6-4aac-84e3-510b765ef569\", \"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\": \"3fc41261-b05e-4dac-9260-922b20033af1\", \"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:6d:41\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:03.757922+00:00\", \"modification_date\": \"2025-10-30T15:45:13.419380+00:00\", \"bootscript\": 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\": \"1102\", \"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: + - "1844" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e3ae1008-b64f-4d2c-bc4a-ea1d40a7fd32 + status: 200 OK + code: 200 + duration: 171.639385ms +- id: 159 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1903 + body: "{\"server\": {\"id\": \"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\", \"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\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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:6d:09\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:14.740651+00:00\", \"modification_date\": \"2025-10-30T15:45:13.446175+00:00\", \"bootscript\": 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\": \"302\", \"node_id\": \"52\"}, \"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: + - "1903" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 92261058-3c47-48ed-b51d-e83403cd1dc0 + status: 200 OK + code: 200 + duration: 144.369835ms +- id: 160 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2f7f8ca0-19b9-4c91-be84-7d84a6c394ec + status: 404 Not Found + code: 404 + duration: 54.760103ms +- id: 161 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ff20820-d9a8-4e1b-95db-701c753c8380 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"4ff20820-d9a8-4e1b-95db-701c753c8380\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c260c6fb-6a26-4f62-a0f9-554315a7b91c + status: 404 Not Found + code: 404 + duration: 37.932584ms +- id: 162 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/66648409-dea6-4aac-84e3-510b765ef569 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1844 + body: "{\"server\": {\"id\": \"66648409-dea6-4aac-84e3-510b765ef569\", \"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\": \"3fc41261-b05e-4dac-9260-922b20033af1\", \"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:6d:41\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:03.757922+00:00\", \"modification_date\": \"2025-10-30T15:45:13.419380+00:00\", \"bootscript\": 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\": \"1102\", \"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: + - "1844" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b90d3f40-295d-4ce5-bf47-f4df4b45c15a + status: 200 OK + code: 200 + duration: 157.257745ms +- id: 163 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff20820-d9a8-4e1b-95db-701c753c8380 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 498 + body: "{\"id\":\"4ff20820-d9a8-4e1b-95db-701c753c8380\", \"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-30T15:43:14.880756Z\", \"updated_at\":\"2025-10-30T15:45:15.414988Z\", \"references\":[], \"parent_snapshot_id\":\"36b4ce54-c67a-4f68-ab74-839515834352\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:45:15.414988Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "498" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5aa2da22-4d0d-4fe6-95df-a20333c1589f + status: 200 OK + code: 200 + duration: 104.402396ms +- id: 164 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff20820-d9a8-4e1b-95db-701c753c8380 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 272fbec7-9188-47ae-b449-8739a8c7ea52 + status: 204 No Content + code: 204 + duration: 171.818733ms +- id: 165 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/66648409-dea6-4aac-84e3-510b765ef569 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1890 + body: "{\"server\": {\"id\": \"66648409-dea6-4aac-84e3-510b765ef569\", \"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\": \"3fc41261-b05e-4dac-9260-922b20033af1\", \"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:6d:41\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:03.757922+00:00\", \"modification_date\": \"2025-10-30T15:45:13.419380+00:00\", \"bootscript\": 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\": \"1102\", \"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: + - "1890" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7e140230-719d-49a0-b39c-fdc8ffc3f511 + status: 200 OK + code: 200 + duration: 146.149687ms +- id: 166 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/66648409-dea6-4aac-84e3-510b765ef569 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"66648409-dea6-4aac-84e3-510b765ef569\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 00387a89-3e7a-488c-988a-5a9a82ff3af6 + status: 404 Not Found + code: 404 + duration: 52.874417ms +- id: 167 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3fc41261-b05e-4dac-9260-922b20033af1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"3fc41261-b05e-4dac-9260-922b20033af1\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 671a418d-c168-4160-88c4-fcb42e7397dc + status: 404 Not Found + code: 404 + duration: 32.211842ms +- id: 168 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3fc41261-b05e-4dac-9260-922b20033af1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"3fc41261-b05e-4dac-9260-922b20033af1\", \"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-30T15:45:03.891014Z\", \"updated_at\":\"2025-10-30T15:45:25.168746Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:45:25.168746Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 957ee622-f0a1-47f4-9703-5ec847ad55d7 + status: 200 OK + code: 200 + duration: 94.876736ms +- id: 169 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3fc41261-b05e-4dac-9260-922b20033af1 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f4fd34e7-d67c-421b-8800-b59c3660336c + status: 204 No Content + code: 204 + duration: 180.965575ms +- id: 170 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8396c322-8f5c-4e3d-999e-3cf7f7cbb226 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"8396c322-8f5c-4e3d-999e-3cf7f7cbb226\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 533c8d21-9fd5-46a7-a1a7-fe049918baed + status: 404 Not Found + code: 404 + duration: 50.780849ms +- id: 171 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/66648409-dea6-4aac-84e3-510b765ef569 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"66648409-dea6-4aac-84e3-510b765ef569\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 56577ff8-5da3-45a5-b6b7-ffc13538ea33 + status: 404 Not Found + code: 404 + duration: 39.617526ms diff --git a/internal/services/instance/testdata/server-ip-removed.cassette.yaml b/internal/services/instance/testdata/server-ip-removed.cassette.yaml index 4ac7774ca..bdca6f514 100644 --- a/internal/services/instance/testdata/server-ip-removed.cassette.yaml +++ b/internal/services/instance/testdata/server-ip-removed.cassette.yaml @@ -1,2443 +1,1865 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 50 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:48 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;edge03) - X-Request-Id: - - e899dc67-b966-4bf3-8d66-00cf5c760474 - status: 201 Created - code: 201 - duration: 391.350931ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - body: '{"ip": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5ca7576e-33c0-495f-aa6b-f1a6f87f43b3 - status: 200 OK - code: 200 - duration: 124.651734ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:49 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f3e89f15-f5a1-44fb-9eba-4e67086fc4a1 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 50.066823ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:49 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3432c091-19ee-4834-b415-3a395a0377b7 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 111.851388ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d13509b4-3cbc-4b52-af7c-5cd3994c5da3 - status: 200 OK - code: 200 - duration: 59.4342ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 304 - transfer_encoding: [] - trailer: {} - 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":["65a60f6b-fa89-4e49-bc25-fced17fa3df3"],"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2298 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:50 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2d422764-4ad0-4f60-8ada-68f9e577a716 - status: 201 Created - code: 201 - duration: 1.616029964s - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2298 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2ff27ed1-9b43-4316-be8a-28cef0558276 - status: 200 OK - code: 200 - duration: 173.323269ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2344 - uncompressed: false - 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: - - "2344" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b6a07dc4-f919-4773-8c64-3e7b36832128 - status: 200 OK - code: 200 - duration: 133.633672ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2344 - uncompressed: false - 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: - - "2344" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1826311d-4636-45be-aa3f-0375a26d48fd - status: 200 OK - code: 200 - duration: 139.443004ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 - 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": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1942cb3b-3f48-46eb-aa28-0db34e3414b4 - status: 404 Not Found - code: 404 - duration: 38.5994ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f145a2a6-f35d-431c-aa09-d04e088c8034 - status: 200 OK - code: 200 - duration: 96.506114ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/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:54:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 46689876-6179-41b9-b85d-2501288097b7 - status: 200 OK - code: 200 - duration: 111.519789ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/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:54:51 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 77a63685-b425-43af-99f7-4ea24deae371 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 90.92133ms - - 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/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/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:54:51 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b12330ec-bbcf-49c7-9140-25b40a566fb3 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 129.672755ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 454 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 72638637-d473-45c9-84db-e6e59cf66f1c - status: 200 OK - code: 200 - duration: 128.28013ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2344 - uncompressed: false - 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: - - "2344" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 08ba20d1-52fd-43bb-a5a8-f0dcdff8e10e - status: 200 OK - code: 200 - duration: 130.313904ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 - 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": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7a8b243e-e51e-4a92-9973-1a8f3a6f4ed2 - status: 404 Not Found - code: 404 - duration: 31.761493ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9263ea85-daef-4a5a-8c0d-b528e2074541 - status: 200 OK - code: 200 - duration: 80.360181ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/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:54:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 522b90d6-6294-4ee1-ad71-84fb2837e65d - status: 200 OK - code: 200 - duration: 102.520109ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/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:54:52 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 00f478a6-d8bf-465e-9110-a28d4f50fb39 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 99.445791ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 454 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3a175604-500b-41fc-8b3a-a9fcdf1bcd7d - status: 200 OK - code: 200 - duration: 108.954142ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2344 - uncompressed: false - 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: - - "2344" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 05981def-7b3c-427d-b202-6f3879cc2228 - status: 200 OK - code: 200 - duration: 190.958518ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 - 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": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8830fd6b-768f-4d05-a349-33ac7aee7cfe - status: 404 Not Found - code: 404 - duration: 34.633725ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f7a93854-743a-40dd-ba88-2cd9f7679979 - status: 200 OK - code: 200 - duration: 98.025265ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/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:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8ded26ac-59c3-447a-aa3b-2d0fbe41eceb - status: 200 OK - code: 200 - duration: 103.553031ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/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:54:53 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ec88eb23-a13a-429d-91ba-b79fb624839f - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 102.8087ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2344 - uncompressed: false - 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: - - "2344" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 991b7134-c44c-472c-a5d6-53f2d64670c3 - status: 200 OK - code: 200 - duration: 144.918244ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 17 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"public_ips":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1772 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c593b176-5ade-41ea-b5d6-f15a27778945 - status: 200 OK - code: 200 - duration: 581.38093ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1772 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f081c585-311e-4fc2-9687-3ff7032eec02 - status: 200 OK - code: 200 - duration: 140.00706ms - - 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/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1772 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - acfedaa0-94e2-42cd-bd67-d12e2d406794 - status: 200 OK - code: 200 - duration: 123.554845ms - - 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/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 - 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": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dd004bde-f223-4d02-b00e-12ea603418f0 - status: 404 Not Found - code: 404 - duration: 27.370643ms - - 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/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: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 77377e48-8397-475d-84f6-94d47076fac8 - status: 200 OK - code: 200 - duration: 91.550858ms - - 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/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/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:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d7c6d737-8d61-4ff1-9658-c0e397ac5719 - status: 200 OK - code: 200 - duration: 85.061664ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/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:54:54 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9294a3c5-866d-4b6c-a82c-8b579cf1a1d0 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 99.597676ms - - 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/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/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:54:55 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7d84ec15-68a1-45e7-9fc6-b1c98c6a0c7e - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 97.753868ms - - 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/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1818 - uncompressed: false - 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: - - "1818" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 256f9e91-ca68-498a-ad10-49eb0cf9aecf - status: 200 OK - code: 200 - duration: 140.0547ms - - 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/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - body: '{"ip": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3ac3954c-5e03-4df7-90df-273af6ecd018 - status: 200 OK - code: 200 - duration: 105.523847ms - - 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/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1818 - uncompressed: false - 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: - - "1818" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b9ec5eb2-1773-4f7d-aadc-53ba1b599fcc - status: 200 OK - code: 200 - duration: 139.553933ms - - 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/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 - 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": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5b5050c1-2990-4b01-9069-714e76c5c02d - status: 404 Not Found - code: 404 - duration: 26.965986ms - - 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/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: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b9df7be2-6edd-418a-9e1b-469d0490effb - status: 200 OK - code: 200 - duration: 77.648231ms - - 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/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/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:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d8993fcc-b128-4b33-a5e5-696226793959 - status: 200 OK - code: 200 - duration: 110.51431ms - - 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/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/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:54:55 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - eeac7618-e30e-4134-9fda-563280ba9d4d - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 133.570395ms - - 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/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1772 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b3f22492-41a8-40b3-960d-9827c3436175 - status: 200 OK - code: 200 - duration: 160.888357ms - - 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/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1818 - uncompressed: false - 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: - - "1818" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d2ac9aa4-0fc0-4885-9d7b-220e8c86c17b - status: 200 OK - code: 200 - duration: 128.540309ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - 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:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1240653a-1188-41bf-b0de-990f57dd07bf - status: 204 No Content - code: 204 - duration: 331.839705ms - - id: 45 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 73f3fc4a-d233-419f-bead-0b84e29a538a - status: 200 OK - code: 200 - duration: 89.121637ms - - id: 46 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweron"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f383f9fa-f47c-4f8a-81b7-2625cd781579 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d91a9ccc-e60d-48c4-8673-1a7c0bda709e - status: 202 Accepted - code: 202 - duration: 252.330014ms - - 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/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1794 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8536ff43-6cb4-4708-9ec7-03e45cf07894 - status: 200 OK - code: 200 - duration: 143.503519ms - - 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/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1973 - uncompressed: false - 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: - - "1973" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 58c882d7-cd30-4edb-96e2-8cbfe74cbd68 - status: 200 OK - code: 200 - duration: 193.01134ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 22 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"terminate"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:02 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4cb62397-17cd-4c51-a7a9-cadee78f5289 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7cbb4cb1-f6f8-4d69-9651-f039398f7aa3 - status: 202 Accepted - code: 202 - duration: 295.925781ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1936 - uncompressed: false - 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: - - "1936" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fa4615f6-330a-4f0e-b117-4168fa74aa08 - status: 200 OK - code: 200 - duration: 160.747448ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1936 - uncompressed: false - 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: - - "1936" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4aef311b-4bc0-4b9f-a2fc-bbd437b561af - status: 200 OK - code: 200 - duration: 135.027373ms - - 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/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1936 - uncompressed: false - 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: - - "1936" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6a42ac67-72f4-4d5b-939a-d2a84a953eaa - status: 200 OK - code: 200 - duration: 134.570491ms - - 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/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 - 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": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d187da6c-a288-4862-93a3-c6ff2e003564 - status: 404 Not Found - code: 404 - duration: 51.812592ms - - 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/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 - 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": "ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 75a1a5c0-a12a-4866-82e8-da1f6ffcfa15 - status: 404 Not Found - code: 404 - duration: 31.040778ms - - id: 55 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 498 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 811d55a8-affe-4703-abe9-8fc26cdf3896 - status: 200 OK - code: 200 - duration: 91.508755ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ec0f5db0-ebd2-4ca3-b89e-74dea06d31d8 - 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:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3b2c0017-af9c-43b6-a458-4310bb6bca8b - status: 204 No Content - code: 204 - duration: 163.581535ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fa7d8e70-11b3-4b51-80a1-ff280c3b77c8 - 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": "fa7d8e70-11b3-4b51-80a1-ff280c3b77c8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 70e7d5e9-2b03-4702-9f39-63a47687bb34 - status: 404 Not Found - code: 404 - duration: 40.194676ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 50 + host: api.scaleway.com + body: "{\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 364 + 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\": \"e60ef2fc-677a-41a7-a8af-8016dec2fb44\"}}" + headers: + Content-Length: + - "364" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9ecc64ec-9a49-46c9-8a84-90dcb922326b + status: 201 Created + code: 201 + duration: 435.929845ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 364 + 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\": \"e60ef2fc-677a-41a7-a8af-8016dec2fb44\"}}" + headers: + Content-Length: + - "364" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ba14b0eb-d7a1-4ba3-912b-74bcd30a6d96 + status: 200 OK + code: 200 + duration: 108.598596ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - afaac026-b8e5-4546-8d10-6e12fac80eab + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 46.388979ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 19c498d1-76ac-4591-83a7-8d359d6e402b + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 42.355694ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/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 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e7b3ecf4-ff84-4445-8342-5e1acbb52865 + status: 200 OK + code: 200 + duration: 44.407763ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 304 + host: api.scaleway.com + 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\":[\"aede723a-ffe8-427b-b809-eea14206f331\"],\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2342 + body: "{\"server\": {\"id\": \"473b5acf-5715-4c49-965c-f607e3643e41\", \"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\": \"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": {\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e60ef2fc-677a-41a7-a8af-8016dec2fb44\"}, \"public_ips\": [{\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e60ef2fc-677a-41a7-a8af-8016dec2fb44\"}], \"mac_address\": \"de:00:00:d0:6d:13\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:19.484298+00:00\", \"modification_date\": \"2025-10-30T15:43:19.484298+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2342" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6ad51c63-ae81-4412-88ef-306b46c6226d + status: 201 Created + code: 201 + duration: 1.732057758s +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2296 + body: "{\"server\": {\"id\": \"473b5acf-5715-4c49-965c-f607e3643e41\", \"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\": \"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": {\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e60ef2fc-677a-41a7-a8af-8016dec2fb44\"}, \"public_ips\": [{\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e60ef2fc-677a-41a7-a8af-8016dec2fb44\"}], \"mac_address\": \"de:00:00:d0:6d:13\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:19.484298+00:00\", \"modification_date\": \"2025-10-30T15:43:19.484298+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2296" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b15dd11e-e647-4775-84e6-209f68858e4a + status: 200 OK + code: 200 + duration: 144.507627ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2342 + body: "{\"server\": {\"id\": \"473b5acf-5715-4c49-965c-f607e3643e41\", \"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\": \"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": {\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e60ef2fc-677a-41a7-a8af-8016dec2fb44\"}, \"public_ips\": [{\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e60ef2fc-677a-41a7-a8af-8016dec2fb44\"}], \"mac_address\": \"de:00:00:d0:6d:13\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:19.484298+00:00\", \"modification_date\": \"2025-10-30T15:43:19.484298+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2342" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bd2bffd5-3404-4be2-902d-297ec1b6f405 + status: 200 OK + code: 200 + duration: 143.856215ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2342 + body: "{\"server\": {\"id\": \"473b5acf-5715-4c49-965c-f607e3643e41\", \"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\": \"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": {\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e60ef2fc-677a-41a7-a8af-8016dec2fb44\"}, \"public_ips\": [{\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e60ef2fc-677a-41a7-a8af-8016dec2fb44\"}], \"mac_address\": \"de:00:00:d0:6d:13\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:19.484298+00:00\", \"modification_date\": \"2025-10-30T15:43:19.484298+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2342" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5c119cac-0705-4b16-be8e-8be1e2104004 + status: 200 OK + code: 200 + duration: 138.705403ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fdcad929-db66-49b2-9172-b36b5a984ed4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"fdcad929-db66-49b2-9172-b36b5a984ed4\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b6508ac0-b91b-4044-930c-74a72e2a0bd7 + status: 404 Not Found + code: 404 + duration: 30.464187ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdcad929-db66-49b2-9172-b36b5a984ed4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"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-30T15:43:19.649490Z\", \"updated_at\":\"2025-10-30T15:43:19.649490Z\", \"references\":[{\"id\":\"87ae69db-811b-4906-aacb-b87d129bc696\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"473b5acf-5715-4c49-965c-f607e3643e41\", \"created_at\":\"2025-10-30T15:43:19.649490Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d90ca33c-6adf-449e-9b2a-06f272c925f0 + status: 200 OK + code: 200 + duration: 101.274799ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 97240c87-a08d-4e88-a025-10d645b9a28b + status: 200 OK + code: 200 + duration: 107.483715ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 789e958a-ff0c-4e0c-b885-b9a7723ead03 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 90.329666ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c6cb7201-9638-4e87-9769-59a770eca649 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 98.165455ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 453 + body: "{\"ip\": {\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"prefix\": null, \"reverse\": null, \"server\": {\"id\": \"473b5acf-5715-4c49-965c-f607e3643e41\", \"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\": \"e60ef2fc-677a-41a7-a8af-8016dec2fb44\"}}" + headers: + Content-Length: + - "453" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 29d7b472-da7c-47ee-b7b2-abad40dde24d + status: 200 OK + code: 200 + duration: 116.877237ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2296 + body: "{\"server\": {\"id\": \"473b5acf-5715-4c49-965c-f607e3643e41\", \"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\": \"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": {\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e60ef2fc-677a-41a7-a8af-8016dec2fb44\"}, \"public_ips\": [{\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e60ef2fc-677a-41a7-a8af-8016dec2fb44\"}], \"mac_address\": \"de:00:00:d0:6d:13\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:19.484298+00:00\", \"modification_date\": \"2025-10-30T15:43:19.484298+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2296" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9a5f2b21-bb0f-4a11-b62f-f302a9914897 + status: 200 OK + code: 200 + duration: 166.927614ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fdcad929-db66-49b2-9172-b36b5a984ed4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"fdcad929-db66-49b2-9172-b36b5a984ed4\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bbaf0e63-cefa-49e9-bd3b-1c9b7a0ca7a9 + status: 404 Not Found + code: 404 + duration: 27.531446ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdcad929-db66-49b2-9172-b36b5a984ed4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"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-30T15:43:19.649490Z\", \"updated_at\":\"2025-10-30T15:43:19.649490Z\", \"references\":[{\"id\":\"87ae69db-811b-4906-aacb-b87d129bc696\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"473b5acf-5715-4c49-965c-f607e3643e41\", \"created_at\":\"2025-10-30T15:43:19.649490Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7909d703-a6a9-4d32-997f-e777c05f8f75 + status: 200 OK + code: 200 + duration: 94.227959ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c036bf9c-7988-4e15-80df-45fa4ddfdc0e + status: 200 OK + code: 200 + duration: 107.007192ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 591e5eff-25ef-4fb0-8997-61fa8c4712e1 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 110.70022ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 453 + body: "{\"ip\": {\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"prefix\": null, \"reverse\": null, \"server\": {\"id\": \"473b5acf-5715-4c49-965c-f607e3643e41\", \"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\": \"e60ef2fc-677a-41a7-a8af-8016dec2fb44\"}}" + headers: + Content-Length: + - "453" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cd513fef-e167-4afd-99d5-88b52b6fa2b9 + status: 200 OK + code: 200 + duration: 129.576078ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2342 + body: "{\"server\": {\"id\": \"473b5acf-5715-4c49-965c-f607e3643e41\", \"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\": \"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": {\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e60ef2fc-677a-41a7-a8af-8016dec2fb44\"}, \"public_ips\": [{\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e60ef2fc-677a-41a7-a8af-8016dec2fb44\"}], \"mac_address\": \"de:00:00:d0:6d:13\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:19.484298+00:00\", \"modification_date\": \"2025-10-30T15:43:19.484298+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2342" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b8b28eaa-700b-43d4-976c-eb973868d9a8 + status: 200 OK + code: 200 + duration: 139.767446ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fdcad929-db66-49b2-9172-b36b5a984ed4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"fdcad929-db66-49b2-9172-b36b5a984ed4\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 71303c3f-a24f-47b1-9f90-3ee8457a9bdd + status: 404 Not Found + code: 404 + duration: 29.749266ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdcad929-db66-49b2-9172-b36b5a984ed4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"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-30T15:43:19.649490Z\", \"updated_at\":\"2025-10-30T15:43:19.649490Z\", \"references\":[{\"id\":\"87ae69db-811b-4906-aacb-b87d129bc696\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"473b5acf-5715-4c49-965c-f607e3643e41\", \"created_at\":\"2025-10-30T15:43:19.649490Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1ff5de12-313f-43f5-908b-55dd54797709 + status: 200 OK + code: 200 + duration: 120.821365ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 401c4c3e-8b36-488a-be49-e96d59704899 + status: 200 OK + code: 200 + duration: 121.697779ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b9714611-bc95-43cf-bd76-abf218642c1a + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 124.266438ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2342 + body: "{\"server\": {\"id\": \"473b5acf-5715-4c49-965c-f607e3643e41\", \"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\": \"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": {\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e60ef2fc-677a-41a7-a8af-8016dec2fb44\"}, \"public_ips\": [{\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e60ef2fc-677a-41a7-a8af-8016dec2fb44\"}], \"mac_address\": \"de:00:00:d0:6d:13\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:19.484298+00:00\", \"modification_date\": \"2025-10-30T15:43:19.484298+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2342" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9f2ecd67-ec87-425e-9aec-053691f2fc35 + status: 200 OK + code: 200 + duration: 134.553345ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 17 + host: api.scaleway.com + body: "{\"public_ips\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1818 + body: "{\"server\": {\"id\": \"473b5acf-5715-4c49-965c-f607e3643e41\", \"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\": \"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:13\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:19.484298+00:00\", \"modification_date\": \"2025-10-30T15:43:19.484298+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1818" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9b8dd7e2-8bca-4ff7-91bc-04d4ef2f9df6 + status: 200 OK + code: 200 + duration: 533.454172ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1818 + body: "{\"server\": {\"id\": \"473b5acf-5715-4c49-965c-f607e3643e41\", \"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\": \"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:13\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:19.484298+00:00\", \"modification_date\": \"2025-10-30T15:43:19.484298+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1818" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 72b2a4af-29e9-491c-a35a-9bac652000ad + status: 200 OK + code: 200 + duration: 134.738062ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1772 + body: "{\"server\": {\"id\": \"473b5acf-5715-4c49-965c-f607e3643e41\", \"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\": \"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:13\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:19.484298+00:00\", \"modification_date\": \"2025-10-30T15:43:19.484298+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c5bea3a4-4c9f-41a3-98d3-c2d8370397dc + status: 200 OK + code: 200 + duration: 150.156095ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fdcad929-db66-49b2-9172-b36b5a984ed4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"fdcad929-db66-49b2-9172-b36b5a984ed4\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a6d641e9-0f90-4c5e-837a-ca2d59d80a7f + status: 404 Not Found + code: 404 + duration: 24.419889ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdcad929-db66-49b2-9172-b36b5a984ed4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"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-30T15:43:19.649490Z\", \"updated_at\":\"2025-10-30T15:43:19.649490Z\", \"references\":[{\"id\":\"87ae69db-811b-4906-aacb-b87d129bc696\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"473b5acf-5715-4c49-965c-f607e3643e41\", \"created_at\":\"2025-10-30T15:43:19.649490Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 130bc2fa-6cd6-4f9f-ba6a-ff16d7bccddb + status: 200 OK + code: 200 + duration: 96.514319ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 151a969e-54e1-4708-8aff-01336257713a + status: 200 OK + code: 200 + duration: 113.351333ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 62bed327-1656-403a-b898-abb86f352716 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 110.109091ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1399c04a-3f2c-4732-835a-aa6c6f2a1598 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 120.511424ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1818 + body: "{\"server\": {\"id\": \"473b5acf-5715-4c49-965c-f607e3643e41\", \"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\": \"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:13\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:19.484298+00:00\", \"modification_date\": \"2025-10-30T15:43:19.484298+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1818" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 78ad1760-bbbf-4b18-b191-0cd8619f8b8b + status: 200 OK + code: 200 + duration: 158.849954ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 364 + 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\": \"e60ef2fc-677a-41a7-a8af-8016dec2fb44\"}}" + headers: + Content-Length: + - "364" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 49cfbcc0-71a9-4303-9115-76ef9b0ed6cd + status: 200 OK + code: 200 + duration: 141.454902ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1772 + body: "{\"server\": {\"id\": \"473b5acf-5715-4c49-965c-f607e3643e41\", \"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\": \"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:13\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:19.484298+00:00\", \"modification_date\": \"2025-10-30T15:43:19.484298+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b0db553a-1e32-4a25-b619-eb3d168aa507 + status: 200 OK + code: 200 + duration: 151.216233ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fdcad929-db66-49b2-9172-b36b5a984ed4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"fdcad929-db66-49b2-9172-b36b5a984ed4\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5e258eda-f49c-4c19-b8cd-134d2cbcec18 + status: 404 Not Found + code: 404 + duration: 26.034918ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdcad929-db66-49b2-9172-b36b5a984ed4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"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-30T15:43:19.649490Z\", \"updated_at\":\"2025-10-30T15:43:19.649490Z\", \"references\":[{\"id\":\"87ae69db-811b-4906-aacb-b87d129bc696\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"473b5acf-5715-4c49-965c-f607e3643e41\", \"created_at\":\"2025-10-30T15:43:19.649490Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0433a395-05c4-46e7-9ca9-127cb23eda9f + status: 200 OK + code: 200 + duration: 118.639693ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cf824d66-91e6-4dd7-907c-4ac428e79ccc + status: 200 OK + code: 200 + duration: 92.991871ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d5b8bede-557a-4586-89ec-73986dc39445 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 123.896365ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1772 + body: "{\"server\": {\"id\": \"473b5acf-5715-4c49-965c-f607e3643e41\", \"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\": \"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:13\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:19.484298+00:00\", \"modification_date\": \"2025-10-30T15:43:19.484298+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e4fc777f-7ee9-4917-b23c-f9c273b859c3 + status: 200 OK + code: 200 + duration: 162.376018ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5e0aa835-fc71-4f77-84f5-b29389e626c5 + status: 204 No Content + code: 204 + duration: 277.110385ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1772 + body: "{\"server\": {\"id\": \"473b5acf-5715-4c49-965c-f607e3643e41\", \"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\": \"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:13\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:19.484298+00:00\", \"modification_date\": \"2025-10-30T15:43:19.484298+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2f5b6c74-4764-41ca-a2d3-0458385acdb2 + status: 200 OK + code: 200 + duration: 135.866539ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdcad929-db66-49b2-9172-b36b5a984ed4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"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-30T15:43:19.649490Z\", \"updated_at\":\"2025-10-30T15:43:19.649490Z\", \"references\":[{\"id\":\"87ae69db-811b-4906-aacb-b87d129bc696\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"473b5acf-5715-4c49-965c-f607e3643e41\", \"created_at\":\"2025-10-30T15:43:19.649490Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d56703df-03bd-443e-ab2c-50004b785f26 + status: 200 OK + code: 200 + duration: 101.918727ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"2e92cc85-9883-4e14-b83d-1db8273d04ab\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/473b5acf-5715-4c49-965c-f607e3643e41/action\", \"href_result\": \"/servers/473b5acf-5715-4c49-965c-f607e3643e41\", \"started_at\": \"2025-10-30T15:43:26.354196+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:26 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2e92cc85-9883-4e14-b83d-1db8273d04ab + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ecdd995d-ef78-497a-a9a3-9cf5bb01725c + status: 202 Accepted + code: 202 + duration: 287.590705ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1840 + body: "{\"server\": {\"id\": \"473b5acf-5715-4c49-965c-f607e3643e41\", \"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\": \"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"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:6d:13\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:19.484298+00:00\", \"modification_date\": \"2025-10-30T15:43:26.132014+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: + - "1840" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5c5463e0-813b-4f38-a3e8-be4377f0c2cf + status: 200 OK + code: 200 + duration: 137.864237ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1974 + body: "{\"server\": {\"id\": \"473b5acf-5715-4c49-965c-f607e3643e41\", \"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\": \"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"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:6d:13\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:19.484298+00:00\", \"modification_date\": \"2025-10-30T15:43:28.487486+00:00\", \"bootscript\": 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\": \"201\", \"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: + - "1974" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a1751f5b-b0d0-4994-952a-40ae57638f35 + status: 200 OK + code: 200 + duration: 146.095168ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"6d65cb54-95e6-4d21-81d1-fe2c10b653b3\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/473b5acf-5715-4c49-965c-f607e3643e41/action\", \"href_result\": \"/servers/473b5acf-5715-4c49-965c-f607e3643e41\", \"started_at\": \"2025-10-30T15:43:31.890750+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:31 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6d65cb54-95e6-4d21-81d1-fe2c10b653b3 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 80a291b8-532a-47cb-ba26-eb6afad9388b + status: 202 Accepted + code: 202 + duration: 253.534723ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1937 + body: "{\"server\": {\"id\": \"473b5acf-5715-4c49-965c-f607e3643e41\", \"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\": \"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"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:6d:13\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:19.484298+00:00\", \"modification_date\": \"2025-10-30T15:43:31.694673+00:00\", \"bootscript\": 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\": \"201\", \"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: + - "1937" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e924ffe7-449f-4f33-998d-bf9b8a884370 + status: 200 OK + code: 200 + duration: 164.987137ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"473b5acf-5715-4c49-965c-f607e3643e41\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - baaace2f-6b3b-43d9-9e50-28079b9a0552 + status: 404 Not Found + code: 404 + duration: 41.029638ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fdcad929-db66-49b2-9172-b36b5a984ed4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"fdcad929-db66-49b2-9172-b36b5a984ed4\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 899888e8-912a-4c38-a11e-605ba64619c5 + status: 404 Not Found + code: 404 + duration: 26.887929ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdcad929-db66-49b2-9172-b36b5a984ed4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 498 + body: "{\"id\":\"fdcad929-db66-49b2-9172-b36b5a984ed4\", \"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-30T15:43:19.649490Z\", \"updated_at\":\"2025-10-30T15:43:33.412592Z\", \"references\":[], \"parent_snapshot_id\":\"36b4ce54-c67a-4f68-ab74-839515834352\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:43:33.412592Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "498" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4e3e7222-b4c4-4d20-987a-a43d4f46897d + status: 200 OK + code: 200 + duration: 84.125621ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fdcad929-db66-49b2-9172-b36b5a984ed4 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9e602a6d-034a-4b79-b5ce-0c8a2f913a22 + status: 204 No Content + code: 204 + duration: 164.757979ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/473b5acf-5715-4c49-965c-f607e3643e41 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"473b5acf-5715-4c49-965c-f607e3643e41\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 80655102-8686-443f-9b7c-757c3b1c0ff2 + status: 404 Not Found + code: 404 + duration: 43.7333ms diff --git a/internal/services/instance/testdata/server-ips-removed.cassette.yaml b/internal/services/instance/testdata/server-ips-removed.cassette.yaml index 70ae278c3..d7cf7b924 100644 --- a/internal/services/instance/testdata/server-ips-removed.cassette.yaml +++ b/internal/services/instance/testdata/server-ips-removed.cassette.yaml @@ -1,2484 +1,1897 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 71 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf","type":"routed_ipv4"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:38 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;edge03) - X-Request-Id: - - 01a79e88-2ae1-4250-b763-ac623dd83f01 - status: 201 Created - code: 201 - duration: 447.564755ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - body: '{"ip": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7e5387bb-c9a1-4fb0-907e-1ede75b2de96 - status: 200 OK - code: 200 - duration: 111.847989ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:38 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2617545b-fade-4911-b188-a46643b1d25b - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 74.55903ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:39 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d00f12ad-e4d4-47a8-83f7-98711728b94d - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 96.596149ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0cf38b67-0141-43ab-b17e-bdedf7a08353 - status: 200 OK - code: 200 - duration: 99.025382ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 305 - transfer_encoding: [] - trailer: {} - 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":["65a60f6b-fa89-4e49-bc25-fced17fa3df3"],"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2346 - 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": "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: - - "2346" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:40 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a3c1b616-d04f-4807-82d7-ab679dd33acd - status: 201 Created - code: 201 - duration: 1.353520791s - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2346 - 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": "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: - - "2346" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0688a567-0cbc-4cc7-b50e-04c9756dbd5d - status: 200 OK - code: 200 - duration: 193.459047ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2300 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f06fa236-4967-4a4c-b280-74ad45d2cdb5 - status: 200 OK - code: 200 - duration: 190.432668ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 2346 - 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": "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: - - "2346" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3391695e-e96b-4b38-9afd-5249fb1bc068 - status: 200 OK - code: 200 - duration: 146.885998ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 - 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": "f4dbcb76-3bf4-4690-a6a6-47323680fc74"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 28caf04a-0d07-480c-b326-f9128d89e843 - status: 404 Not Found - code: 404 - duration: 30.585123ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d2badceb-ea8d-42a3-906b-ed19483e9e27 - status: 200 OK - code: 200 - duration: 128.182814ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/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:54:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f7b4f9fc-44ed-4aa2-9843-7db3c094cbc3 - status: 200 OK - code: 200 - duration: 114.915896ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/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:54:41 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 776a08ef-7fdc-4f29-8c14-96d3fb7d3e64 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 100.418286ms - - 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/9d7516de-f869-4fe1-addf-66bb2bd31c6a/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:54:41 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 510de440-15f7-4647-a57d-908e18c0a044 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 108.61798ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 455 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c1122253-8c04-464f-9f20-4a7a800bc067 - status: 200 OK - code: 200 - duration: 245.305218ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2346 - 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": "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: - - "2346" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 300f046e-bfd6-4adc-bc1b-a70f7bfa4da2 - status: 200 OK - code: 200 - duration: 147.229481ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 - 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": "f4dbcb76-3bf4-4690-a6a6-47323680fc74"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e2396257-df81-4b0f-9411-91b48637d643 - status: 404 Not Found - code: 404 - duration: 28.141934ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 48b288ec-f5dc-4ca6-b693-96544b7c866e - status: 200 OK - code: 200 - duration: 117.150736ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/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:54:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8314cc86-1652-4845-9cc1-77447037b749 - status: 200 OK - code: 200 - duration: 115.13166ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/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:54:42 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d24ae3f6-77eb-44b6-bd79-c1f0c0de7ca7 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 102.608332ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 455 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7a11ac93-2a73-4034-bc8e-c7568dee2aeb - status: 200 OK - code: 200 - duration: 219.677384ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2300 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1666b0c1-13fe-4226-bdcd-2fa3f1e02427 - status: 200 OK - code: 200 - duration: 218.466821ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 - 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": "f4dbcb76-3bf4-4690-a6a6-47323680fc74"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1a9a4250-0f43-4476-a9bb-c8f1658e1325 - status: 404 Not Found - code: 404 - duration: 112.961732ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 490816db-7fb3-4a01-96e3-61efd27d011f - status: 200 OK - code: 200 - duration: 73.872368ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/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:54:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 70e14526-6cd4-4320-82f6-db04b93fc336 - status: 200 OK - code: 200 - duration: 115.790482ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/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:54:43 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6c91a65a-1d7c-4e72-b254-c1eeb8f20326 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 121.42055ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2346 - 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": "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: - - "2346" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d04c2399-c583-4b32-956f-b2ce06f803ba - status: 200 OK - code: 200 - duration: 155.306245ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2346 - 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": "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: - - "2346" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c2dc8142-992d-4356-8e36-be66757e0090 - status: 200 OK - code: 200 - duration: 170.451306ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 15 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"server":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/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 420b6b7c-2c95-42a5-81e2-6b106e25326b - status: 200 OK - code: 200 - duration: 616.006652ms - - 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/9d7516de-f869-4fe1-addf-66bb2bd31c6a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1820 - 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": "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: - - "1820" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 19cb4f63-1599-49bd-8907-97405aac68e9 - status: 200 OK - code: 200 - duration: 149.316424ms - - 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/9d7516de-f869-4fe1-addf-66bb2bd31c6a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1820 - 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": "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: - - "1820" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8b363f4d-522e-41ca-aa81-15c2a0b2c751 - status: 200 OK - code: 200 - duration: 154.930702ms - - 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/f4dbcb76-3bf4-4690-a6a6-47323680fc74 - 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": "f4dbcb76-3bf4-4690-a6a6-47323680fc74"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 38efc127-6ffb-47ad-8af9-6c8a7d5b9664 - status: 404 Not Found - code: 404 - duration: 114.240384ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ffe849fa-7b0b-4b69-8565-40dfb4d09680 - status: 200 OK - code: 200 - duration: 82.674808ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/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:54:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - def2e01a-4455-4cf9-97b1-2e290003adc9 - status: 200 OK - code: 200 - duration: 105.862057ms - - 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/9d7516de-f869-4fe1-addf-66bb2bd31c6a/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:54:45 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 67ea3afa-8fcb-41f7-9dbe-6747442f9a52 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 118.456999ms - - 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/9d7516de-f869-4fe1-addf-66bb2bd31c6a/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:54:45 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f1fd2ce2-37ab-4d5b-994d-6097af9f2b05 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 98.713119ms - - 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/9d7516de-f869-4fe1-addf-66bb2bd31c6a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1820 - 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": "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: - - "1820" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6b023869-3c99-4567-b183-afa3db908215 - status: 200 OK - code: 200 - duration: 123.076627ms - - 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/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - body: '{"ip": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e86b4f9d-ae3c-4fd2-974a-f624c7aadb1c - status: 200 OK - code: 200 - duration: 240.704236ms - - 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/9d7516de-f869-4fe1-addf-66bb2bd31c6a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1820 - 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": "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: - - "1820" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ebf981f0-9e24-4e78-a7b9-18602248ecdf - status: 200 OK - code: 200 - duration: 239.924608ms - - 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/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 - 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": "f4dbcb76-3bf4-4690-a6a6-47323680fc74"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9afb6e15-d8ce-4ab3-bea5-5dc89d9ad07e - status: 404 Not Found - code: 404 - duration: 25.959323ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4cd89ea2-4507-43f3-8368-f2b19ec82b8c - status: 200 OK - code: 200 - duration: 170.579666ms - - 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/9d7516de-f869-4fe1-addf-66bb2bd31c6a/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:54:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7bce17c3-597e-486f-9d95-29435aecdc78 - status: 200 OK - code: 200 - duration: 92.505831ms - - 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/9d7516de-f869-4fe1-addf-66bb2bd31c6a/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:54:46 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2b103f05-520b-406e-ad82-eb944750712c - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 101.352184ms - - 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/9d7516de-f869-4fe1-addf-66bb2bd31c6a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1774 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 79278f19-3a41-489f-be79-72a80d81e446 - status: 200 OK - code: 200 - duration: 145.141708ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1820 - 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": "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: - - "1820" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 23d62b39-795b-4ab1-bd55-9978d9c1e658 - status: 200 OK - code: 200 - duration: 148.351521ms - - 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/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - 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:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1e257d5c-2df5-454d-9066-170ebe7fbd99 - status: 204 No Content - code: 204 - duration: 338.910919ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 39448bfa-9a61-42ac-b653-21cef974ce98 - status: 200 OK - code: 200 - duration: 88.778002ms - - id: 47 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweron"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5e6e8ef1-e6da-48c2-904f-b502e5dd7384 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3c73c660-f35b-4c34-9f8d-c120e6052857 - status: 202 Accepted - code: 202 - duration: 253.302916ms - - 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/9d7516de-f869-4fe1-addf-66bb2bd31c6a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1796 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f707a2f7-e175-4252-ae6f-d979e499ec42 - status: 200 OK - code: 200 - duration: 137.931597ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1929 - 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": "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: - - "1929" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 680681cd-ba1c-46d8-91e4-4dcce10df8cd - status: 200 OK - code: 200 - duration: 144.085916ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 22 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"terminate"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7516de-f869-4fe1-addf-66bb2bd31c6a/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a3bc7d9e-559f-406f-96af-47d599c46c05 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6d752076-7382-4191-bb8e-85b9c74e2a71 - status: 202 Accepted - code: 202 - duration: 370.305091ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - db152b65-09c0-4fe5-81bd-549b8456a330 - status: 200 OK - code: 200 - duration: 137.411687ms - - 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/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 - 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": "9d7516de-f869-4fe1-addf-66bb2bd31c6a"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bc32fc3b-b57c-4aa0-983f-5733270c4830 - status: 404 Not Found - code: 404 - duration: 47.221916ms - - 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/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 - 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": "f4dbcb76-3bf4-4690-a6a6-47323680fc74"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 078b6fd2-2155-44d6-bd5c-377a8de2da23 - status: 404 Not Found - code: 404 - duration: 30.467915ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 498 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fd438fb3-1678-44ca-bf42-d9ef7f1ce3d7 - status: 200 OK - code: 200 - duration: 69.098315ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4dbcb76-3bf4-4690-a6a6-47323680fc74 - 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:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8db4ad87-4b54-4d0b-9154-6fd11d2e6569 - status: 204 No Content - code: 204 - duration: 159.868566ms - - 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/9d7516de-f869-4fe1-addf-66bb2bd31c6a - 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": "9d7516de-f869-4fe1-addf-66bb2bd31c6a"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1a18f082-f262-4f6c-a0ef-dab1926f772e - status: 404 Not Found - code: 404 - duration: 49.64669ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 71 + host: api.scaleway.com + body: "{\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"type\":\"routed_ipv4\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"8fda71ed-de5d-4f67-9b33-c111581c74ed\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 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) + X-Request-Id: + - 90ec1ab4-029e-4e2f-863b-a7a8528b9d4d + status: 201 Created + code: 201 + duration: 809.988948ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"8fda71ed-de5d-4f67-9b33-c111581c74ed\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 18366aa4-c88a-4778-b626-e790612e7290 + status: 200 OK + code: 200 + duration: 100.617234ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1770faee-8942-461a-a84a-a2ba51aacca6 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 49.653042ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8ea6ab0e-13b3-4ef4-bee3-fb29ab688e22 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 32.981399ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/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 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b6772121-0287-43ba-bca3-a78d3545920f + status: 200 OK + code: 200 + duration: 40.385658ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 305 + host: api.scaleway.com + 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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2300 + body: "{\"server\": {\"id\": \"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"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\": \"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"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\": \"8fda71ed-de5d-4f67-9b33-c111581c74ed\"}, \"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\": \"8fda71ed-de5d-4f67-9b33-c111581c74ed\"}], \"mac_address\": \"de:00:00:d0:6d:11\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:18.695512+00:00\", \"modification_date\": \"2025-10-30T15:43:18.695512+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0b11a5a8-0251-400a-bf48-4e3c11225177 + status: 201 Created + code: 201 + duration: 1.403763459s +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2346 + body: "{\"server\": {\"id\": \"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"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\": \"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"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\": \"8fda71ed-de5d-4f67-9b33-c111581c74ed\"}, \"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\": \"8fda71ed-de5d-4f67-9b33-c111581c74ed\"}], \"mac_address\": \"de:00:00:d0:6d:11\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:18.695512+00:00\", \"modification_date\": \"2025-10-30T15:43:18.695512+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2346" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 921f9fc0-c42a-4340-87fc-915c747d8ea2 + status: 200 OK + code: 200 + duration: 159.221849ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2300 + body: "{\"server\": {\"id\": \"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"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\": \"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"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\": \"8fda71ed-de5d-4f67-9b33-c111581c74ed\"}, \"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\": \"8fda71ed-de5d-4f67-9b33-c111581c74ed\"}], \"mac_address\": \"de:00:00:d0:6d:11\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:18.695512+00:00\", \"modification_date\": \"2025-10-30T15:43:18.695512+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6a9875e6-7261-4c18-87ee-fb709082873d + status: 200 OK + code: 200 + duration: 163.501597ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2346 + body: "{\"server\": {\"id\": \"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"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\": \"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"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\": \"8fda71ed-de5d-4f67-9b33-c111581c74ed\"}, \"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\": \"8fda71ed-de5d-4f67-9b33-c111581c74ed\"}], \"mac_address\": \"de:00:00:d0:6d:11\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:18.695512+00:00\", \"modification_date\": \"2025-10-30T15:43:18.695512+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2346" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8072d0e5-16e6-4198-a862-3ebe3b9d70d9 + status: 200 OK + code: 200 + duration: 132.287443ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2fcb3afe-07ab-4f40-8bac-b6cf37021195 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"2fcb3afe-07ab-4f40-8bac-b6cf37021195\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 87e3b4b6-9568-4eaf-8fb1-70ff837ce895 + status: 404 Not Found + code: 404 + duration: 28.090044ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2fcb3afe-07ab-4f40-8bac-b6cf37021195 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"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-30T15:43:18.847477Z\", \"updated_at\":\"2025-10-30T15:43:18.847477Z\", \"references\":[{\"id\":\"e7264901-8616-4921-a208-27c035cb734c\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"created_at\":\"2025-10-30T15:43:18.847477Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3ed15292-e4be-4398-b9ff-e7a6a194116d + status: 200 OK + code: 200 + duration: 93.022287ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 218918f1-0e21-4887-96e3-615afd3c4763 + status: 200 OK + code: 200 + duration: 98.50383ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1ada58a0-b106-4c35-a0bb-7a3bdad680d7 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 104.527049ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 941d4e23-6858-4da8-8eac-6e06d9faf24c + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 100.28963ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 455 + body: "{\"ip\": {\"id\": \"65a60f6b-fa89-4e49-bc25-fced17fa3df3\", \"address\": \"51.15.236.240\", \"prefix\": null, \"reverse\": null, \"server\": {\"id\": \"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"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\": \"8fda71ed-de5d-4f67-9b33-c111581c74ed\"}}" + headers: + Content-Length: + - "455" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 60212dc5-636d-4aae-871a-934d69bb2232 + status: 200 OK + code: 200 + duration: 131.470161ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2300 + body: "{\"server\": {\"id\": \"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"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\": \"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"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\": \"8fda71ed-de5d-4f67-9b33-c111581c74ed\"}, \"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\": \"8fda71ed-de5d-4f67-9b33-c111581c74ed\"}], \"mac_address\": \"de:00:00:d0:6d:11\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:18.695512+00:00\", \"modification_date\": \"2025-10-30T15:43:18.695512+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e0220a16-7dc7-47f8-b2e7-5337ff7b28fe + status: 200 OK + code: 200 + duration: 136.21394ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2fcb3afe-07ab-4f40-8bac-b6cf37021195 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"2fcb3afe-07ab-4f40-8bac-b6cf37021195\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 39eb7a2d-9e4e-448f-b58d-f5d7ccdc3bfd + status: 404 Not Found + code: 404 + duration: 32.412912ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2fcb3afe-07ab-4f40-8bac-b6cf37021195 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"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-30T15:43:18.847477Z\", \"updated_at\":\"2025-10-30T15:43:18.847477Z\", \"references\":[{\"id\":\"e7264901-8616-4921-a208-27c035cb734c\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"created_at\":\"2025-10-30T15:43:18.847477Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d042f7ad-2ed3-45ce-98cc-efcf7e71d646 + status: 200 OK + code: 200 + duration: 95.348542ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ca335388-88fc-46b8-b1c2-95cc78f655b9 + status: 200 OK + code: 200 + duration: 84.077809ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - abe2762e-7535-4aad-a7e3-66945041408e + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 97.958839ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 455 + body: "{\"ip\": {\"id\": \"65a60f6b-fa89-4e49-bc25-fced17fa3df3\", \"address\": \"51.15.236.240\", \"prefix\": null, \"reverse\": null, \"server\": {\"id\": \"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"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\": \"8fda71ed-de5d-4f67-9b33-c111581c74ed\"}}" + headers: + Content-Length: + - "455" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 93cd3a5d-486a-4f6d-b43c-4bb0ccbe0e79 + status: 200 OK + code: 200 + duration: 120.199468ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2346 + body: "{\"server\": {\"id\": \"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"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\": \"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"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\": \"8fda71ed-de5d-4f67-9b33-c111581c74ed\"}, \"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\": \"8fda71ed-de5d-4f67-9b33-c111581c74ed\"}], \"mac_address\": \"de:00:00:d0:6d:11\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:18.695512+00:00\", \"modification_date\": \"2025-10-30T15:43:18.695512+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2346" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - abbd5d82-7277-4463-8036-a7c4008553b7 + status: 200 OK + code: 200 + duration: 145.541467ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2fcb3afe-07ab-4f40-8bac-b6cf37021195 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"2fcb3afe-07ab-4f40-8bac-b6cf37021195\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fd48f501-4179-49f0-b028-3f741e4b2033 + status: 404 Not Found + code: 404 + duration: 28.837496ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2fcb3afe-07ab-4f40-8bac-b6cf37021195 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"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-30T15:43:18.847477Z\", \"updated_at\":\"2025-10-30T15:43:18.847477Z\", \"references\":[{\"id\":\"e7264901-8616-4921-a208-27c035cb734c\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"created_at\":\"2025-10-30T15:43:18.847477Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 558067aa-a80f-4f9c-afa1-bfca902b5d1a + status: 200 OK + code: 200 + duration: 92.096902ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 805878c1-653f-4379-8d18-10d3431875b9 + status: 200 OK + code: 200 + duration: 83.522868ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2c349004-8c0f-4be7-942d-7a2869f44dae + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 132.885846ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2300 + body: "{\"server\": {\"id\": \"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"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\": \"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"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\": \"8fda71ed-de5d-4f67-9b33-c111581c74ed\"}, \"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\": \"8fda71ed-de5d-4f67-9b33-c111581c74ed\"}], \"mac_address\": \"de:00:00:d0:6d:11\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:18.695512+00:00\", \"modification_date\": \"2025-10-30T15:43:18.695512+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5e6ff60d-ebe9-4c21-87f6-7f7cb85c1ac6 + status: 200 OK + code: 200 + duration: 154.819331ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2346 + body: "{\"server\": {\"id\": \"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"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\": \"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"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\": \"8fda71ed-de5d-4f67-9b33-c111581c74ed\"}, \"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\": \"8fda71ed-de5d-4f67-9b33-c111581c74ed\"}], \"mac_address\": \"de:00:00:d0:6d:11\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:18.695512+00:00\", \"modification_date\": \"2025-10-30T15:43:18.695512+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2346" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3c375610-6f8c-49ef-bef8-aefc1715c413 + status: 200 OK + code: 200 + duration: 156.841795ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 15 + host: api.scaleway.com + body: "{\"server\":null}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"8fda71ed-de5d-4f67-9b33-c111581c74ed\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 24c6b42c-9494-4ffc-b81f-5a77fde7bb03 + status: 200 OK + code: 200 + duration: 451.575077ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1820 + body: "{\"server\": {\"id\": \"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"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\": \"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:11\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:18.695512+00:00\", \"modification_date\": \"2025-10-30T15:43:18.695512+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1820" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d338f1e4-acb0-4a88-b040-d6ecef7e8a69 + status: 200 OK + code: 200 + duration: 154.20085ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1820 + body: "{\"server\": {\"id\": \"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"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\": \"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:11\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:18.695512+00:00\", \"modification_date\": \"2025-10-30T15:43:18.695512+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1820" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e184f09d-7c36-4eb1-98ce-d9a0ecbc2ff5 + status: 200 OK + code: 200 + duration: 145.215516ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2fcb3afe-07ab-4f40-8bac-b6cf37021195 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"2fcb3afe-07ab-4f40-8bac-b6cf37021195\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b1b7c7f4-d118-4454-ab95-d12bbeb70039 + status: 404 Not Found + code: 404 + duration: 31.728529ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2fcb3afe-07ab-4f40-8bac-b6cf37021195 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"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-30T15:43:18.847477Z\", \"updated_at\":\"2025-10-30T15:43:18.847477Z\", \"references\":[{\"id\":\"e7264901-8616-4921-a208-27c035cb734c\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"created_at\":\"2025-10-30T15:43:18.847477Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6f760bac-e6d8-4907-8c5f-b2ff20c3e62c + status: 200 OK + code: 200 + duration: 97.520837ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4df2bdea-c5fd-41d7-97b1-6566787b82bc + status: 200 OK + code: 200 + duration: 95.194794ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3f81d161-9314-4c83-bd3d-7f8cb962df11 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 108.90361ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4b5da8df-ef37-45df-b27a-1567cf11bbed + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 125.461791ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1820 + body: "{\"server\": {\"id\": \"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"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\": \"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:11\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:18.695512+00:00\", \"modification_date\": \"2025-10-30T15:43:18.695512+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1820" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5ce8fcf5-14ba-4f70-8293-66f20f420977 + status: 200 OK + code: 200 + duration: 148.816861ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"8fda71ed-de5d-4f67-9b33-c111581c74ed\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bbf82ede-e778-4966-b2e5-95fd8ecebaa3 + status: 200 OK + code: 200 + duration: 127.726199ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1774 + body: "{\"server\": {\"id\": \"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"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\": \"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:11\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:18.695512+00:00\", \"modification_date\": \"2025-10-30T15:43:18.695512+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8f6db770-8b5e-4b20-a986-a45cc76f17d4 + status: 200 OK + code: 200 + duration: 129.823823ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2fcb3afe-07ab-4f40-8bac-b6cf37021195 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"2fcb3afe-07ab-4f40-8bac-b6cf37021195\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9a6cc5bd-bce5-4075-99df-56917e96c077 + status: 404 Not Found + code: 404 + duration: 30.058677ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2fcb3afe-07ab-4f40-8bac-b6cf37021195 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"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-30T15:43:18.847477Z\", \"updated_at\":\"2025-10-30T15:43:18.847477Z\", \"references\":[{\"id\":\"e7264901-8616-4921-a208-27c035cb734c\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"created_at\":\"2025-10-30T15:43:18.847477Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dfb5729b-08f7-4994-88ad-2e6ccbb801c1 + status: 200 OK + code: 200 + duration: 94.982856ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2dde31a7-9406-4e04-9153-2ded05eafe36 + status: 200 OK + code: 200 + duration: 88.199862ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 49750476-9347-4942-906c-848c86fdd5d2 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 104.058099ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1820 + body: "{\"server\": {\"id\": \"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"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\": \"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:11\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:18.695512+00:00\", \"modification_date\": \"2025-10-30T15:43:18.695512+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1820" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 532ff3ea-c74e-4c17-8ed6-737ea6c827b0 + status: 200 OK + code: 200 + duration: 118.087567ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1774 + body: "{\"server\": {\"id\": \"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"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\": \"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:11\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:18.695512+00:00\", \"modification_date\": \"2025-10-30T15:43:18.695512+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1476d408-4c00-40b5-b8f3-d96595e6706b + status: 200 OK + code: 200 + duration: 150.376568ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5a613898-d324-4f57-8b42-e1ab7843a0a4 + status: 204 No Content + code: 204 + duration: 316.913801ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2fcb3afe-07ab-4f40-8bac-b6cf37021195 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"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-30T15:43:18.847477Z\", \"updated_at\":\"2025-10-30T15:43:18.847477Z\", \"references\":[{\"id\":\"e7264901-8616-4921-a208-27c035cb734c\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"created_at\":\"2025-10-30T15:43:18.847477Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3d42812e-52a0-4e2e-8316-73bbc9e86e70 + status: 200 OK + code: 200 + duration: 80.019476ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"7c513988-85c2-4197-ae6b-88f6d278106a\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/204b86bc-2122-42f2-bc4c-05ca820f395f/action\", \"href_result\": \"/servers/204b86bc-2122-42f2-bc4c-05ca820f395f\", \"started_at\": \"2025-10-30T15:43:25.092935+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7c513988-85c2-4197-ae6b-88f6d278106a + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3d567b16-e61b-4b89-9437-83255562f474 + status: 202 Accepted + code: 202 + duration: 246.115903ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1796 + body: "{\"server\": {\"id\": \"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"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\": \"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"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:6d:11\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:18.695512+00:00\", \"modification_date\": \"2025-10-30T15:43:24.907898+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 45ec1afc-3eb1-4d80-9249-8163ef28119f + status: 200 OK + code: 200 + duration: 334.616419ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1975 + body: "{\"server\": {\"id\": \"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"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\": \"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"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:6d:11\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:18.695512+00:00\", \"modification_date\": \"2025-10-30T15:43:26.935542+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"14\", \"hypervisor_id\": \"501\", \"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: + - "1975" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7f957572-9e2f-4a07-b2f7-324eb6dfc791 + status: 200 OK + code: 200 + duration: 144.468276ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"28a3fa2d-86f4-4806-83f5-d4a4bf4a3aa2\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/204b86bc-2122-42f2-bc4c-05ca820f395f/action\", \"href_result\": \"/servers/204b86bc-2122-42f2-bc4c-05ca820f395f\", \"started_at\": \"2025-10-30T15:43:30.843808+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/28a3fa2d-86f4-4806-83f5-d4a4bf4a3aa2 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7c48d592-723f-47b2-bc97-57ba3dd7ecff + status: 202 Accepted + code: 202 + duration: 268.711442ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1892 + body: "{\"server\": {\"id\": \"204b86bc-2122-42f2-bc4c-05ca820f395f\", \"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\": \"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"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:6d:11\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:18.695512+00:00\", \"modification_date\": \"2025-10-30T15:43:30.631704+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"14\", \"hypervisor_id\": \"501\", \"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: + - "1892" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 35c11bf4-5e01-4277-9691-4b219635a86a + status: 200 OK + code: 200 + duration: 147.954416ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"204b86bc-2122-42f2-bc4c-05ca820f395f\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f9124364-cf94-4966-9173-96c3b5028bfa + status: 404 Not Found + code: 404 + duration: 51.28223ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2fcb3afe-07ab-4f40-8bac-b6cf37021195 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"2fcb3afe-07ab-4f40-8bac-b6cf37021195\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e5d1bf8a-52f4-48d8-871e-595af8ffcdd8 + status: 404 Not Found + code: 404 + duration: 39.829446ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2fcb3afe-07ab-4f40-8bac-b6cf37021195 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 498 + body: "{\"id\":\"2fcb3afe-07ab-4f40-8bac-b6cf37021195\", \"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-30T15:43:18.847477Z\", \"updated_at\":\"2025-10-30T15:43:32.358378Z\", \"references\":[], \"parent_snapshot_id\":\"36b4ce54-c67a-4f68-ab74-839515834352\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:43:32.358378Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "498" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6a50f9a4-1123-470f-8dae-2a251c5a85cf + status: 200 OK + code: 200 + duration: 87.798802ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2fcb3afe-07ab-4f40-8bac-b6cf37021195 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ed140540-fde2-494c-8218-3732933e6b90 + status: 204 No Content + code: 204 + duration: 165.474383ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/204b86bc-2122-42f2-bc4c-05ca820f395f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"204b86bc-2122-42f2-bc4c-05ca820f395f\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 44a41d17-51b4-408f-b35f-57d9bf11d244 + status: 404 Not Found + code: 404 + duration: 43.259491ms diff --git a/internal/services/instance/testdata/server-ips.cassette.yaml b/internal/services/instance/testdata/server-ips.cassette.yaml index b4f98113b..5e2ebf325 100644 --- a/internal/services/instance/testdata/server-ips.cassette.yaml +++ b/internal/services/instance/testdata/server-ips.cassette.yaml @@ -1,3529 +1,2783 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 71 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf","type":"routed_ipv4"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:50 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 81e3aabf-b082-4734-8589-b3d56d217106 - status: 201 Created - code: 201 - duration: 454.967413ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b93b0298-510a-42f8-9695-6a3c9019bcb9 - status: 200 OK - code: 200 - duration: 109.226241ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:50 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9b09359f-e7e8-4dac-985b-c38dcfdfc4d4 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 40.491779ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:50 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c7eb5256-09ec-42ff-8872-bb22e92ba0e7 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 42.789044ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d6f2acaf-84f0-43ed-8929-29d22f71f990 - status: 200 OK - code: 200 - duration: 47.013433ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 297 - transfer_encoding: [] - trailer: {} - 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":["8f457b60-852b-44a2-9bba-c98d7f41b8c3"],"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2330 - uncompressed: false - 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: - - "2330" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:51 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 46a6ff76-fd25-4a75-9486-ac716e0692d4 - status: 201 Created - code: 201 - duration: 1.350275124s - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2330 - uncompressed: false - 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: - - "2330" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6dfb5a0c-c9fc-4d65-b2d7-76306fae19ec - status: 200 OK - code: 200 - duration: 140.28542ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2284 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c476e488-80c1-44dd-802a-021c9454698e - status: 200 OK - code: 200 - duration: 140.113148ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2330 - uncompressed: false - 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: - - "2330" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f64a919d-b60f-43fd-8a7b-f7621c470336 - status: 200 OK - code: 200 - duration: 168.972394ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 - 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": "712b455d-8658-4799-a503-0529707a39b1"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 87fe52a2-0789-45dd-a89c-6aafa6e7edf1 - status: 404 Not Found - code: 404 - duration: 28.842114ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7830b688-fc66-4f26-abed-4b7851156b51 - status: 200 OK - code: 200 - duration: 84.95808ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/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:54:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 754cbd15-57f1-4e15-b964-2ff6a01208d6 - status: 200 OK - code: 200 - duration: 87.941919ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/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:54:52 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 224ea1d5-531e-4c28-b24c-9d815e35c7e3 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 113.01726ms - - 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/9f79c57c-85c0-4145-aa58-f42579cc9861/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:54:52 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6072e890-a999-4d8e-9981-32f6f038b52f - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 88.552571ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 447 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aa72106d-f70b-46f3-9e42-acec6a5c5c74 - status: 200 OK - code: 200 - duration: 144.531841ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2284 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 31cf390c-382c-4b0e-b23d-c885e8945ec6 - status: 200 OK - code: 200 - duration: 137.230918ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 - 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": "712b455d-8658-4799-a503-0529707a39b1"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ccd95e50-a9bd-46bd-a0fe-256fe4c2b5c7 - status: 404 Not Found - code: 404 - duration: 28.300301ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8911163c-63dd-4687-8101-8a34bae92d02 - status: 200 OK - code: 200 - duration: 75.282446ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/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:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ee89d3dd-7523-46ac-be48-cde3cf92b923 - status: 200 OK - code: 200 - duration: 96.552531ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/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:54:53 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f5f7fbef-cfda-4cb7-a280-8240aa81a181 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 109.651125ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 447 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b57f4e2f-2e53-4135-bed5-184b03e18d36 - status: 200 OK - code: 200 - duration: 118.592786ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2284 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 99c17ceb-1977-4e90-a552-9f012a48b375 - status: 200 OK - code: 200 - duration: 144.37073ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 - 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": "712b455d-8658-4799-a503-0529707a39b1"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e90d3a6d-9539-4b34-ba37-a93f276ea8e7 - status: 404 Not Found - code: 404 - duration: 28.255076ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - baca0b3f-9601-43e5-bbd6-6e1a8c5f7f77 - status: 200 OK - code: 200 - duration: 93.263792ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/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:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6feb979d-36ba-4f0e-82d6-f97e9bfa1b0c - status: 200 OK - code: 200 - duration: 104.592005ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/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:54:54 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9c63db3a-bd3e-4293-a386-d0486d55379c - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 93.955836ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 71 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf","type":"routed_ipv4"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 367 - uncompressed: false - 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: - - "367" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a85e640d-e641-4f46-b0cc-373d7632a4a5 - status: 201 Created - code: 201 - duration: 604.592296ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 367 - uncompressed: false - 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: - - "367" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 85a716c1-21fe-44e7-9048-8f6ff5e5e5d9 - status: 200 OK - code: 200 - duration: 113.808831ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2284 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a6879d94-5458-40bb-9308-bd3b4f15da9c - status: 200 OK - code: 200 - duration: 136.313944ms - - 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/9f79c57c-85c0-4145-aa58-f42579cc9861 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2330 - uncompressed: false - 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: - - "2330" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ed34f26d-8362-4d17-ad0d-83901eb7b9c6 - status: 200 OK - code: 200 - duration: 126.745492ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 49 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/5e1fe2cf-537e-4763-9643-89980a20a0b0 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 449 - uncompressed: false - 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: - - "449" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c75f05cd-0274-4edc-a4e9-a1f72b679529 - status: 200 OK - code: 200 - duration: 473.731299ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2555 - uncompressed: false - 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: - - "2555" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 355982f2-750b-4df4-9bb5-46485f72577d - status: 200 OK - code: 200 - duration: 147.782981ms - - 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/9f79c57c-85c0-4145-aa58-f42579cc9861 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2555 - uncompressed: false - 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: - - "2555" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e0c468e5-7227-44bb-8338-89e280384955 - status: 200 OK - code: 200 - duration: 134.250745ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 - 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": "712b455d-8658-4799-a503-0529707a39b1"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 76eba48d-1ccb-47d5-a3f8-0b139759e4e0 - status: 404 Not Found - code: 404 - duration: 29.867862ms - - 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/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: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0ced05f8-f107-42c9-b023-0ecf863f4697 - status: 200 OK - code: 200 - duration: 76.084307ms - - 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/9f79c57c-85c0-4145-aa58-f42579cc9861/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:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 17c56022-7b62-4fdb-aab5-7f3f0f206689 - status: 200 OK - code: 200 - duration: 101.483152ms - - 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/9f79c57c-85c0-4145-aa58-f42579cc9861/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:54:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f4bdc601-a0a6-4666-955e-da739226dac7 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 101.414775ms - - 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/9f79c57c-85c0-4145-aa58-f42579cc9861/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:54:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 06898406-88ce-4111-b100-976091381f3a - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 105.202828ms - - 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/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 449 - uncompressed: false - 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: - - "449" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 48807e72-f7a5-41b5-bdea-68805aeaa106 - status: 200 OK - code: 200 - duration: 115.165758ms - - 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/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 447 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 47fc5d90-3c62-41af-9867-fc588cd3a932 - status: 200 OK - code: 200 - duration: 123.473584ms - - 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/9f79c57c-85c0-4145-aa58-f42579cc9861 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2601 - uncompressed: false - 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: - - "2601" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d510f0bf-36d6-4411-a6ce-ec8ef87e3c0f - status: 200 OK - code: 200 - duration: 142.187348ms - - 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/volumes/712b455d-8658-4799-a503-0529707a39b1 - 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": "712b455d-8658-4799-a503-0529707a39b1"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 437a1a18-ab6a-4043-a109-5ef7c0d23047 - status: 404 Not Found - code: 404 - duration: 24.48654ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bd8ba458-def3-4e93-a402-3414f245387a - status: 200 OK - code: 200 - duration: 78.373488ms - - 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/9f79c57c-85c0-4145-aa58-f42579cc9861/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:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 47683ac7-b4f9-4548-a8be-89a1811adfc8 - status: 200 OK - code: 200 - duration: 87.659381ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/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:54:57 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - deb001b1-8176-4978-987a-bbc78090c383 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 84.412561ms - - 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/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 447 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6566178e-0bf1-4ae5-9471-277033903eed - status: 200 OK - code: 200 - duration: 121.974751ms - - 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/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 449 - uncompressed: false - 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: - - "449" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 67ea2581-2121-42ad-aa27-be84961d1bdf - status: 200 OK - code: 200 - duration: 124.006892ms - - 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/9f79c57c-85c0-4145-aa58-f42579cc9861 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2555 - uncompressed: false - 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: - - "2555" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 79731bcc-9dcf-48b0-b88b-9d9add4d9d8b - status: 200 OK - code: 200 - duration: 129.515903ms - - 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/volumes/712b455d-8658-4799-a503-0529707a39b1 - 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": "712b455d-8658-4799-a503-0529707a39b1"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4d07af75-7415-4f4b-8d4e-f8d300baa61b - status: 404 Not Found - code: 404 - duration: 28.64178ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e7e21b0a-52b7-43c4-b9a5-b523b03502ee - status: 200 OK - code: 200 - duration: 78.455781ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/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:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4e0a715a-fb7e-4feb-a8ed-0860426c650f - status: 200 OK - code: 200 - duration: 118.421377ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/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:54:58 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e3952dce-050b-430e-9d6b-b12ae90e5b23 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 106.118841ms - - 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/9f79c57c-85c0-4145-aa58-f42579cc9861 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2555 - uncompressed: false - 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: - - "2555" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4a87097d-4b29-4763-8486-2093fb3b438d - status: 200 OK - code: 200 - duration: 148.385348ms - - 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/9f79c57c-85c0-4145-aa58-f42579cc9861 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2555 - uncompressed: false - 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: - - "2555" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5c790f3d-c784-4365-b0c9-715078855f31 - status: 200 OK - code: 200 - duration: 174.435673ms - - id: 54 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 15 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"server":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/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 787176db-42c7-463d-a5cf-1b749b0c0cc0 - status: 200 OK - code: 200 - duration: 507.542751ms - - 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/9f79c57c-85c0-4145-aa58-f42579cc9861 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2334 - uncompressed: false - 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: - - "2334" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 65b6365d-ccd8-485a-bca9-3d210645cab0 - status: 200 OK - code: 200 - duration: 149.663149ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2334 - uncompressed: false - 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: - - "2334" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 355c4b62-9734-480a-b42a-de507bc7d243 - status: 200 OK - code: 200 - duration: 150.190586ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 - 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": "712b455d-8658-4799-a503-0529707a39b1"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2cd97487-6d4b-4c13-83b6-f0d3cd6b7d69 - status: 404 Not Found - code: 404 - duration: 27.506267ms - - id: 58 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c6716167-deff-4368-89bb-7b32c96d4fee - status: 200 OK - code: 200 - duration: 82.395158ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/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:54:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a3ba7f9b-b80f-4be1-a531-40accb04625f - status: 200 OK - code: 200 - duration: 108.575956ms - - 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/9f79c57c-85c0-4145-aa58-f42579cc9861/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:55:00 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6543e2b0-5f4e-4c9b-8175-d209ac54d540 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 84.622203ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/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:55:00 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 28a3d722-9394-459d-89f6-0e81f1518794 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 115.956488ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 03d0a270-29b8-4dd2-9a4c-5f40c343b026 - status: 200 OK - code: 200 - duration: 113.607686ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 449 - uncompressed: false - 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: - - "449" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5d5b579b-deda-48ae-9a82-e8107969c856 - status: 200 OK - code: 200 - duration: 119.06977ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2288 - uncompressed: false - 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: - - "2288" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fd8dcf35-1339-4efb-9862-e9d84fa337c2 - status: 200 OK - code: 200 - duration: 162.735556ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 - 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": "712b455d-8658-4799-a503-0529707a39b1"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a5bbf741-a769-44a2-9693-8d2c4c7fa219 - status: 404 Not Found - code: 404 - duration: 41.945187ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f591fc8a-67e4-4c52-8014-2474da554623 - status: 200 OK - code: 200 - duration: 105.202627ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/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:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dc15dd87-96c2-48db-982e-464e8484e959 - status: 200 OK - code: 200 - duration: 121.226373ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861/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:55:01 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a86fd137-73af-4fa5-aa99-eab89546aa12 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 146.532484ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2334 - uncompressed: false - 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: - - "2334" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7bb534c3-1038-4cec-8985-278ef768abdb - status: 200 OK - code: 200 - duration: 152.067085ms - - 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/9f79c57c-85c0-4145-aa58-f42579cc9861 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2334 - uncompressed: false - 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: - - "2334" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fe6773b8-2d90-4891-b8a6-d8cbf791ad7f - status: 200 OK - code: 200 - duration: 144.488763ms - - 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/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - 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:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bbc67a96-58ca-49b6-8d6d-1528ce501a77 - status: 204 No Content - code: 204 - duration: 377.189523ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d3573286-a056-4b98-a343-5f94376653f2 - status: 200 OK - code: 200 - duration: 85.013475ms - - id: 73 - 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/9f79c57c-85c0-4145-aa58-f42579cc9861/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:02 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fc856498-d0f7-4117-a4c7-44e8f05b149b - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 01d0b76f-6d1d-41e7-acba-f79d765018bb - status: 202 Accepted - code: 202 - duration: 368.57769ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2310 - uncompressed: false - 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: - - "2310" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c8eaf130-c792-4d91-a733-b862a8604639 - status: 200 OK - code: 200 - duration: 144.570326ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2444 - uncompressed: false - 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: - - "2444" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0581cff5-6d01-462f-96cc-a08a91d4219f - status: 200 OK - code: 200 - duration: 133.112772ms - - id: 76 - 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/9f79c57c-85c0-4145-aa58-f42579cc9861/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1e7c6b19-df9b-4e1f-93e6-e3b68e7c1571 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 86e603a0-f7f5-4e4e-9d61-8c61f869458a - status: 202 Accepted - code: 202 - duration: 275.898885ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2453 - uncompressed: false - 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: - - "2453" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 84c6a533-db32-4e95-ab7d-ccdc1b9ac089 - status: 200 OK - code: 200 - duration: 132.217498ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 - 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": "9f79c57c-85c0-4145-aa58-f42579cc9861"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 633bbe30-6803-4f8f-a0c9-e10285fa5081 - status: 404 Not Found - code: 404 - duration: 53.687206ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 - 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": "712b455d-8658-4799-a503-0529707a39b1"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5ea9433d-f370-417b-8ac6-c599470adb2f - status: 404 Not Found - code: 404 - duration: 24.749281ms - - id: 80 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 498 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ca0fb298-2411-409e-8576-ab6662baa57a - status: 200 OK - code: 200 - duration: 77.59761ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/712b455d-8658-4799-a503-0529707a39b1 - 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:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 408c1f84-bcc2-4bd3-8290-0359cec133cd - status: 204 No Content - code: 204 - duration: 154.330633ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 - 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:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d1327346-161a-48b5-b8c9-3c806e71389a - status: 204 No Content - code: 204 - duration: 360.227184ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f79c57c-85c0-4145-aa58-f42579cc9861 - 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": "9f79c57c-85c0-4145-aa58-f42579cc9861"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bb8b6d98-4211-4155-9805-4ceef5bd30a4 - status: 404 Not Found - code: 404 - duration: 54.471022ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 71 + host: api.scaleway.com + body: "{\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"type\":\"routed_ipv4\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b208f0ca-1bef-44a2-b6bd-8d608ae61d02 + status: 201 Created + code: 201 + duration: 578.23413ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1faa61e1-1935-429d-be82-a55fe69825fb + status: 200 OK + code: 200 + duration: 136.971039ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ba2387b6-a492-4b4c-9666-821f1bbeb122 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 46.001162ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 137e8e5c-9bbc-422a-a376-e663b8e22f48 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 37.207726ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/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 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e2a486f0-247a-40a6-a714-82e0c050458b + status: 200 OK + code: 200 + duration: 70.06931ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 297 + host: api.scaleway.com + 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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2330 + body: "{\"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}, \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}], \"mac_address\": \"de:00:00:d0:6d:15\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:20.421423+00:00\", \"modification_date\": \"2025-10-30T15:43:20.421423+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2330" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eb7a1fb0-eebd-4d5e-8824-3fb9bade8c15 + status: 201 Created + code: 201 + duration: 1.470024512s +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2330 + body: "{\"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}, \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}], \"mac_address\": \"de:00:00:d0:6d:15\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:20.421423+00:00\", \"modification_date\": \"2025-10-30T15:43:20.421423+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2330" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 23d17f43-6ca8-4236-96f6-aeb38126d873 + status: 200 OK + code: 200 + duration: 158.562412ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2330 + body: "{\"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}, \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}], \"mac_address\": \"de:00:00:d0:6d:15\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:20.421423+00:00\", \"modification_date\": \"2025-10-30T15:43:20.421423+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2330" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 262eedef-5215-4855-bcac-34e821416553 + status: 200 OK + code: 200 + duration: 159.198075ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2330 + body: "{\"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}, \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}], \"mac_address\": \"de:00:00:d0:6d:15\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:20.421423+00:00\", \"modification_date\": \"2025-10-30T15:43:20.421423+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2330" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e1728a23-2f69-41fa-8b6a-4fc58ea81afa + status: 200 OK + code: 200 + duration: 152.261713ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b0c25d32-679f-4724-965c-bf3fab2c1860 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c05db537-91a2-498b-a3f0-178ce1020e20 + status: 404 Not Found + code: 404 + duration: 24.796014ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b0c25d32-679f-4724-965c-bf3fab2c1860 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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-30T15:43:20.561206Z\", \"updated_at\":\"2025-10-30T15:43:20.561206Z\", \"references\":[{\"id\":\"88509e22-f29c-4f12-9f9a-b049dafef035\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"created_at\":\"2025-10-30T15:43:20.561206Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7f790298-1d9d-4855-91ae-c9200b2803f5 + status: 200 OK + code: 200 + duration: 86.547181ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a8f6c1b6-5027-423e-b46d-9235fb4c491d + status: 200 OK + code: 200 + duration: 114.497362ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d85c8fa1-51ce-48fe-aba2-c6de017a64c3 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 92.406563ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f4d30b5f-b7c5-4aab-baa9-191fafffe872 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 131.772058ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 447 + body: "{\"ip\": {\"id\": \"8f457b60-852b-44a2-9bba-c98d7f41b8c3\", \"address\": \"51.15.230.164\", \"prefix\": null, \"reverse\": null, \"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}}" + headers: + Content-Length: + - "447" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d0d85605-660c-4fff-a3c6-1a735ef68d9c + status: 200 OK + code: 200 + duration: 119.375824ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2284 + body: "{\"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}, \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}], \"mac_address\": \"de:00:00:d0:6d:15\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:20.421423+00:00\", \"modification_date\": \"2025-10-30T15:43:20.421423+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 60c5bcdb-d67e-45ef-b338-dd42f5f0ab6d + status: 200 OK + code: 200 + duration: 151.383346ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b0c25d32-679f-4724-965c-bf3fab2c1860 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6d162e24-53f5-4e60-a156-84bcd8ce3475 + status: 404 Not Found + code: 404 + duration: 26.603034ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b0c25d32-679f-4724-965c-bf3fab2c1860 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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-30T15:43:20.561206Z\", \"updated_at\":\"2025-10-30T15:43:20.561206Z\", \"references\":[{\"id\":\"88509e22-f29c-4f12-9f9a-b049dafef035\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"created_at\":\"2025-10-30T15:43:20.561206Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 84b164df-8ee7-42cc-a744-7c181ec6915b + status: 200 OK + code: 200 + duration: 98.079334ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7b99c964-00f9-44ee-8f1d-11ca692b2330 + status: 200 OK + code: 200 + duration: 96.996383ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1b56f98b-9c1c-4b0f-9d17-d7e06e047d29 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 93.05514ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 447 + body: "{\"ip\": {\"id\": \"8f457b60-852b-44a2-9bba-c98d7f41b8c3\", \"address\": \"51.15.230.164\", \"prefix\": null, \"reverse\": null, \"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}}" + headers: + Content-Length: + - "447" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3388b62d-857c-4160-8c71-fcd58752d376 + status: 200 OK + code: 200 + duration: 117.739515ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2330 + body: "{\"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}, \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}], \"mac_address\": \"de:00:00:d0:6d:15\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:20.421423+00:00\", \"modification_date\": \"2025-10-30T15:43:20.421423+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2330" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cbaacf36-f797-4c5a-b299-ab023426488a + status: 200 OK + code: 200 + duration: 184.624011ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b0c25d32-679f-4724-965c-bf3fab2c1860 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c2486210-c808-4c88-80b6-8a9df9f9e8ce + status: 404 Not Found + code: 404 + duration: 56.532898ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b0c25d32-679f-4724-965c-bf3fab2c1860 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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-30T15:43:20.561206Z\", \"updated_at\":\"2025-10-30T15:43:20.561206Z\", \"references\":[{\"id\":\"88509e22-f29c-4f12-9f9a-b049dafef035\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"created_at\":\"2025-10-30T15:43:20.561206Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 40ba72a2-c553-473e-b499-f34a8d2355a4 + status: 200 OK + code: 200 + duration: 79.103468ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 62c4f807-4445-4851-8a70-09d037cad1e8 + status: 200 OK + code: 200 + duration: 84.486025ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:23 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1b48ffa2-cd29-4c95-9529-bcc30895c915 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 93.101066ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 71 + host: api.scaleway.com + body: "{\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"type\":\"routed_ipv4\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 367 + 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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}}" + headers: + Content-Length: + - "367" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a193117e-2b3b-42e7-91e0-d70bacd34f2a + status: 201 Created + code: 201 + duration: 469.021015ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 367 + 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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}}" + headers: + Content-Length: + - "367" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d0616575-5d26-4a6f-af23-33b303e20f06 + status: 200 OK + code: 200 + duration: 112.073326ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2284 + body: "{\"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}, \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}], \"mac_address\": \"de:00:00:d0:6d:15\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:20.421423+00:00\", \"modification_date\": \"2025-10-30T15:43:20.421423+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a374e379-1bbc-4b27-b766-1a68e2f2dcb8 + status: 200 OK + code: 200 + duration: 113.818941ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2284 + body: "{\"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}, \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}], \"mac_address\": \"de:00:00:d0:6d:15\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:20.421423+00:00\", \"modification_date\": \"2025-10-30T15:43:20.421423+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 577c3599-2fde-4c26-8968-7608f90ce644 + status: 200 OK + code: 200 + duration: 138.364264ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 49 + host: api.scaleway.com + body: "{\"server\":\"8e43995e-a092-4b12-9ce4-c6848a66978c\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+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: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 449 + body: "{\"ip\": {\"id\": \"5e1fe2cf-537e-4763-9643-89980a20a0b0\", \"address\": \"163.172.149.221\", \"prefix\": null, \"reverse\": null, \"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}}" + headers: + Content-Length: + - "449" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e00d0d68-5e3e-4939-9fae-be4b1e38eaa8 + status: 200 OK + code: 200 + duration: 512.999744ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2601 + body: "{\"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}, \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}, {\"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}], \"mac_address\": \"de:00:00:d0:6d:15\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:20.421423+00:00\", \"modification_date\": \"2025-10-30T15:43:20.421423+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2601" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 06ed0e81-7eee-46ba-b790-667b5ffead8a + status: 200 OK + code: 200 + duration: 160.036409ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2601 + body: "{\"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}, \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}, {\"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}], \"mac_address\": \"de:00:00:d0:6d:15\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:20.421423+00:00\", \"modification_date\": \"2025-10-30T15:43:20.421423+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2601" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b2f5e963-ed6f-490c-ab6a-343814a1a237 + status: 200 OK + code: 200 + duration: 170.962975ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b0c25d32-679f-4724-965c-bf3fab2c1860 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2ba2ff4f-c611-4084-957c-4e272f165f62 + status: 404 Not Found + code: 404 + duration: 33.292714ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b0c25d32-679f-4724-965c-bf3fab2c1860 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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-30T15:43:20.561206Z\", \"updated_at\":\"2025-10-30T15:43:20.561206Z\", \"references\":[{\"id\":\"88509e22-f29c-4f12-9f9a-b049dafef035\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"created_at\":\"2025-10-30T15:43:20.561206Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c666512d-6aa7-4e66-94d5-5b44bd68638c + status: 200 OK + code: 200 + duration: 90.070591ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e2572e0b-8158-4305-aa7c-f6c53f5da4ec + status: 200 OK + code: 200 + duration: 103.673488ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:25 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ad0d208f-0577-4efb-a899-703ff86442ac + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 91.485205ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:26 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 14822837-1d7b-4bcc-8465-41ba2359708d + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 117.696063ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 449 + body: "{\"ip\": {\"id\": \"5e1fe2cf-537e-4763-9643-89980a20a0b0\", \"address\": \"163.172.149.221\", \"prefix\": null, \"reverse\": null, \"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}}" + headers: + Content-Length: + - "449" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 24b5e047-641e-49dd-9ea9-ec690a541766 + status: 200 OK + code: 200 + duration: 125.822769ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 447 + body: "{\"ip\": {\"id\": \"8f457b60-852b-44a2-9bba-c98d7f41b8c3\", \"address\": \"51.15.230.164\", \"prefix\": null, \"reverse\": null, \"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}}" + headers: + Content-Length: + - "447" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bc069fc8-4e9f-427f-916e-1b7fabbebb5e + status: 200 OK + code: 200 + duration: 129.8435ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2555 + body: "{\"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}, \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}, {\"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}], \"mac_address\": \"de:00:00:d0:6d:15\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:20.421423+00:00\", \"modification_date\": \"2025-10-30T15:43:20.421423+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2555" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cddac6f5-33fa-464e-ad86-df803060a31c + status: 200 OK + code: 200 + duration: 141.136586ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b0c25d32-679f-4724-965c-bf3fab2c1860 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0bbfde57-b3f7-4764-bf93-ab6cba1c9ffe + status: 404 Not Found + code: 404 + duration: 35.522226ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b0c25d32-679f-4724-965c-bf3fab2c1860 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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-30T15:43:20.561206Z\", \"updated_at\":\"2025-10-30T15:43:20.561206Z\", \"references\":[{\"id\":\"88509e22-f29c-4f12-9f9a-b049dafef035\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"created_at\":\"2025-10-30T15:43:20.561206Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3a95594c-3d4b-4c54-ba7c-04d6f1042581 + status: 200 OK + code: 200 + duration: 141.422622ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f118e8de-48a4-4eb8-94c0-dca6920dcf87 + status: 200 OK + code: 200 + duration: 93.500906ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5f1cdafd-d1ff-477b-ab56-331bcc6ff22a + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 97.909356ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 449 + body: "{\"ip\": {\"id\": \"5e1fe2cf-537e-4763-9643-89980a20a0b0\", \"address\": \"163.172.149.221\", \"prefix\": null, \"reverse\": null, \"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}}" + headers: + Content-Length: + - "449" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 18a76e60-47f8-4ecc-a3c0-2d5c68e5fee4 + status: 200 OK + code: 200 + duration: 114.562536ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 447 + body: "{\"ip\": {\"id\": \"8f457b60-852b-44a2-9bba-c98d7f41b8c3\", \"address\": \"51.15.230.164\", \"prefix\": null, \"reverse\": null, \"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}}" + headers: + Content-Length: + - "447" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3bedef1a-eaec-48e9-893f-064a6de1c93f + status: 200 OK + code: 200 + duration: 135.790066ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2601 + body: "{\"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}, \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}, {\"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}], \"mac_address\": \"de:00:00:d0:6d:15\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:20.421423+00:00\", \"modification_date\": \"2025-10-30T15:43:20.421423+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2601" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4d6ebdb1-c7dd-4214-96f9-c5b37019e03b + status: 200 OK + code: 200 + duration: 135.252647ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b0c25d32-679f-4724-965c-bf3fab2c1860 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fe8568ac-bdd4-4f77-8df2-2ce89514f168 + status: 404 Not Found + code: 404 + duration: 27.874219ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b0c25d32-679f-4724-965c-bf3fab2c1860 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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-30T15:43:20.561206Z\", \"updated_at\":\"2025-10-30T15:43:20.561206Z\", \"references\":[{\"id\":\"88509e22-f29c-4f12-9f9a-b049dafef035\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"created_at\":\"2025-10-30T15:43:20.561206Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 21d55798-e225-403b-96ee-bb899601e710 + status: 200 OK + code: 200 + duration: 105.890237ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c434b163-0fb6-4562-9eef-f107da533d2b + status: 200 OK + code: 200 + duration: 101.627341ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b8e6e141-9d21-4f76-9466-e5729b6c7b4e + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 103.012509ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2555 + body: "{\"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}, \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}, {\"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}], \"mac_address\": \"de:00:00:d0:6d:15\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:20.421423+00:00\", \"modification_date\": \"2025-10-30T15:43:20.421423+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2555" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a6f7197d-c392-4e53-9178-56667c5c3c72 + status: 200 OK + code: 200 + duration: 142.055058ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2555 + body: "{\"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}, \"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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}, {\"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}], \"mac_address\": \"de:00:00:d0:6d:15\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:20.421423+00:00\", \"modification_date\": \"2025-10-30T15:43:20.421423+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2555" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0dc16327-fcee-4f62-b646-7bf074933ef5 + status: 200 OK + code: 200 + duration: 161.714117ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 15 + host: api.scaleway.com + body: "{\"server\":null}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a3037e6f-9957-4df1-9c5c-d8981dddb98c + status: 200 OK + code: 200 + duration: 441.732628ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2334 + body: "{\"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}, \"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}], \"mac_address\": \"de:00:00:d0:6d:15\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:20.421423+00:00\", \"modification_date\": \"2025-10-30T15:43:20.421423+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2334" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - af474b75-b91e-4d4e-8a1e-27cb8d99b5e9 + status: 200 OK + code: 200 + duration: 153.688171ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2288 + body: "{\"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}, \"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}], \"mac_address\": \"de:00:00:d0:6d:15\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:20.421423+00:00\", \"modification_date\": \"2025-10-30T15:43:20.421423+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2288" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f0ffa823-48b5-47c9-8792-96e0d3f94871 + status: 200 OK + code: 200 + duration: 122.932708ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b0c25d32-679f-4724-965c-bf3fab2c1860 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 96c1985d-b2c9-4487-bee1-c801aae02e4f + status: 404 Not Found + code: 404 + duration: 39.286826ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b0c25d32-679f-4724-965c-bf3fab2c1860 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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-30T15:43:20.561206Z\", \"updated_at\":\"2025-10-30T15:43:20.561206Z\", \"references\":[{\"id\":\"88509e22-f29c-4f12-9f9a-b049dafef035\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"created_at\":\"2025-10-30T15:43:20.561206Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8cc30c71-4750-4520-b74e-54cc9d5b1487 + status: 200 OK + code: 200 + duration: 107.828103ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d84422b8-a4ee-4ab1-bb00-5612ed39bcda + status: 200 OK + code: 200 + duration: 133.38811ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:29 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b6901166-e0fe-46c9-8513-6c5c202f8f3a + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 123.640826ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:29 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 56aa0359-b248-4a2c-84bc-a209485fb9cf + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 92.99083ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 449 + body: "{\"ip\": {\"id\": \"5e1fe2cf-537e-4763-9643-89980a20a0b0\", \"address\": \"163.172.149.221\", \"prefix\": null, \"reverse\": null, \"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}}" + headers: + Content-Length: + - "449" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b1dc9c86-40e1-4efe-88f4-c437080521d0 + status: 200 OK + code: 200 + duration: 130.500364ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"abe88bf3-dca1-4aeb-9509-f594c0ffae27\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f666a0c8-9070-40a1-bf89-7474e73ef494 + status: 200 OK + code: 200 + duration: 135.7704ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2334 + body: "{\"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}, \"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}], \"mac_address\": \"de:00:00:d0:6d:15\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:20.421423+00:00\", \"modification_date\": \"2025-10-30T15:43:20.421423+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2334" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8b8180a1-32d1-4476-91d7-47daf44b7c0e + status: 200 OK + code: 200 + duration: 155.673405ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b0c25d32-679f-4724-965c-bf3fab2c1860 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9b6dcc83-4263-4320-aed8-432dd036957e + status: 404 Not Found + code: 404 + duration: 25.188952ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b0c25d32-679f-4724-965c-bf3fab2c1860 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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-30T15:43:20.561206Z\", \"updated_at\":\"2025-10-30T15:43:20.561206Z\", \"references\":[{\"id\":\"88509e22-f29c-4f12-9f9a-b049dafef035\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"created_at\":\"2025-10-30T15:43:20.561206Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b9661934-75ed-4287-b022-d9f5a00aaaf4 + status: 200 OK + code: 200 + duration: 95.672009ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 92f1d4d7-ed70-49c3-9604-0a182fe69797 + status: 200 OK + code: 200 + duration: 102.315482ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a2ff19c8-18fb-48a4-bd4e-ab8f758bc784 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 97.232457ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2334 + body: "{\"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}, \"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}], \"mac_address\": \"de:00:00:d0:6d:15\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:20.421423+00:00\", \"modification_date\": \"2025-10-30T15:43:20.421423+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2334" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 55d56da7-5041-4b2a-92a5-d2bfbad3c824 + status: 200 OK + code: 200 + duration: 139.583853ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + 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 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d5d7fa50-fb6b-4753-a18d-41cc89134663 + status: 204 No Content + code: 204 + duration: 280.041546ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2334 + body: "{\"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}, \"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}], \"mac_address\": \"de:00:00:d0:6d:15\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:20.421423+00:00\", \"modification_date\": \"2025-10-30T15:43:20.421423+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2334" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5e505066-99b2-462a-af7a-557b8cb96a2c + status: 200 OK + code: 200 + duration: 167.991914ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b0c25d32-679f-4724-965c-bf3fab2c1860 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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-30T15:43:20.561206Z\", \"updated_at\":\"2025-10-30T15:43:20.561206Z\", \"references\":[{\"id\":\"88509e22-f29c-4f12-9f9a-b049dafef035\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"created_at\":\"2025-10-30T15:43:20.561206Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3646df83-80ab-41a0-9acf-c5d4e6d0aea1 + status: 200 OK + code: 200 + duration: 95.820358ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"dc67b743-0063-475f-b7a0-5fdf196d22e8\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/8e43995e-a092-4b12-9ce4-c6848a66978c/action\", \"href_result\": \"/servers/8e43995e-a092-4b12-9ce4-c6848a66978c\", \"started_at\": \"2025-10-30T15:43:31.086125+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:31 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/dc67b743-0063-475f-b7a0-5fdf196d22e8 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e594ff1b-1aee-4228-aafb-c09b847ab352 + status: 202 Accepted + code: 202 + duration: 276.570854ms +- id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2310 + body: "{\"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}, \"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}], \"mac_address\": \"de:00:00:d0:6d:15\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:20.421423+00:00\", \"modification_date\": \"2025-10-30T15:43:30.865266+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: + - "2310" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4acca576-2d9d-4b57-b9e4-40fbf2794233 + status: 200 OK + code: 200 + duration: 152.16218ms +- id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2490 + body: "{\"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}, \"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}], \"mac_address\": \"de:00:00:d0:6d:15\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:20.421423+00:00\", \"modification_date\": \"2025-10-30T15:43:33.004387+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"20\", \"hypervisor_id\": \"501\", \"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: + - "2490" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 95c5ea79-b6c9-449c-9d88-d6cf570112c4 + status: 200 OK + code: 200 + duration: 142.946453ms +- id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"010bfaad-d447-4da6-a7bd-3595b96b64a7\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/8e43995e-a092-4b12-9ce4-c6848a66978c/action\", \"href_result\": \"/servers/8e43995e-a092-4b12-9ce4-c6848a66978c\", \"started_at\": \"2025-10-30T15:43:36.710962+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/010bfaad-d447-4da6-a7bd-3595b96b64a7 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c71af553-a330-4b5a-abab-b928929841fa + status: 202 Accepted + code: 202 + duration: 332.369411ms +- id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2453 + body: "{\"server\": {\"id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\", \"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\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}, \"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\": \"b00f9985-341c-4511-af1e-ca90161adfeb\"}], \"mac_address\": \"de:00:00:d0:6d:15\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:20.421423+00:00\", \"modification_date\": \"2025-10-30T15:43:36.473667+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"20\", \"hypervisor_id\": \"501\", \"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: + - "2453" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8cabace6-5e13-4412-a291-db99e029748c + status: 200 OK + code: 200 + duration: 188.857216ms +- id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f5cc27eb-9cd5-47d0-a234-0955a1c28718 + status: 404 Not Found + code: 404 + duration: 53.65415ms +- id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b0c25d32-679f-4724-965c-bf3fab2c1860 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"b0c25d32-679f-4724-965c-bf3fab2c1860\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 012c503d-a0b5-4618-865a-4151bd6880e6 + status: 404 Not Found + code: 404 + duration: 31.538804ms +- id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b0c25d32-679f-4724-965c-bf3fab2c1860 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 498 + body: "{\"id\":\"b0c25d32-679f-4724-965c-bf3fab2c1860\", \"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-30T15:43:20.561206Z\", \"updated_at\":\"2025-10-30T15:43:38.184821Z\", \"references\":[], \"parent_snapshot_id\":\"36b4ce54-c67a-4f68-ab74-839515834352\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:43:38.184821Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "498" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9861322e-2088-4f48-8280-148bc7053146 + status: 200 OK + code: 200 + duration: 90.945986ms +- id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b0c25d32-679f-4724-965c-bf3fab2c1860 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ae25de7c-1b64-4d68-bc70-f5c0280e7bb0 + status: 204 No Content + code: 204 + duration: 163.693394ms +- id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eb8c35b7-a1cd-4795-8b5f-dd5ec22097e9 + status: 204 No Content + code: 204 + duration: 348.286433ms +- id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8e43995e-a092-4b12-9ce4-c6848a66978c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"8e43995e-a092-4b12-9ce4-c6848a66978c\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 41ff1a2a-6023-4636-8d45-89f2bde81a8e + status: 404 Not Found + code: 404 + duration: 50.763537ms diff --git a/internal/services/instance/testdata/server-ipv6.cassette.yaml b/internal/services/instance/testdata/server-ipv6.cassette.yaml index fc10b42d5..ff916a727 100644 --- a/internal/services/instance/testdata/server-ipv6.cassette.yaml +++ b/internal/services/instance/testdata/server-ipv6.cassette.yaml @@ -1,2351 +1,1854 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 71 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf","type":"routed_ipv6"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 374 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d91b4944-a55e-4ae2-8f8c-2001e971a699 - status: 201 Created - code: 201 - duration: 743.347618ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 374 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1934912b-d1d2-4a4e-93b1-e88000b72d66 - status: 200 OK - code: 200 - duration: 120.711916ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 72a3374e-e0a3-4883-92c5-a1303b1d0f7e - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 48.080603ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 859abbfa-e011-4f62-9cdd-5d534ad3b9bb - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 37.569146ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8ee98806-17e6-4542-b03a-6a22bc73c752 - status: 200 OK - code: 200 - duration: 47.218932ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 293 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2344 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2a8756db-eaec-44e1-999e-8cc621fc787e - status: 201 Created - code: 201 - duration: 1.598267479s - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2344 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - de393e26-7f69-4cd1-8af1-21d7988e972d - status: 200 OK - code: 200 - duration: 130.979317ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2344 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 28723a25-5e2e-4699-8d1b-e4f37eaa3815 - status: 200 OK - code: 200 - duration: 176.528446ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 67da4fec-bab9-42d5-99f9-924a16f0d49d - status: 200 OK - code: 200 - duration: 76.402136ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweron"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bad57b20-a235-45b9-9a78-cd6b163ce8de - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d60fe699-8b31-4c89-aba7-b805b0adffb9 - status: 202 Accepted - code: 202 - duration: 288.363093ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2366 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ff9a32b2-7159-4d53-a27f-3a54fbebffb0 - status: 200 OK - code: 200 - duration: 145.657437ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2544 - uncompressed: false - 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: - - "2544" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3e8bdff6-a647-4809-bf81-51294b96fae6 - status: 200 OK - code: 200 - duration: 143.659662ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2498 - uncompressed: false - 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: - - "2498" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e130ceb9-f3b4-4e30-b5e1-abe72ce8db71 - status: 200 OK - code: 200 - duration: 153.110405ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 - 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": "6abc06b0-2146-491f-9219-8e3c68fe3f66"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 97c182ae-f138-484b-8103-eb1326d60e1e - status: 404 Not Found - code: 404 - duration: 27.646049ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b29f1aa1-ecc3-4fc3-a957-48d5d595ad47 - status: 200 OK - code: 200 - duration: 93.160947ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/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:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f4d8ee8e-c93d-4e21-be65-5fc4484d867c - status: 200 OK - code: 200 - duration: 93.704212ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/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:55:26 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ed828b94-401a-4866-a59b-9233d908913f - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 90.283506ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2544 - uncompressed: false - 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: - - "2544" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 52129b72-d7aa-407d-a255-5edab2cc4274 - status: 200 OK - code: 200 - duration: 130.063737ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 450 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e2f64dd7-ea59-4d06-a725-e2847cae4a0d - status: 200 OK - code: 200 - duration: 109.532252ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2498 - uncompressed: false - 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: - - "2498" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5722626d-3568-4f27-920f-1b64df846d65 - status: 200 OK - code: 200 - duration: 144.033582ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 - 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": "6abc06b0-2146-491f-9219-8e3c68fe3f66"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d1a097f0-8c36-4088-8808-26a755fe130b - status: 404 Not Found - code: 404 - duration: 34.236534ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 478a393e-cdff-43af-a676-b79530cefd56 - status: 200 OK - code: 200 - duration: 92.562738ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/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:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 17a90251-922b-4922-a504-cb3e066e22a4 - status: 200 OK - code: 200 - duration: 102.262788ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/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:55:27 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d5c709ed-4945-408c-ae09-9e0faadd4a98 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 86.731374ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 450 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ebfafaa7-afea-499a-b807-4c54efe96270 - status: 200 OK - code: 200 - duration: 120.309697ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2544 - uncompressed: false - 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: - - "2544" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ba17efa8-10a0-4776-b1f3-e34cb05d2d94 - status: 200 OK - code: 200 - duration: 142.108422ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 - 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": "6abc06b0-2146-491f-9219-8e3c68fe3f66"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 24fc3288-3636-401f-bdcb-74fc71fa98fa - status: 404 Not Found - code: 404 - duration: 30.761577ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bd338061-3a63-4acb-8978-f3e70fea6cbc - status: 200 OK - code: 200 - duration: 83.513496ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/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:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - df0cfb0b-a106-4bc8-9aee-fa08e34ba498 - status: 200 OK - code: 200 - duration: 99.249753ms - - 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/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/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:55:27 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f7eace57-64ad-4211-8b8f-77a11c19d6ed - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 94.698422ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 - 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:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 30ced8ec-47ea-4b1d-bac0-07677af5ccbb - status: 204 No Content - code: 204 - duration: 604.57145ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1944 - uncompressed: false - 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: - - "1944" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ab11622b-dfa9-4d44-8a03-4ff5480f7ac9 - status: 200 OK - code: 200 - duration: 130.130653ms - - 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/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1898 - uncompressed: false - 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: - - "1898" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 901f839f-57d6-495f-a717-2464a3cb9d67 - status: 200 OK - code: 200 - duration: 142.429413ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1944 - uncompressed: false - 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: - - "1944" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a23d9d04-f716-4ca6-afd1-4c3b6736d081 - status: 200 OK - code: 200 - duration: 136.551061ms - - 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/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1944 - uncompressed: false - 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: - - "1944" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fc358cd1-e726-496c-a4cb-81b1d734b52a - status: 200 OK - code: 200 - duration: 138.950198ms - - 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/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 - 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": "6abc06b0-2146-491f-9219-8e3c68fe3f66"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6cc43374-8bcf-4ff9-b00e-9422b3583fce - status: 404 Not Found - code: 404 - duration: 30.697396ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 497dd372-de6b-4767-a970-66f7b784279f - status: 200 OK - code: 200 - duration: 83.6175ms - - 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/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/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:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6ef099f4-3c15-4b3e-860a-031b4a825c48 - status: 200 OK - code: 200 - duration: 111.404655ms - - 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/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/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:55:29 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a4378c11-1bef-4a6f-acf4-841168295e45 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 101.165867ms - - 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/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1944 - uncompressed: false - 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: - - "1944" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c2025636-6dba-4000-add6-66bfea1814aa - status: 200 OK - code: 200 - duration: 156.019227ms - - 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/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1898 - uncompressed: false - 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: - - "1898" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - de2c7a21-ad99-4d88-94e5-b13f0d45b6ee - status: 200 OK - code: 200 - duration: 150.921345ms - - 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/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 - 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": "6abc06b0-2146-491f-9219-8e3c68fe3f66"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cc159f15-5a91-4cf7-8b25-bfdff9541ddb - status: 404 Not Found - code: 404 - duration: 27.15918ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1fbe678f-ff50-463d-ad2c-0d0437f8939f - status: 200 OK - code: 200 - duration: 98.084335ms - - 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/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/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:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9f9e7e49-4718-41bc-b586-f4c0e9f108ef - status: 200 OK - code: 200 - duration: 91.597194ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/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:55:30 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6ba775b0-bf95-43ae-80a0-7a30ee554380 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 89.252979ms - - 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/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1944 - uncompressed: false - 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: - - "1944" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4dcf9fb0-4cd1-4517-b623-ed59caea34ba - status: 200 OK - code: 200 - duration: 119.38524ms - - 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/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1898 - uncompressed: false - 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: - - "1898" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 09c42a18-92e6-4f6e-be19-b96cc817f50b - status: 200 OK - code: 200 - duration: 119.467874ms - - id: 47 - 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/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:31 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/755659fb-fb17-4231-8dae-ef8eeffad1b8 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bd6d2ebc-eb85-482f-8840-dfe580437a0d - status: 202 Accepted - code: 202 - duration: 301.714577ms - - 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/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1907 - uncompressed: false - 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: - - "1907" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 82273e6e-f64e-4aaa-bf77-7d28643641dc - status: 200 OK - code: 200 - duration: 134.614539ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1861 - uncompressed: false - 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: - - "1861" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 66b4f162-4534-4696-a9ce-992c3733b214 - status: 200 OK - code: 200 - duration: 151.461566ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1907 - uncompressed: false - 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: - - "1907" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e2b50d13-412b-459c-ad03-e4e0efd4eef4 - status: 200 OK - code: 200 - duration: 132.099388ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd - 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": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 29bb8039-08d3-42d6-b1d8-04f4f8807a2b - status: 404 Not Found - code: 404 - duration: 52.086458ms - - 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/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 - 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": "6abc06b0-2146-491f-9219-8e3c68fe3f66"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4d9f5347-a39a-4f8f-beaf-4443d815512b - status: 404 Not Found - code: 404 - duration: 27.160243ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 27a0fa8f-c681-457c-b114-fc229f80b187 - status: 200 OK - code: 200 - duration: 92.220883ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/6abc06b0-2146-491f-9219-8e3c68fe3f66 - 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:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c3964a96-6cc7-48b3-8fbd-c87b46016c68 - status: 204 No Content - code: 204 - duration: 148.115171ms - - 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/51e8f780-f6c0-425d-9e8a-ffc8792fa4cd - 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": "51e8f780-f6c0-425d-9e8a-ffc8792fa4cd"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8949787b-47e5-4a91-9d66-cdf9795e325b - status: 404 Not Found - code: 404 - duration: 46.851968ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 71 + host: api.scaleway.com + body: "{\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"type\":\"routed_ipv6\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 374 + body: "{\"ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": null, \"prefix\": \"2001:bc8:710:404a::/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\": \"e0ea1768-898f-49b6-88d9-e5be2cb603f1\"}}" + headers: + Content-Length: + - "374" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:12 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 822d5688-15f2-46f8-ae48-e5b16a6a1859 + status: 201 Created + code: 201 + duration: 834.136696ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 374 + body: "{\"ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": null, \"prefix\": \"2001:bc8:710:404a::/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\": \"e0ea1768-898f-49b6-88d9-e5be2cb603f1\"}}" + headers: + Content-Length: + - "374" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0765aedd-6b25-41b0-b91d-81e403de0908 + status: 200 OK + code: 200 + duration: 129.590958ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:12 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ab6a8f42-2618-4065-8a5d-b67dd97468f6 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 48.635697ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:13 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 80792ebe-976e-41d7-88ac-a0b77ff43216 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 91.567486ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eb68c0c3-dea4-44cf-b392-f2542385b835 + status: 200 OK + code: 200 + duration: 47.249778ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 293 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-upbeat-torvalds\",\"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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2344 + body: "{\"server\": {\"id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"name\": \"tf-srv-upbeat-torvalds\", \"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-upbeat-torvalds\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6ccd\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cce\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e0ea1768-898f-49b6-88d9-e5be2cb603f1\"}, \"public_ips\": [{\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6ccd\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cce\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e0ea1768-898f-49b6-88d9-e5be2cb603f1\"}], \"mac_address\": \"de:00:00:d0:6c:cd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:13.789879+00:00\", \"modification_date\": \"2025-10-30T15:42:13.789879+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:14 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 37147196-db6d-42ca-a8aa-984fae46bd6d + status: 201 Created + code: 201 + duration: 1.564309198s +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2390 + body: "{\"server\": {\"id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"name\": \"tf-srv-upbeat-torvalds\", \"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-upbeat-torvalds\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6ccd\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cce\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e0ea1768-898f-49b6-88d9-e5be2cb603f1\"}, \"public_ips\": [{\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6ccd\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cce\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e0ea1768-898f-49b6-88d9-e5be2cb603f1\"}], \"mac_address\": \"de:00:00:d0:6c:cd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:13.789879+00:00\", \"modification_date\": \"2025-10-30T15:42:13.789879+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2390" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2c46bd81-6f16-439e-9419-6ac1d87effdd + status: 200 OK + code: 200 + duration: 142.683466ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2344 + body: "{\"server\": {\"id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"name\": \"tf-srv-upbeat-torvalds\", \"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-upbeat-torvalds\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6ccd\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cce\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e0ea1768-898f-49b6-88d9-e5be2cb603f1\"}, \"public_ips\": [{\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6ccd\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cce\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e0ea1768-898f-49b6-88d9-e5be2cb603f1\"}], \"mac_address\": \"de:00:00:d0:6c:cd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:13.789879+00:00\", \"modification_date\": \"2025-10-30T15:42:13.789879+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 63174adc-4ecd-4991-9121-535a65046aa0 + status: 200 OK + code: 200 + duration: 137.822889ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f2888994-06e0-4fe6-a396-d9265756eba5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"f2888994-06e0-4fe6-a396-d9265756eba5\", \"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-30T15:42:13.921546Z\", \"updated_at\":\"2025-10-30T15:42:13.921546Z\", \"references\":[{\"id\":\"f5ee1ee5-438f-424a-bec3-dc77149cccd9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"created_at\":\"2025-10-30T15:42:13.921546Z\", \"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: + - Thu, 30 Oct 2025 15:42:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ccc4be42-2bf8-473b-af43-76935ef53e54 + status: 200 OK + code: 200 + duration: 98.2438ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"573737b2-15dd-44b3-8a1e-615a7c6c320d\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3/action\", \"href_result\": \"/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"started_at\": \"2025-10-30T15:42:15.287765+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:15 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/573737b2-15dd-44b3-8a1e-615a7c6c320d + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b4f90720-4398-4a6a-8f55-83a799359ff3 + status: 202 Accepted + code: 202 + duration: 284.802605ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2412 + body: "{\"server\": {\"id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"name\": \"tf-srv-upbeat-torvalds\", \"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-upbeat-torvalds\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"starting\", \"protected\": false, \"state_detail\": \"allocating node\", \"public_ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6ccd\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cce\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e0ea1768-898f-49b6-88d9-e5be2cb603f1\"}, \"public_ips\": [{\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6ccd\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cce\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e0ea1768-898f-49b6-88d9-e5be2cb603f1\"}], \"mac_address\": \"de:00:00:d0:6c:cd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:13.789879+00:00\", \"modification_date\": \"2025-10-30T15:42:15.071094+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: + - "2412" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f15af959-2fcb-4c8c-bc1c-48035e84c41c + status: 200 OK + code: 200 + duration: 148.603911ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2500 + body: "{\"server\": {\"id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"name\": \"tf-srv-upbeat-torvalds\", \"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-upbeat-torvalds\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6ccd\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cce\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e0ea1768-898f-49b6-88d9-e5be2cb603f1\"}, \"public_ips\": [{\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6ccd\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cce\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e0ea1768-898f-49b6-88d9-e5be2cb603f1\"}], \"mac_address\": \"de:00:00:d0:6c:cd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:13.789879+00:00\", \"modification_date\": \"2025-10-30T15:42:17.373498+00:00\", \"bootscript\": 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: + - "2500" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bd696d41-a7ad-48db-810e-a35d9858f714 + status: 200 OK + code: 200 + duration: 149.646309ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2546 + body: "{\"server\": {\"id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"name\": \"tf-srv-upbeat-torvalds\", \"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-upbeat-torvalds\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6ccd\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cce\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e0ea1768-898f-49b6-88d9-e5be2cb603f1\"}, \"public_ips\": [{\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6ccd\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cce\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e0ea1768-898f-49b6-88d9-e5be2cb603f1\"}], \"mac_address\": \"de:00:00:d0:6c:cd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:13.789879+00:00\", \"modification_date\": \"2025-10-30T15:42:17.373498+00:00\", \"bootscript\": 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: + - "2546" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e1d96909-77a1-4265-8c09-caa208e563e1 + status: 200 OK + code: 200 + duration: 134.192772ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f2888994-06e0-4fe6-a396-d9265756eba5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3c33ed6c-d4d2-4108-9740-98cf3b53fffc + status: 404 Not Found + code: 404 + duration: 30.32424ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f2888994-06e0-4fe6-a396-d9265756eba5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"f2888994-06e0-4fe6-a396-d9265756eba5\", \"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-30T15:42:13.921546Z\", \"updated_at\":\"2025-10-30T15:42:13.921546Z\", \"references\":[{\"id\":\"f5ee1ee5-438f-424a-bec3-dc77149cccd9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"created_at\":\"2025-10-30T15:42:13.921546Z\", \"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: + - Thu, 30 Oct 2025 15:42:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 63e6e5ba-4f7a-49b9-96e3-7a6e6ea9481d + status: 200 OK + code: 200 + duration: 90.314738ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d997f7b8-b5ff-41b2-915b-be4501d8072b + status: 200 OK + code: 200 + duration: 104.572773ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:21 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 796eeecb-2aa1-4ce0-92a4-998871cdf039 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 104.967011ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2500 + body: "{\"server\": {\"id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"name\": \"tf-srv-upbeat-torvalds\", \"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-upbeat-torvalds\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6ccd\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cce\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e0ea1768-898f-49b6-88d9-e5be2cb603f1\"}, \"public_ips\": [{\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6ccd\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cce\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e0ea1768-898f-49b6-88d9-e5be2cb603f1\"}], \"mac_address\": \"de:00:00:d0:6c:cd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:13.789879+00:00\", \"modification_date\": \"2025-10-30T15:42:17.373498+00:00\", \"bootscript\": 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: + - "2500" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0d30467d-c835-4cdc-a2a6-ddb40baad805 + status: 200 OK + code: 200 + duration: 154.606013ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 450 + body: "{\"ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": null, \"prefix\": \"2001:bc8:710:404a::/64\", \"reverse\": null, \"server\": {\"id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"name\": \"tf-srv-upbeat-torvalds\"}, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"zone\": \"fr-par-1\", \"type\": \"routed_ipv6\", \"state\": \"attached\", \"tags\": [], \"ipam_id\": \"e0ea1768-898f-49b6-88d9-e5be2cb603f1\"}}" + headers: + Content-Length: + - "450" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2ed5322b-cf70-40b3-aa88-53600dd91c77 + status: 200 OK + code: 200 + duration: 140.06141ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2500 + body: "{\"server\": {\"id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"name\": \"tf-srv-upbeat-torvalds\", \"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-upbeat-torvalds\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6ccd\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cce\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e0ea1768-898f-49b6-88d9-e5be2cb603f1\"}, \"public_ips\": [{\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6ccd\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cce\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e0ea1768-898f-49b6-88d9-e5be2cb603f1\"}], \"mac_address\": \"de:00:00:d0:6c:cd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:13.789879+00:00\", \"modification_date\": \"2025-10-30T15:42:17.373498+00:00\", \"bootscript\": 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: + - "2500" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6b4f78c8-f53b-422f-8325-15a4b60d6569 + status: 200 OK + code: 200 + duration: 153.695505ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f2888994-06e0-4fe6-a396-d9265756eba5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b4dad0a2-87f1-4082-8111-220ecaa48d2b + status: 404 Not Found + code: 404 + duration: 25.976786ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f2888994-06e0-4fe6-a396-d9265756eba5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"f2888994-06e0-4fe6-a396-d9265756eba5\", \"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-30T15:42:13.921546Z\", \"updated_at\":\"2025-10-30T15:42:13.921546Z\", \"references\":[{\"id\":\"f5ee1ee5-438f-424a-bec3-dc77149cccd9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"created_at\":\"2025-10-30T15:42:13.921546Z\", \"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: + - Thu, 30 Oct 2025 15:42:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b48f1e7e-3d15-4cd0-b950-5db22b19c72f + status: 200 OK + code: 200 + duration: 106.480902ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dff7888e-6f8c-4c96-8cf5-e337b4ea10c3 + status: 200 OK + code: 200 + duration: 107.276395ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:22 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1a30d581-234d-48fe-aba8-df94c7694f0e + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 102.578291ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 450 + body: "{\"ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": null, \"prefix\": \"2001:bc8:710:404a::/64\", \"reverse\": null, \"server\": {\"id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"name\": \"tf-srv-upbeat-torvalds\"}, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"zone\": \"fr-par-1\", \"type\": \"routed_ipv6\", \"state\": \"attached\", \"tags\": [], \"ipam_id\": \"e0ea1768-898f-49b6-88d9-e5be2cb603f1\"}}" + headers: + Content-Length: + - "450" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 369db57f-dd03-4e90-9c73-a81d9872d5da + status: 200 OK + code: 200 + duration: 129.888619ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2500 + body: "{\"server\": {\"id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"name\": \"tf-srv-upbeat-torvalds\", \"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-upbeat-torvalds\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": {\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6ccd\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cce\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e0ea1768-898f-49b6-88d9-e5be2cb603f1\"}, \"public_ips\": [{\"id\": \"88201074-761e-4ed1-83b4-f7fc97b5599f\", \"address\": \"2001:bc8:710:404a:dc00:ff:fed0:6ccd\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:6cce\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"e0ea1768-898f-49b6-88d9-e5be2cb603f1\"}], \"mac_address\": \"de:00:00:d0:6c:cd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:13.789879+00:00\", \"modification_date\": \"2025-10-30T15:42:17.373498+00:00\", \"bootscript\": 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: + - "2500" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a6a9bdfc-7105-4187-bb4b-1ec9406a4165 + status: 200 OK + code: 200 + duration: 142.820346ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f2888994-06e0-4fe6-a396-d9265756eba5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e056e5b6-700a-4733-80a8-e82e85a53197 + status: 404 Not Found + code: 404 + duration: 25.796247ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f2888994-06e0-4fe6-a396-d9265756eba5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"f2888994-06e0-4fe6-a396-d9265756eba5\", \"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-30T15:42:13.921546Z\", \"updated_at\":\"2025-10-30T15:42:13.921546Z\", \"references\":[{\"id\":\"f5ee1ee5-438f-424a-bec3-dc77149cccd9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"created_at\":\"2025-10-30T15:42:13.921546Z\", \"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: + - Thu, 30 Oct 2025 15:42:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7fd12949-2358-4952-b89f-d889af2d5ff0 + status: 200 OK + code: 200 + duration: 70.896925ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 90faca20-bf08-487a-8b89-9f8c594637d8 + status: 200 OK + code: 200 + duration: 107.148705ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:22 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e1928fba-f2c6-436e-9a33-b6845c51fa46 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 107.463124ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9c26f05c-0c74-436f-aecd-ec9177b0c427 + status: 204 No Content + code: 204 + duration: 560.743567ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1946 + body: "{\"server\": {\"id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"name\": \"tf-srv-upbeat-torvalds\", \"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-upbeat-torvalds\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\", \"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:6c:cd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:13.789879+00:00\", \"modification_date\": \"2025-10-30T15:42:17.373498+00:00\", \"bootscript\": 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: + - "1946" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 012a1ab2-9e0e-4f46-8184-9a5156ae1c3d + status: 200 OK + code: 200 + duration: 146.518403ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1900 + body: "{\"server\": {\"id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"name\": \"tf-srv-upbeat-torvalds\", \"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-upbeat-torvalds\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\", \"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:6c:cd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:13.789879+00:00\", \"modification_date\": \"2025-10-30T15:42:17.373498+00:00\", \"bootscript\": 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: + - "1900" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 55af3d75-d3a5-4614-a908-585035331e4b + status: 200 OK + code: 200 + duration: 152.752957ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1946 + body: "{\"server\": {\"id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"name\": \"tf-srv-upbeat-torvalds\", \"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-upbeat-torvalds\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\", \"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:6c:cd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:13.789879+00:00\", \"modification_date\": \"2025-10-30T15:42:17.373498+00:00\", \"bootscript\": 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: + - "1946" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 64f2e6f0-5a08-4bdf-abbe-0f39ce825cb8 + status: 200 OK + code: 200 + duration: 163.471692ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1900 + body: "{\"server\": {\"id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"name\": \"tf-srv-upbeat-torvalds\", \"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-upbeat-torvalds\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\", \"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:6c:cd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:13.789879+00:00\", \"modification_date\": \"2025-10-30T15:42:17.373498+00:00\", \"bootscript\": 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: + - "1900" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 78c4773a-f291-4702-bb34-4071105dc6b8 + status: 200 OK + code: 200 + duration: 197.303593ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f2888994-06e0-4fe6-a396-d9265756eba5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f7ddd5c0-6d28-43ef-b8b6-918f86bb2410 + status: 404 Not Found + code: 404 + duration: 24.115474ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f2888994-06e0-4fe6-a396-d9265756eba5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"f2888994-06e0-4fe6-a396-d9265756eba5\", \"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-30T15:42:13.921546Z\", \"updated_at\":\"2025-10-30T15:42:13.921546Z\", \"references\":[{\"id\":\"f5ee1ee5-438f-424a-bec3-dc77149cccd9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"created_at\":\"2025-10-30T15:42:13.921546Z\", \"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: + - Thu, 30 Oct 2025 15:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - efb13bc7-eab2-4c3a-8cbe-345fb3d41471 + status: 200 OK + code: 200 + duration: 92.036839ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 03d98f1d-abc1-4901-bfdd-42433c602f6a + status: 200 OK + code: 200 + duration: 98.354559ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:24 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0f5487b4-3428-4e07-b684-97f4b5569a04 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 110.66432ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1900 + body: "{\"server\": {\"id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"name\": \"tf-srv-upbeat-torvalds\", \"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-upbeat-torvalds\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\", \"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:6c:cd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:13.789879+00:00\", \"modification_date\": \"2025-10-30T15:42:17.373498+00:00\", \"bootscript\": 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: + - "1900" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fc3f4b73-b0a9-4d29-8104-5c3eccf56c9d + status: 200 OK + code: 200 + duration: 151.811081ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1900 + body: "{\"server\": {\"id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"name\": \"tf-srv-upbeat-torvalds\", \"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-upbeat-torvalds\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\", \"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:6c:cd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:13.789879+00:00\", \"modification_date\": \"2025-10-30T15:42:17.373498+00:00\", \"bootscript\": 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: + - "1900" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 86d7b7cc-9076-4f70-8d33-8365df6ab3b2 + status: 200 OK + code: 200 + duration: 142.765824ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f2888994-06e0-4fe6-a396-d9265756eba5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 400ff6f3-d17c-4de2-a6d8-e83694b4962e + status: 404 Not Found + code: 404 + duration: 29.489936ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f2888994-06e0-4fe6-a396-d9265756eba5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"f2888994-06e0-4fe6-a396-d9265756eba5\", \"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-30T15:42:13.921546Z\", \"updated_at\":\"2025-10-30T15:42:13.921546Z\", \"references\":[{\"id\":\"f5ee1ee5-438f-424a-bec3-dc77149cccd9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"created_at\":\"2025-10-30T15:42:13.921546Z\", \"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: + - Thu, 30 Oct 2025 15:42:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 75031a5c-0167-4ec0-a678-299f7dc8b869 + status: 200 OK + code: 200 + duration: 108.976173ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d612fbfe-711c-4b0f-afec-684a07ac8eab + status: 200 OK + code: 200 + duration: 133.791791ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:25 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 95587150-9de4-4335-983d-9540a32be7e1 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 106.598473ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1900 + body: "{\"server\": {\"id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"name\": \"tf-srv-upbeat-torvalds\", \"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-upbeat-torvalds\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\", \"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:6c:cd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:13.789879+00:00\", \"modification_date\": \"2025-10-30T15:42:17.373498+00:00\", \"bootscript\": 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: + - "1900" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e94f7330-ea20-4830-be44-b70125ad6c46 + status: 200 OK + code: 200 + duration: 127.610647ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1946 + body: "{\"server\": {\"id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"name\": \"tf-srv-upbeat-torvalds\", \"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-upbeat-torvalds\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\", \"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:6c:cd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:13.789879+00:00\", \"modification_date\": \"2025-10-30T15:42:17.373498+00:00\", \"bootscript\": 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: + - "1946" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5c435d8c-3e21-4dd6-8863-bc4f3bcd7928 + status: 200 OK + code: 200 + duration: 162.5314ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"b8dff35c-dd6f-44f8-924c-df992af03535\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3/action\", \"href_result\": \"/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"started_at\": \"2025-10-30T15:42:26.091009+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:26 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b8dff35c-dd6f-44f8-924c-df992af03535 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6874a14d-e1fe-48c5-9e9a-45b67b8e336b + status: 202 Accepted + code: 202 + duration: 275.131651ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1863 + body: "{\"server\": {\"id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"name\": \"tf-srv-upbeat-torvalds\", \"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-upbeat-torvalds\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\", \"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:6c:cd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:13.789879+00:00\", \"modification_date\": \"2025-10-30T15:42:25.875316+00:00\", \"bootscript\": 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}}" + headers: + Content-Length: + - "1863" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cb391596-e47b-405e-971c-f039c43282dd + status: 200 OK + code: 200 + duration: 152.270112ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1909 + body: "{\"server\": {\"id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"name\": \"tf-srv-upbeat-torvalds\", \"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-upbeat-torvalds\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\", \"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:6c:cd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:13.789879+00:00\", \"modification_date\": \"2025-10-30T15:42:25.875316+00:00\", \"bootscript\": 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: + - "1909" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bc50e370-7298-4fbe-943c-34e5b92a4997 + status: 200 OK + code: 200 + duration: 161.484568ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1909 + body: "{\"server\": {\"id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\", \"name\": \"tf-srv-upbeat-torvalds\", \"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-upbeat-torvalds\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\", \"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:6c:cd\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:13.789879+00:00\", \"modification_date\": \"2025-10-30T15:42:25.875316+00:00\", \"bootscript\": 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: + - "1909" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cedfe2d1-92ee-438d-8407-853bfdd5a1f4 + status: 200 OK + code: 200 + duration: 144.179399ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 46587fa2-952b-4bcb-a423-f91ee1f8762c + status: 404 Not Found + code: 404 + duration: 51.065889ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f2888994-06e0-4fe6-a396-d9265756eba5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"f2888994-06e0-4fe6-a396-d9265756eba5\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2c9378a6-eb1e-4f38-8048-08f55f3a31dd + status: 404 Not Found + code: 404 + duration: 24.702627ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f2888994-06e0-4fe6-a396-d9265756eba5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"f2888994-06e0-4fe6-a396-d9265756eba5\", \"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-30T15:42:13.921546Z\", \"updated_at\":\"2025-10-30T15:42:39.230646Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:39.230646Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 20ca15cb-458b-428d-a16c-880ad4e89230 + status: 200 OK + code: 200 + duration: 84.527927ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f2888994-06e0-4fe6-a396-d9265756eba5 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a9a11672-343c-43d8-99b6-88f5e90e52ac + status: 204 No Content + code: 204 + duration: 169.006972ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4f57284-2eb8-4420-b93f-07c37c9a6ea3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"f4f57284-2eb8-4420-b93f-07c37c9a6ea3\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 122a0a23-fade-4ab0-b3f1-9cdf99387092 + status: 404 Not Found + code: 404 + duration: 39.000377ms 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 0276e2a42..0cc4d6e56 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 @@ -1,1371 +1,1123 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cbf3a5e9-caab-431f-a4ca-52a96dafe54b - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 42.702675ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 28940637-fd9c-40d2-8e87-781645024893 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 41.786342ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b842fb4e-229f-4110-8606-f4ef4e54d135 - status: 200 OK - code: 200 - duration: 60.345247ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 277 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-srv-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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2221 - uncompressed: false - 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: - - "2221" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:13 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 96ce1e97-ecb3-4ed3-b892-eaa91d14a44a - status: 201 Created - code: 201 - duration: 784.894374ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2221 - uncompressed: false - 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: - - "2221" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 255f83f2-1875-4994-b271-2050821dd31b - status: 200 OK - code: 200 - duration: 117.0627ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2221 - uncompressed: false - 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: - - "2221" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c59fd6a9-2933-427f-8936-60cd1ff64a98 - status: 200 OK - code: 200 - duration: 123.711024ms - - id: 6 - 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/f625eab1-df5d-4545-82ec-6901b002323b/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:13 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/990f6a5b-895d-45b9-b94b-c58c9570af40 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7bb14180-fa0b-4452-a3a4-ec843efa8409 - status: 202 Accepted - code: 202 - duration: 257.276314ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2197 - uncompressed: false - 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: - - "2197" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0f43a96c-a57a-4f3d-b466-c27c8cf6a8f0 - status: 200 OK - code: 200 - duration: 125.347303ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2301 - uncompressed: false - 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: - - "2301" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3736783b-6cb2-4a4f-9059-a8e0e0fab5d6 - status: 200 OK - code: 200 - duration: 143.498198ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2301 - uncompressed: false - 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: - - "2301" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f44877c5-0e68-4e16-b936-8cc3e8fa3be8 - status: 200 OK - code: 200 - duration: 140.858935ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2301 - uncompressed: false - 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: - - "2301" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 03e6daa5-9b23-4348-87c9-4d413d0a99db - status: 200 OK - code: 200 - duration: 136.356315ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2378 - uncompressed: false - 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: - - "2378" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 31a8c92d-0899-4311-b51f-de2d81518c70 - status: 200 OK - code: 200 - duration: 122.290123ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2332 - uncompressed: false - 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: - - "2332" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 010aa8f4-6be8-4e5c-af01-cf48ce7e5d80 - status: 200 OK - code: 200 - duration: 155.337985ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/116f9ef3-5067-4e61-bc5b-f0767f6b5725 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 527 - uncompressed: false - 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: - - "527" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 793e5737-5be4-43f2-9bc3-f8e9c4d1a836 - status: 200 OK - code: 200 - duration: 112.707192ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b/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:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d13ac559-9d76-4f83-bdf4-0408bc3e66b3 - status: 200 OK - code: 200 - duration: 90.138947ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b/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:55:35 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a89b7798-e9b4-4219-822a-a1fa9826724b - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 92.750842ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b/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:55:35 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 61978827-5731-4809-abe5-ea4254257b59 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 84.03343ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2378 - uncompressed: false - 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: - - "2378" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 87f1a7c9-81ca-4b41-bf09-92e1b84abe64 - status: 200 OK - code: 200 - duration: 126.723214ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/116f9ef3-5067-4e61-bc5b-f0767f6b5725 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 527 - uncompressed: false - 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: - - "527" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 135429c6-a063-4bfe-8a2d-c01f2ba17c20 - status: 200 OK - code: 200 - duration: 88.817256ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b/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:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f3a9223b-24d9-4985-83f4-fd2c18af2039 - status: 200 OK - code: 200 - duration: 110.186197ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b/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:55:35 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bb0c2c74-d5fc-4ac8-b758-8fa736b293a5 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 115.132177ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2332 - uncompressed: false - 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: - - "2332" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 54957775-82b4-4700-aaf9-42a54073a882 - status: 200 OK - code: 200 - duration: 127.043663ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 355adce2-12ac-4873-98bc-43392d289f7d - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 70.578849ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 32fe0283-6735-4591-bc35-ae8881085602 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 94.95279ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2332 - uncompressed: false - 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: - - "2332" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 340cbb0d-a7a8-44ea-8563-6bf306ab3b9f - status: 200 OK - code: 200 - duration: 105.122748ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2378 - uncompressed: false - 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: - - "2378" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 62c0a49b-ed5e-47fe-a990-fe24d5dc1bef - status: 200 OK - code: 200 - duration: 147.031451ms - - 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/f625eab1-df5d-4545-82ec-6901b002323b/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:37 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0428b7cc-61a2-48b3-a4b5-ae7d41fcee17 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 45baa30d-f183-4745-b70c-efe24b994684 - status: 202 Accepted - code: 202 - duration: 479.455304ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2341 - uncompressed: false - 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: - - "2341" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 26bbbf13-5959-42f4-81e8-52b5e05f7640 - status: 200 OK - code: 200 - duration: 124.112712ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b - 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": "f625eab1-df5d-4545-82ec-6901b002323b"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d7966de6-ea6f-4cef-ad0f-e9d49e2f2d43 - status: 404 Not Found - code: 404 - duration: 45.095453ms - - 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/volumes/116f9ef3-5067-4e61-bc5b-f0767f6b5725 - 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": "116f9ef3-5067-4e61-bc5b-f0767f6b5725"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f963ac53-dcd9-4ac6-ac12-58d2ae7eb2af - status: 404 Not Found - code: 404 - duration: 24.545423ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/116f9ef3-5067-4e61-bc5b-f0767f6b5725 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"116f9ef3-5067-4e61-bc5b-f0767f6b5725","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1f1ecb3b-847a-42b5-b240-2f9e4911f285 - status: 404 Not Found - code: 404 - duration: 19.489427ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f625eab1-df5d-4545-82ec-6901b002323b - 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": "f625eab1-df5d-4545-82ec-6901b002323b"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 93579a9f-fa64-40e2-b56c-bfb3edffc34b - status: 404 Not Found - code: 404 - duration: 51.678494ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:43 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a0b1ea0b-580b-4e11-bed1-802e851bd19c + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 46.689726ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:43 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2fcf83d9-3abd-4c78-a58c-75c0d153495f + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 57.690682ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d704e2d1-597f-484a-9c97-ed0e98462eb0 + status: 200 OK + code: 200 + duration: 43.318973ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 276 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-fervent-lamport\",\"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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2172 + body: "{\"server\": {\"id\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\", \"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-fervent-lamport\", \"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\": \"6737c73a-6a79-4e4a-a0d8-a77bd5c342d6\", \"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\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\"}, \"size\": 80000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:43.709729+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:6d:2d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:43.709729+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2172" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:43 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ef0c10fa-d5d1-460f-b2e5-8436849b1cd3 + status: 201 Created + code: 201 + duration: 738.706135ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2218 + body: "{\"server\": {\"id\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\", \"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-fervent-lamport\", \"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\": \"6737c73a-6a79-4e4a-a0d8-a77bd5c342d6\", \"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\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\"}, \"size\": 80000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:43.709729+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:6d:2d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:43.709729+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2218" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9d0f8471-aaac-4f62-b66e-df71369e3844 + status: 200 OK + code: 200 + duration: 119.346854ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2218 + body: "{\"server\": {\"id\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\", \"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-fervent-lamport\", \"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\": \"6737c73a-6a79-4e4a-a0d8-a77bd5c342d6\", \"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\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\"}, \"size\": 80000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:43.709729+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:6d:2d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:43.709729+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2218" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 288ea508-08cb-4e0d-965d-2f337b618a17 + status: 200 OK + code: 200 + duration: 134.221978ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"fd1f0f26-50ad-4146-b035-e5a530835556\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e/action\", \"href_result\": \"/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"started_at\": \"2025-10-30T15:43:44.322907+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fd1f0f26-50ad-4146-b035-e5a530835556 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6f6e4f67-3f9e-4095-b60d-d6ec9f0b5adf + status: 202 Accepted + code: 202 + duration: 231.148645ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2240 + body: "{\"server\": {\"id\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\", \"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-fervent-lamport\", \"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\": \"6737c73a-6a79-4e4a-a0d8-a77bd5c342d6\", \"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\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\"}, \"size\": 80000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:43.709729+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:6d:2d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:44.156121+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: + - "2240" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 253f3b72-f3f9-4611-81b1-2018d9713297 + status: 200 OK + code: 200 + duration: 117.079911ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2297 + body: "{\"server\": {\"id\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\", \"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-fervent-lamport\", \"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\": \"6737c73a-6a79-4e4a-a0d8-a77bd5c342d6\", \"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\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\"}, \"size\": 80000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:43.709729+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:6d:2d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:44.156121+00:00\", \"bootscript\": 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\": \"502\", \"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: + - "2297" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f2c4a0c0-e8e6-40d8-aa47-cbee4442d122 + status: 200 OK + code: 200 + duration: 132.017184ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2343 + body: "{\"server\": {\"id\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\", \"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-fervent-lamport\", \"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\": \"6737c73a-6a79-4e4a-a0d8-a77bd5c342d6\", \"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\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\"}, \"size\": 80000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:43.709729+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:6d:2d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:44.156121+00:00\", \"bootscript\": 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\": \"502\", \"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: + - "2343" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3ed341bc-9f12-4a38-aaf9-a6a3723dc2bf + status: 200 OK + code: 200 + duration: 169.593455ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2374 + body: "{\"server\": {\"id\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\", \"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-fervent-lamport\", \"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\": \"6737c73a-6a79-4e4a-a0d8-a77bd5c342d6\", \"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\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\"}, \"size\": 80000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:43.709729+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:6d:2d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:57.700671+00:00\", \"bootscript\": 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\": \"502\", \"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: + - "2374" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d0b50f87-ae57-4cbb-b5fb-4ddeb2baf8be + status: 200 OK + code: 200 + duration: 127.260933ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2328 + body: "{\"server\": {\"id\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\", \"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-fervent-lamport\", \"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\": \"6737c73a-6a79-4e4a-a0d8-a77bd5c342d6\", \"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\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\"}, \"size\": 80000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:43.709729+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:6d:2d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:57.700671+00:00\", \"bootscript\": 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\": \"502\", \"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: + - "2328" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dde86a47-4818-4ddd-9e0c-35009599ca2b + status: 200 OK + code: 200 + duration: 138.448601ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6737c73a-6a79-4e4a-a0d8-a77bd5c342d6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 526 + body: "{\"volume\": {\"id\": \"6737c73a-6a79-4e4a-a0d8-a77bd5c342d6\", \"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\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\"}, \"size\": 80000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:43.709729+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "526" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 63fd1555-6ea3-4e05-ae28-58622710a259 + status: 200 OK + code: 200 + duration: 118.43703ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - db7e53ad-de71-45cf-be05-f7842a03d6d4 + status: 200 OK + code: 200 + duration: 131.147165ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 564bc82c-066f-4d96-931c-10548d70f275 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 98.758826ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0c3c0e23-f241-461b-93f0-523c4beb9e20 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 111.902723ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2328 + body: "{\"server\": {\"id\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\", \"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-fervent-lamport\", \"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\": \"6737c73a-6a79-4e4a-a0d8-a77bd5c342d6\", \"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\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\"}, \"size\": 80000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:43.709729+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:6d:2d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:57.700671+00:00\", \"bootscript\": 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\": \"502\", \"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: + - "2328" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b76d508a-fed6-4508-9b17-87895f3649c6 + status: 200 OK + code: 200 + duration: 160.005631ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6737c73a-6a79-4e4a-a0d8-a77bd5c342d6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 526 + body: "{\"volume\": {\"id\": \"6737c73a-6a79-4e4a-a0d8-a77bd5c342d6\", \"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\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\"}, \"size\": 80000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:43.709729+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "526" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a9e16e54-e16b-4993-9225-f362519e2ae8 + status: 200 OK + code: 200 + duration: 115.53123ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 008c8d4a-4a38-4b78-a116-782a6aa5865c + status: 200 OK + code: 200 + duration: 125.26472ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:01 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d4a09eb1-a191-49b0-877a-6f64d3591100 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 115.885615ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2374 + body: "{\"server\": {\"id\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\", \"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-fervent-lamport\", \"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\": \"6737c73a-6a79-4e4a-a0d8-a77bd5c342d6\", \"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\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\"}, \"size\": 80000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:43.709729+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:6d:2d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:57.700671+00:00\", \"bootscript\": 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\": \"502\", \"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: + - "2374" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fbc86784-e6ae-48d4-83fd-77d1a45fb2bf + status: 200 OK + code: 200 + duration: 142.00334ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:01 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 188887b1-17a7-451e-9335-013e5427f339 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 52.45889ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:01 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f7f2e47b-8916-4614-a65e-e01531744391 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 51.306548ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2328 + body: "{\"server\": {\"id\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\", \"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-fervent-lamport\", \"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\": \"6737c73a-6a79-4e4a-a0d8-a77bd5c342d6\", \"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\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\"}, \"size\": 80000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:43.709729+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:6d:2d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:57.700671+00:00\", \"bootscript\": 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\": \"502\", \"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: + - "2328" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 835207d1-7db8-4444-9ab9-8360e1093cdc + status: 200 OK + code: 200 + duration: 131.39005ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2328 + body: "{\"server\": {\"id\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\", \"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-fervent-lamport\", \"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\": \"6737c73a-6a79-4e4a-a0d8-a77bd5c342d6\", \"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\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\"}, \"size\": 80000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:43.709729+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:6d:2d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:57.700671+00:00\", \"bootscript\": 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\": \"502\", \"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: + - "2328" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9e31a3e7-5b25-4a97-90c5-6b2ce9232ec0 + status: 200 OK + code: 200 + duration: 131.0222ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"53125f1f-34d6-4420-8907-1f5223098729\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e/action\", \"href_result\": \"/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"started_at\": \"2025-10-30T15:44:02.303500+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:02 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/53125f1f-34d6-4420-8907-1f5223098729 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d7f6d1cc-3944-4b0f-be7e-bfa42896702c + status: 202 Accepted + code: 202 + duration: 334.372093ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2291 + body: "{\"server\": {\"id\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\", \"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-fervent-lamport\", \"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\": \"6737c73a-6a79-4e4a-a0d8-a77bd5c342d6\", \"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\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\"}, \"size\": 80000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:43.709729+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:6d:2d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:44:02.056022+00:00\", \"bootscript\": 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\": \"502\", \"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: + - "2291" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aa62390c-b361-4582-95b5-10aa6874d2ad + status: 200 OK + code: 200 + duration: 136.494686ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2291 + body: "{\"server\": {\"id\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\", \"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-fervent-lamport\", \"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\": \"6737c73a-6a79-4e4a-a0d8-a77bd5c342d6\", \"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\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\"}, \"size\": 80000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:43.709729+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:6d:2d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:44:02.056022+00:00\", \"bootscript\": 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\": \"502\", \"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: + - "2291" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 585ce9f9-6645-444a-ad52-6bb39e81a5c7 + status: 200 OK + code: 200 + duration: 132.018981ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2291 + body: "{\"server\": {\"id\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\", \"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-fervent-lamport\", \"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\": \"6737c73a-6a79-4e4a-a0d8-a77bd5c342d6\", \"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\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\", \"name\": \"tf-srv-fervent-lamport\"}, \"size\": 80000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:43:43.709729+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:6d:2d\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:43.709729+00:00\", \"modification_date\": \"2025-10-30T15:44:02.056022+00:00\", \"bootscript\": 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\": \"502\", \"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: + - "2291" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c9f3d9c4-2d34-4c90-afac-049c104e5d6b + status: 200 OK + code: 200 + duration: 128.470475ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fafd6639-f2c8-4bc9-b30f-b359853320f1 + status: 404 Not Found + code: 404 + duration: 50.017892ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6737c73a-6a79-4e4a-a0d8-a77bd5c342d6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"6737c73a-6a79-4e4a-a0d8-a77bd5c342d6\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 93291d09-9c10-44bf-b984-e7b15a95edcd + status: 404 Not Found + code: 404 + duration: 26.385919ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6737c73a-6a79-4e4a-a0d8-a77bd5c342d6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"6737c73a-6a79-4e4a-a0d8-a77bd5c342d6\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 375ba25c-fcfb-427a-87be-a11d8ca9a3f9 + status: 404 Not Found + code: 404 + duration: 21.971257ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2721c319-f2f6-493c-bf96-5b6919f01b9e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"2721c319-f2f6-493c-bf96-5b6919f01b9e\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1ff53a1b-4fca-46fe-b028-a629d3821a24 + status: 404 Not Found + code: 404 + duration: 43.053648ms diff --git a/internal/services/instance/testdata/server-migrate.cassette.yaml b/internal/services/instance/testdata/server-migrate.cassette.yaml index c637ba026..1622387b6 100644 --- a/internal/services/instance/testdata/server-migrate.cassette.yaml +++ b/internal/services/instance/testdata/server-migrate.cassette.yaml @@ -1,4901 +1,3813 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0e973a5d-6e41-4fc6-9128-a7dc09502039 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 54.346841ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 704be146-2722-4442-9643-5b28749446f7 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 52.643416ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4807828e-3c9a-4008-bd0c-4404e385fab4 - status: 200 OK - code: 200 - duration: 52.208973ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 233 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1784 - 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: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: - - "1784" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2971eb54-9edf-4ec8-96cb-af6b4a248369 - status: 201 Created - code: 201 - duration: 1.431416469s - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1784 - 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: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: - - "1784" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8394dce0-7a3e-451a-ae61-4dff5dd59423 - status: 200 OK - code: 200 - duration: 148.443576ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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: 1784 - 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: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: - - "1784" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a2e789df-9218-45d2-9190-ab02214d96aa - status: 200 OK - code: 200 - duration: 145.337417ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 22ba5a74-4d15-4e64-a633-5503d32cbd4e - status: 200 OK - code: 200 - duration: 94.604064ms - - id: 7 - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/cc15b98c-b379-4a00-9f19-5ce663dd78a3 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dba876f1-b37f-4f2d-985a-3ae242578db6 - status: 202 Accepted - code: 202 - duration: 221.557492ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 1760 - 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": "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: - - "1760" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 045c9bb6-4330-4ed0-9ed7-82621eaf375a - status: 200 OK - code: 200 - duration: 147.432566ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1894 - 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": "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: - - "1894" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 714eb398-0371-48d5-9e8d-f510a8a4bfab - status: 200 OK - code: 200 - duration: 130.029803ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - 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": "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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 99052c5a-d9bb-405b-ada7-70dcbb84d9a2 - status: 200 OK - code: 200 - duration: 147.216123ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - 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": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7b1ecb05-e97a-4e28-bc3b-68bc96cbf3a6 - status: 404 Not Found - code: 404 - duration: 25.175079ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a72ee8ce-1935-4f5b-aa98-e7845b9226c8 - status: 200 OK - code: 200 - duration: 74.492044ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/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:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f3d8872d-2f70-4187-bfdc-856a799dc1a2 - status: 200 OK - code: 200 - duration: 93.540316ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/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:55:25 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 43c0eeb5-e373-4b4f-828b-a0ab58f9b299 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 96.22147ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/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:55:26 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3b4b376d-b311-433c-bc36-1a53e289c00d - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 103.690717ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1894 - 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": "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: - - "1894" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6b2075a0-5e23-48b7-ae17-3d4a2aca54fd - status: 200 OK - code: 200 - duration: 149.013735ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - 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": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dfc2e112-bcf2-450a-934d-e456e8927a52 - status: 404 Not Found - code: 404 - duration: 33.353793ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b057b908-61d9-4489-9765-023f7e991ecd - status: 200 OK - code: 200 - duration: 97.05023ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/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:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1f247bcd-1b51-4130-9e68-3820fb2dbf1a - status: 200 OK - code: 200 - duration: 97.919796ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/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:55:26 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 71217b04-8362-45b9-bf55-5f5156571d61 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 95.670139ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1894 - 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": "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: - - "1894" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0e7c848c-9478-474e-8a4f-e0056e62bb91 - status: 200 OK - code: 200 - duration: 130.748468ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - 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": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 44d5e299-d98f-498b-ad26-d55a316b4de1 - status: 404 Not Found - code: 404 - duration: 23.663903ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2d7237d7-c357-48fe-89ca-d1b236a02851 - status: 200 OK - code: 200 - duration: 84.859873ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/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:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dcc3f529-36bf-4cad-8465-8d20706bfb76 - status: 200 OK - code: 200 - duration: 79.04009ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/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:55:27 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 348093fe-c11a-4fca-b57b-332cbaad448e - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 111.405716ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1894 - 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": "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: - - "1894" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f7bfbdc1-2fb7-4b4c-8a37-cbc310013d1c - status: 200 OK - code: 200 - duration: 125.484765ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 09fb57bb-01ae-4bf3-9f2c-ad5e722af44e - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 51.098407ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 053d00ce-231e-43d5-bd0c-2d5e2860ac93 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 47.111501ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1894 - 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": "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: - - "1894" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2643b76a-0df7-45de-8652-e32bb2dff15b - status: 200 OK - code: 200 - duration: 172.324308ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 91591337-6657-437a-b60a-8ae3921cf40f - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 45.813594ms - - 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: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c4724145-4105-4160-98ad-0014194d4240 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 42.338366ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - 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": "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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - beef515e-0987-474f-883e-7b9fabe132e0 - status: 200 OK - code: 200 - duration: 142.955697ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - 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": "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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 843e3938-dd67-4ca0-84f0-787f69156c63 - status: 200 OK - code: 200 - duration: 127.589361ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1894 - 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": "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: - - "1894" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0be2f223-16aa-496d-863f-f383b451dd17 - status: 200 OK - code: 200 - duration: 144.226363ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1894 - 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": "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: - - "1894" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 08405f75-5b5f-4b70-be40-ec12630ac0ba - status: 200 OK - code: 200 - duration: 137.823559ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 82306d32-5a20-47d8-b45c-5b90014a4b61 - status: 200 OK - code: 200 - duration: 78.002119ms - - id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 21 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweroff"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; 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/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 352 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9557f74b-2ba4-49be-aac5-1179e435efe9 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3716da2e-bb32-402d-b86c-9cf3577654a8 - status: 202 Accepted - code: 202 - duration: 229.889789ms - - 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/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:55:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3197c6d5-8d48-4d79-9cf9-20700ccf2d85 - status: 200 OK - code: 200 - duration: 139.895716ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1854 - 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}}' - headers: - Content-Length: - - "1854" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 95da3e59-a571-4d23-9612-d23a5392b530 - status: 200 OK - code: 200 - duration: 152.894966ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1854 - 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}}' - headers: - Content-Length: - - "1854" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2c979fd6-73da-4b14-8cb2-c8de62c53c87 - status: 200 OK - code: 200 - duration: 128.520075ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1854 - 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}}' - headers: - Content-Length: - - "1854" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 293ef2b4-a7ba-4338-b06b-6a7ce9068b91 - status: 200 OK - code: 200 - duration: 142.394523ms - - 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/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:55:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b32e6f1a-8eda-4608-bd00-3e59d029e9a1 - status: 200 OK - code: 200 - duration: 146.69066ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1854 - 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}}' - headers: - Content-Length: - - "1854" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 14b0af6b-394c-4b44-befc-0b8882d04b63 - status: 200 OK - code: 200 - duration: 141.496827ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 82ab767d-9192-463d-a45e-e3e0ee25bc89 - status: 200 OK - code: 200 - duration: 150.66828ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1854 - 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}}' - headers: - Content-Length: - - "1854" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9b119464-6b17-45fd-a3ea-9a573da8d1fd - status: 200 OK - code: 200 - 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 - proto_minor: 1 - content_length: 29 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"commercial_type":"PRO2-XS"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+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: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1737 - uncompressed: false - 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: - - "1737" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fc4bf257-6329-477d-ad97-65305be4e2d6 - status: 200 OK - code: 200 - duration: 415.0087ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1783 - uncompressed: false - 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: - - "1783" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 87bc1012-da59-476b-a8e6-c29129cf4fbc - status: 200 OK - code: 200 - duration: 149.112107ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c981189b-5d48-43da-abe0-88d8e72b9cca - status: 200 OK - code: 200 - duration: 97.558953ms - - id: 51 - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:16 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/68dd1f1c-1a3f-4cae-a92e-8991749686b4 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2c368246-6a2c-444f-bd73-3adc75605542 - status: 202 Accepted - code: 202 - duration: 263.447524ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1805 - uncompressed: false - 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: - - "1805" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7b3408c7-aa4c-4b3c-87a4-86e022dccf15 - status: 200 OK - code: 200 - duration: 140.29689ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1893 - uncompressed: false - 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: - - "1893" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a798d555-75d5-4016-a734-b8008c60407e - status: 200 OK - code: 200 - duration: 173.572191ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1893 - uncompressed: false - 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: - - "1893" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 88a748b0-4a98-4c54-abb0-3c09fbc68e9a - status: 200 OK - code: 200 - duration: 164.260941ms - - 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/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - 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": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2e356daf-dfe2-45ad-b54d-00537b2a4d90 - status: 404 Not Found - code: 404 - duration: 31.282315ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 845f22e3-0235-4562-b8bd-5ce6423177c7 - status: 200 OK - code: 200 - duration: 95.971365ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/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:56:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e37502a6-2877-45c5-9bc8-bc2cbf222ab3 - status: 200 OK - code: 200 - duration: 88.917233ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/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:56:22 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d61d72b3-2e1d-429b-8b92-8bf1dc57ca70 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 105.323967ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/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:56:22 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c8c7094a-edde-4c5e-a427-77364966e9b6 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 99.841934ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1939 - uncompressed: false - 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: - - "1939" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ab9e9514-709a-4d12-b0fc-d7c3c43081f3 - status: 200 OK - code: 200 - duration: 139.914587ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - 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": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6c2eea78-1271-41af-aac2-387c5fb9361a - status: 404 Not Found - code: 404 - duration: 26.354397ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2486c123-34ff-42a5-9a74-9b7733b2d05e - status: 200 OK - code: 200 - duration: 73.379714ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/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:56:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e2e6fcfc-e6a3-4fd4-a676-7cd08bb4f3ad - status: 200 OK - code: 200 - duration: 98.688276ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/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:56:23 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9be64e43-9496-4d9e-a290-060a06c5a4b5 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 116.808253ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1939 - uncompressed: false - 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: - - "1939" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 93271da4-0d8a-45d2-bbf8-2f55ec7da677 - status: 200 OK - code: 200 - duration: 155.101109ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - 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": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0aa1fe74-b429-4dc0-9f6e-3e85012d6cd4 - status: 404 Not Found - code: 404 - duration: 49.608908ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b00b61ef-be2d-4e47-b5f4-12e060051e51 - status: 200 OK - code: 200 - duration: 122.465564ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/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:56:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8b5f4e75-6eb9-4588-ac26-a00079895fae - status: 200 OK - code: 200 - duration: 97.477901ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/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:56:23 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6c90a76d-9b5d-4d60-84b8-9a981dd8bb52 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 98.537537ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1939 - uncompressed: false - 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: - - "1939" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8d956511-05ae-4366-b200-a4e69d5d41ac - status: 200 OK - code: 200 - duration: 145.635246ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:24 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fa0c537b-1425-4203-9800-fa7df3c6c5ef - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 37.174814ms - - 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: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:24 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1da905e0-4497-49da-b2a3-0b5109cdf1eb - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 56.750514ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1893 - uncompressed: false - 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: - - "1893" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8574e211-e62d-4652-a4b3-b1002ad8a923 - status: 200 OK - code: 200 - duration: 149.631802ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:24 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 959a8093-554f-4621-97c5-ef163635aa26 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 48.783344ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:24 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5939f847-897b-4ea2-8913-8254252a2fc0 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 54.573482ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1893 - uncompressed: false - 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: - - "1893" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 732f082d-744f-4f00-b208-c82517806159 - status: 200 OK - code: 200 - duration: 156.333376ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1939 - uncompressed: false - 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: - - "1939" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bef8e438-881f-4619-a335-b1b6d4bc4257 - status: 200 OK - code: 200 - duration: 149.248944ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1939 - uncompressed: false - 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: - - "1939" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8d77a5ad-c053-4f29-bdce-35dac894c63f - status: 200 OK - code: 200 - duration: 151.262492ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1939 - uncompressed: false - 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: - - "1939" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5d80f091-87e0-41ce-9675-627bfa131fa9 - status: 200 OK - code: 200 - duration: 162.67275ms - - id: 80 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 16da825c-36ee-42c1-8284-14c5f6ee5be3 - status: 200 OK - code: 200 - duration: 88.03891ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 21 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweroff"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; 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/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 352 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:25 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b3bbf865-5d8e-4f0a-b245-2f3199eb8246 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 80f01517-271e-4ab4-a12f-c992b1c5d9b9 - status: 202 Accepted - code: 202 - duration: 511.6938ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1899 - uncompressed: false - 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: - - "1899" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d263fb31-804b-4de2-b577-d97792d18e84 - status: 200 OK - code: 200 - duration: 152.928567ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1899 - uncompressed: false - 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: - - "1899" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8bc11b60-9bf5-4b17-877f-4598034924b8 - status: 200 OK - code: 200 - duration: 141.470059ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1899 - uncompressed: false - 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: - - "1899" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 29be2e03-ee7d-45cf-8344-9ff51a5cb928 - status: 200 OK - code: 200 - duration: 181.077436ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1853 - uncompressed: false - 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: - - "1853" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f8a17e79-d00c-43bc-a0ef-fdd01ecdad6d - status: 200 OK - code: 200 - duration: 147.567106ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1853 - uncompressed: false - 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: - - "1853" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 43301354-c813-404d-a67a-84a3e5556891 - status: 200 OK - code: 200 - duration: 141.752252ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1899 - uncompressed: false - 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: - - "1899" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 22d73963-eb39-4e45-a777-6095c27a8d67 - status: 200 OK - code: 200 - duration: 137.498298ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1899 - uncompressed: false - 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: - - "1899" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a07d4673-8560-4507-9c5d-8b0bbad2de4a - status: 200 OK - code: 200 - duration: 128.409581ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1737 - uncompressed: false - 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: - - "1737" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9d612b6e-9364-4fbf-b5f3-56959f4c4c7e - status: 200 OK - code: 200 - duration: 162.98625ms - - id: 90 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 30 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"commercial_type":"PRO2-XXS"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+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: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1784 - 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: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: - - "1784" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7f9acb86-29bc-4463-8996-0920253010cc - status: 200 OK - code: 200 - duration: 306.946606ms - - 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/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: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: - - "1738" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a1a788bb-8636-47d6-addf-4f510c048ca0 - status: 200 OK - code: 200 - duration: 129.203317ms - - id: 92 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c4fe6f8f-60a7-4a09-90d3-ef54cd01dd7c - status: 200 OK - code: 200 - duration: 87.766478ms - - id: 93 - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:02 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a588ec5e-057a-43e5-93dd-992d1623da0c - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0540341c-8bf3-4ccc-a658-4f3a395825b4 - status: 202 Accepted - code: 202 - duration: 309.631017ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1806 - 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": "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: - - "1806" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0d1146ab-6a09-4611-92bf-5da08f1a245f - status: 200 OK - code: 200 - duration: 141.145401ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1895 - 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": "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: - - "1895" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ad7932f7-929a-4927-aa2f-dc4346b4101f - status: 200 OK - code: 200 - duration: 142.564196ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1941 - 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": "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: - - "1941" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d99a26e2-965a-429e-9960-9ded35f4da78 - status: 200 OK - code: 200 - duration: 148.713708ms - - 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/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - 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": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8dc70583-fa64-4f16-9b40-09d6777c224f - status: 404 Not Found - code: 404 - duration: 32.271868ms - - id: 98 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c0e31c30-b3d3-4035-8d09-6b1c6b270475 - status: 200 OK - code: 200 - duration: 79.529554ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/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:57:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 455bc43f-8a02-400e-875e-fdced19c1619 - status: 200 OK - code: 200 - duration: 103.339014ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/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:57:08 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4a738f8e-e128-4d5e-baab-cca43465e71a - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 95.693765ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/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:57:08 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 80e4a9ce-9e86-435b-acbd-af9f2872e283 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 121.562077ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1941 - 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": "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: - - "1941" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 731c1596-e8c1-438b-9b91-b1ddcdf98e23 - status: 200 OK - code: 200 - duration: 143.961801ms - - 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/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - 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": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d570daf7-7aa0-4fc9-b82b-8d16bf822479 - status: 404 Not Found - code: 404 - duration: 28.977666ms - - id: 104 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5e188a26-812e-4e90-9e9e-db0a4d366cd7 - status: 200 OK - code: 200 - duration: 74.174578ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/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:57:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7fecd5e4-fcfb-4cfa-bd71-b4e5deec43b9 - status: 200 OK - code: 200 - duration: 94.866188ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/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:57:09 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 43ece75f-b83f-4000-822e-df3f382c33a8 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 95.255696ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1941 - 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": "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: - - "1941" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dfa8ba7b-bc9e-4910-bd17-a4a5ac3af8f8 - status: 200 OK - code: 200 - duration: 140.342963ms - - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1941 - 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": "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: - - "1941" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 74560c00-139f-447f-b5b7-aa4b268eef40 - status: 200 OK - code: 200 - duration: 142.509947ms - - id: 109 - 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/3d2454b6-fa30-4d89-8f94-d4aff2694a1c/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:10 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f121b3d0-36de-479f-b569-e738b423ba85 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 797de5d7-f3f1-4eed-873d-998f3014710a - status: 202 Accepted - code: 202 - duration: 611.36281ms - - id: 110 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1858 - 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": "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: - - "1858" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aa3c395a-6046-44ef-b131-8ba720f9bc25 - status: 200 OK - code: 200 - duration: 151.795553ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - 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": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - eed5675b-8927-4922-8488-4b894f34fe23 - status: 404 Not Found - code: 404 - duration: 43.729006ms - - id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - 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": "ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0feee639-d54e-44d9-bbd9-7954aa9c2587 - status: 404 Not Found - code: 404 - duration: 33.429463ms - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 498 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 95daeec2-2f65-4146-9f96-fc1c7eb2a0df - status: 200 OK - code: 200 - duration: 95.307816ms - - id: 114 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab7aba8e-c160-4b8e-b4b2-172bb9de5bfc - 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:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dc45318a-1cdd-4abf-b2f0-adc50d2c05bd - status: 204 No Content - code: 204 - duration: 151.141742ms - - id: 115 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d2454b6-fa30-4d89-8f94-d4aff2694a1c - 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": "3d2454b6-fa30-4d89-8f94-d4aff2694a1c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b9a1944e-73ab-4712-af14-415df1f19b5c - status: 404 Not Found - code: 404 - duration: 49.930716ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 213983a8-24d5-4e72-a549-d79518e5ea46 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 38.702852ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4b7b0047-9978-4079-a8d0-9db8218b2a49 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 45.086938ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/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 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bd7295ca-8766-45c7-b606-fa427e95b225 + status: 200 OK + code: 200 + duration: 38.93083ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 236 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-cool-sanderson\",\"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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1744 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:43:29.380803+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2cf91373-c76c-4406-ab88-e009990ae756 + status: 201 Created + code: 201 + duration: 1.309162797s +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1790 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:43:29.380803+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1790" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d3ed5030-b2ad-4baa-8858-467fea302150 + status: 200 OK + code: 200 + duration: 148.06344ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1744 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:43:29.380803+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1c22dc2a-781f-41fa-b92d-46372deac35d + status: 200 OK + code: 200 + duration: 126.241254ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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-30T15:43:29.508325Z\", \"updated_at\":\"2025-10-30T15:43:29.508325Z\", \"references\":[{\"id\":\"5c94df5b-31de-4ebd-9c91-c3d4ec243045\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"7d130d21-89ba-4da3-be6d-08bed6949331\", \"created_at\":\"2025-10-30T15:43:29.508325Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c70317ad-556e-4abc-9bbd-83bea1ecabb7 + status: 200 OK + code: 200 + duration: 88.55564ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"db3eb7a1-70fc-44b8-b0b0-dec4107dac0f\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/7d130d21-89ba-4da3-be6d-08bed6949331/action\", \"href_result\": \"/servers/7d130d21-89ba-4da3-be6d-08bed6949331\", \"started_at\": \"2025-10-30T15:43:30.629714+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/db3eb7a1-70fc-44b8-b0b0-dec4107dac0f + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eff98afd-d323-4e08-aef2-4193ed603414 + status: 202 Accepted + code: 202 + duration: 275.313888ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1766 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:43:30.416565+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 28375b13-266e-462e-8ceb-6f285f481b12 + status: 200 OK + code: 200 + duration: 140.640926ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1946 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:43:32.471670+00:00\", \"bootscript\": 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\": \"201\", \"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: + - "1946" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0ac3eddb-00a6-4c32-a087-2e4b34ec9fda + status: 200 OK + code: 200 + duration: 148.712238ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1900 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:43:32.471670+00:00\", \"bootscript\": 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\": \"201\", \"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: + - "1900" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 41b50874-20a4-4a91-8c2c-59b90d2a8a87 + status: 200 OK + code: 200 + duration: 190.360025ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f1516a0b-5ceb-445b-aac3-539aae3f83e0 + status: 404 Not Found + code: 404 + duration: 25.557883ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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-30T15:43:29.508325Z\", \"updated_at\":\"2025-10-30T15:43:29.508325Z\", \"references\":[{\"id\":\"5c94df5b-31de-4ebd-9c91-c3d4ec243045\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"7d130d21-89ba-4da3-be6d-08bed6949331\", \"created_at\":\"2025-10-30T15:43:29.508325Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8458d3cd-dd1b-4d8b-bcc8-074792538994 + status: 200 OK + code: 200 + duration: 101.934108ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 35da4814-b331-4678-a9a7-e889fe19dcbd + status: 200 OK + code: 200 + duration: 89.932174ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0cf8c604-ddce-4898-b20e-9b73639991de + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 99.926391ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 359c6270-9c50-413c-b463-66b6d3b99c98 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 100.497913ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1946 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:43:32.471670+00:00\", \"bootscript\": 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\": \"201\", \"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: + - "1946" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eb2f9839-7c93-4c05-b74c-0414b05edd61 + status: 200 OK + code: 200 + duration: 148.173989ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 937f0fb0-44f0-4cfe-ad4b-3e3bb59cf70c + status: 404 Not Found + code: 404 + duration: 28.471209ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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-30T15:43:29.508325Z\", \"updated_at\":\"2025-10-30T15:43:29.508325Z\", \"references\":[{\"id\":\"5c94df5b-31de-4ebd-9c91-c3d4ec243045\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"7d130d21-89ba-4da3-be6d-08bed6949331\", \"created_at\":\"2025-10-30T15:43:29.508325Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - efd2a396-5798-484a-9c3d-0a2ae0920b47 + status: 200 OK + code: 200 + duration: 96.538066ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5e163adf-1f02-4adc-8996-f5e75e4052c4 + status: 200 OK + code: 200 + duration: 91.220871ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 56a67011-abf9-49e8-b9dd-0c914d246a41 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 123.14623ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1900 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:43:32.471670+00:00\", \"bootscript\": 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\": \"201\", \"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: + - "1900" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 491be027-df96-45d9-830b-0796f124e526 + status: 200 OK + code: 200 + duration: 142.615392ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7bd5d0fc-3eec-4669-b2ad-260d8121e6a7 + status: 404 Not Found + code: 404 + duration: 33.67956ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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-30T15:43:29.508325Z\", \"updated_at\":\"2025-10-30T15:43:29.508325Z\", \"references\":[{\"id\":\"5c94df5b-31de-4ebd-9c91-c3d4ec243045\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"7d130d21-89ba-4da3-be6d-08bed6949331\", \"created_at\":\"2025-10-30T15:43:29.508325Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 11bd6d01-7d1c-4a90-8737-04ad4183a4c3 + status: 200 OK + code: 200 + duration: 90.634351ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 966681dc-c2ff-45cb-9cc3-23784bfec1e4 + status: 200 OK + code: 200 + duration: 92.720424ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 674fd9ef-e449-4513-b4fc-967f0f7b41b7 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 86.738813ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1946 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:43:32.471670+00:00\", \"bootscript\": 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\": \"201\", \"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: + - "1946" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ec9a7725-82d7-4f86-a20f-db8b6cdf5305 + status: 200 OK + code: 200 + duration: 129.307558ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:38 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ecef8c14-a13c-41dd-a92d-81f702ccdfb2 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 51.583646ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:38 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0ade9da9-1fab-43d2-90da-6600897d5edc + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 46.109246ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1946 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:43:32.471670+00:00\", \"bootscript\": 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\": \"201\", \"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: + - "1946" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - be77a969-3ca1-4139-ab36-051e6bbdf972 + status: 200 OK + code: 200 + duration: 138.560556ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:38 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e7ddf6e2-522e-4c98-8985-328ec5044a15 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 46.375877ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:38 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8c608113-aa7a-4a6c-b3eb-c5c57620b916 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 36.836061ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1946 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:43:32.471670+00:00\", \"bootscript\": 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\": \"201\", \"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: + - "1946" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b90db144-20e8-4d5e-ad66-0d747a941f91 + status: 200 OK + code: 200 + duration: 163.752974ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1946 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:43:32.471670+00:00\", \"bootscript\": 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\": \"201\", \"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: + - "1946" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7b45c355-36de-49e3-ba09-c0043b3906fe + status: 200 OK + code: 200 + duration: 135.209329ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1946 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:43:32.471670+00:00\", \"bootscript\": 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\": \"201\", \"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: + - "1946" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ff9be27e-5f6c-4c25-a9d6-d44125348204 + status: 200 OK + code: 200 + duration: 148.348718ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1900 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:43:32.471670+00:00\", \"bootscript\": 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\": \"201\", \"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: + - "1900" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 09848f1e-7e82-4917-9c80-9407af335304 + status: 200 OK + code: 200 + duration: 161.611156ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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-30T15:43:29.508325Z\", \"updated_at\":\"2025-10-30T15:43:29.508325Z\", \"references\":[{\"id\":\"5c94df5b-31de-4ebd-9c91-c3d4ec243045\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"7d130d21-89ba-4da3-be6d-08bed6949331\", \"created_at\":\"2025-10-30T15:43:29.508325Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d51067c0-82c2-4065-bf9c-42cb4e4538c2 + status: 200 OK + code: 200 + duration: 86.713446ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 21 + host: api.scaleway.com + body: "{\"action\":\"poweroff\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 352 + body: "{\"task\": {\"id\": \"c1717bc3-5b59-42ed-9b46-f1afebb320bb\", \"description\": \"server_poweroff\", \"status\": \"pending\", \"href_from\": \"/servers/7d130d21-89ba-4da3-be6d-08bed6949331/action\", \"href_result\": \"/servers/7d130d21-89ba-4da3-be6d-08bed6949331\", \"started_at\": \"2025-10-30T15:43:39.391939+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "352" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:39 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c1717bc3-5b59-42ed-9b46-f1afebb320bb + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9bbfd1bd-3cd4-41be-b04e-755c4683ceea + status: 202 Accepted + code: 202 + duration: 247.579575ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1906 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:43:39.199861+00:00\", \"bootscript\": 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\": \"201\", \"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: + - "1906" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - be097b44-d75c-47a1-9c39-4c373d03f4d3 + status: 200 OK + code: 200 + duration: 154.606086ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1860 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:43:39.199861+00:00\", \"bootscript\": 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\": \"201\", \"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: + - "1860" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9461d02b-abc7-4e1b-884d-ba2100432338 + status: 200 OK + code: 200 + duration: 127.350047ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1860 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:43:39.199861+00:00\", \"bootscript\": 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\": \"201\", \"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: + - "1860" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d9375933-cbd7-4eb9-9f83-88b26c8ff93d + status: 200 OK + code: 200 + duration: 152.881935ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1906 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:43:39.199861+00:00\", \"bootscript\": 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\": \"201\", \"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: + - "1906" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 498f586b-8f75-417b-9841-392afd72d07e + status: 200 OK + code: 200 + duration: 166.735224ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1906 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:43:39.199861+00:00\", \"bootscript\": 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\": \"201\", \"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: + - "1906" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d4e8ac0d-2b36-4a9b-b932-84460ea93b24 + status: 200 OK + code: 200 + duration: 162.950264ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1906 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:43:39.199861+00:00\", \"bootscript\": 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\": \"201\", \"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: + - "1906" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fb35b28c-bac1-4074-95ed-481bf05f4abc + status: 200 OK + code: 200 + duration: 155.890051ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1860 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:43:39.199861+00:00\", \"bootscript\": 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\": \"201\", \"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: + - "1860" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 391d0876-98e7-405d-bd99-492b58cdc81d + status: 200 OK + code: 200 + duration: 151.073297ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1790 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:44:12.340546+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1790" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 31c3a142-0562-4fb5-83eb-a154530d62be + status: 200 OK + code: 200 + duration: 159.937166ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 29 + host: api.scaleway.com + body: "{\"commercial_type\":\"PRO2-XS\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1789 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:44:15.723379+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1789" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2f12bba2-f302-40ed-9e4d-96b235a85063 + status: 200 OK + code: 200 + duration: 319.459385ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1789 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:44:15.723379+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1789" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2d3cabc2-3820-44f4-9b12-cddf70fdfbd8 + status: 200 OK + code: 200 + duration: 153.887157ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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-30T15:43:29.508325Z\", \"updated_at\":\"2025-10-30T15:43:29.508325Z\", \"references\":[{\"id\":\"5c94df5b-31de-4ebd-9c91-c3d4ec243045\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"7d130d21-89ba-4da3-be6d-08bed6949331\", \"created_at\":\"2025-10-30T15:43:29.508325Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 16b904ac-69c4-40dc-93f4-d8a3f9491547 + status: 200 OK + code: 200 + duration: 86.141028ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"a43ca2c2-a03a-49a7-959a-cf8e38e33aef\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/7d130d21-89ba-4da3-be6d-08bed6949331/action\", \"href_result\": \"/servers/7d130d21-89ba-4da3-be6d-08bed6949331\", \"started_at\": \"2025-10-30T15:44:16.457471+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:16 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a43ca2c2-a03a-49a7-959a-cf8e38e33aef + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e10962c1-8730-487e-9934-ccf25d804b84 + status: 202 Accepted + code: 202 + duration: 259.362708ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1765 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:44:16.247276+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: + - "1765" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a8b7f99e-3b3e-4d19-8137-6a43b39d1412 + status: 200 OK + code: 200 + duration: 146.668344ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1899 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:44:18.597354+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"33\", \"hypervisor_id\": \"301\", \"node_id\": \"28\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 20d1eefc-e498-4a94-8b96-dd9d914b449d + status: 200 OK + code: 200 + duration: 139.589226ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1899 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:44:18.597354+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"33\", \"hypervisor_id\": \"301\", \"node_id\": \"28\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 79310aa6-369d-4f4a-9263-841b3028cffc + status: 200 OK + code: 200 + duration: 167.30478ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ac757d0d-afc4-42aa-8834-7ede2091c4ab + status: 404 Not Found + code: 404 + duration: 26.320186ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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-30T15:43:29.508325Z\", \"updated_at\":\"2025-10-30T15:43:29.508325Z\", \"references\":[{\"id\":\"5c94df5b-31de-4ebd-9c91-c3d4ec243045\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"7d130d21-89ba-4da3-be6d-08bed6949331\", \"created_at\":\"2025-10-30T15:43:29.508325Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8557d9e6-34bb-48f7-bde2-29d4e1cc7db1 + status: 200 OK + code: 200 + duration: 81.758518ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7edac3f0-d3c1-4aae-8b1e-f35b9445c753 + status: 200 OK + code: 200 + duration: 86.089852ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:22 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 82a23f40-fcdd-4f7c-b71b-46a0f3bfc286 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 96.913098ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:22 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 413fbd9b-301c-48db-b658-046275e49cb3 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 90.648976ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:44:18.597354+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"33\", \"hypervisor_id\": \"301\", \"node_id\": \"28\"}, \"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: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 96d5a0f8-b3a1-43fa-8cf4-fcb24bb8a2a3 + status: 200 OK + code: 200 + duration: 129.749828ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bbb814ef-893b-46ba-b23e-6ab4d3b341a6 + status: 404 Not Found + code: 404 + duration: 26.885917ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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-30T15:43:29.508325Z\", \"updated_at\":\"2025-10-30T15:43:29.508325Z\", \"references\":[{\"id\":\"5c94df5b-31de-4ebd-9c91-c3d4ec243045\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"7d130d21-89ba-4da3-be6d-08bed6949331\", \"created_at\":\"2025-10-30T15:43:29.508325Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eea319eb-13d7-4f4d-a545-96094c8d8df0 + status: 200 OK + code: 200 + duration: 87.183183ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 61792fe2-4c7e-4bec-83ec-631fc3fc02c3 + status: 200 OK + code: 200 + duration: 105.57693ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:23 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7751180f-2fcf-43f6-a30a-30db9b44e79e + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 95.398165ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:44:18.597354+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"33\", \"hypervisor_id\": \"301\", \"node_id\": \"28\"}, \"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: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d09920b7-4830-411b-99c0-4947a54e930f + status: 200 OK + code: 200 + duration: 130.482593ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9388ed86-bef6-42f2-bacd-ace39451e55d + status: 404 Not Found + code: 404 + duration: 28.287838ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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-30T15:43:29.508325Z\", \"updated_at\":\"2025-10-30T15:43:29.508325Z\", \"references\":[{\"id\":\"5c94df5b-31de-4ebd-9c91-c3d4ec243045\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"7d130d21-89ba-4da3-be6d-08bed6949331\", \"created_at\":\"2025-10-30T15:43:29.508325Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 75bd0369-510f-4777-ad47-9c38383fdc7c + status: 200 OK + code: 200 + duration: 86.299066ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 54758fd8-fbd4-44f0-8351-f5f0a83ecfa1 + status: 200 OK + code: 200 + duration: 103.900555ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:23 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 52349cb5-f762-4962-923e-63c4a91265cc + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 97.371296ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1899 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:44:18.597354+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"33\", \"hypervisor_id\": \"301\", \"node_id\": \"28\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 81227665-466b-4e41-b2b3-3d5146093a5d + status: 200 OK + code: 200 + duration: 142.684443ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:23 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3576850b-071a-40e1-a01e-271119d82e72 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 47.01543ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:23 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f741fc35-db0f-48f8-ab95-0acf40ed3387 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 44.485804ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:44:18.597354+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"33\", \"hypervisor_id\": \"301\", \"node_id\": \"28\"}, \"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: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 31111801-fd79-4e5a-9980-f2cf2b6cab35 + status: 200 OK + code: 200 + duration: 135.121034ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:24 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d8bb0543-2d2a-42e5-a39c-9c58f5ad201f + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 38.13976ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:24 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 554b34db-6769-4d80-afae-6e1b4c6f7266 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 75.523651ms +- id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:44:18.597354+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"33\", \"hypervisor_id\": \"301\", \"node_id\": \"28\"}, \"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: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c3e4d586-fee3-4605-a802-347ca969176f + status: 200 OK + code: 200 + duration: 131.065517ms +- id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:44:18.597354+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"33\", \"hypervisor_id\": \"301\", \"node_id\": \"28\"}, \"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: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eb0f1b30-a344-496c-91d0-25442be4e731 + status: 200 OK + code: 200 + duration: 118.194721ms +- id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:44:18.597354+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"33\", \"hypervisor_id\": \"301\", \"node_id\": \"28\"}, \"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: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 59f8bd22-cd0f-4450-8718-ebab0f352bf6 + status: 200 OK + code: 200 + duration: 152.769272ms +- id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:44:18.597354+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"33\", \"hypervisor_id\": \"301\", \"node_id\": \"28\"}, \"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: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5114bc70-2d27-4c28-a8ac-23d003e19a82 + status: 200 OK + code: 200 + duration: 142.336982ms +- id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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-30T15:43:29.508325Z\", \"updated_at\":\"2025-10-30T15:43:29.508325Z\", \"references\":[{\"id\":\"5c94df5b-31de-4ebd-9c91-c3d4ec243045\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"7d130d21-89ba-4da3-be6d-08bed6949331\", \"created_at\":\"2025-10-30T15:43:29.508325Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8d4afe2b-c358-4cd1-91be-8ff4a70fc793 + status: 200 OK + code: 200 + duration: 82.818736ms +- id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 21 + host: api.scaleway.com + body: "{\"action\":\"poweroff\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 352 + body: "{\"task\": {\"id\": \"4745c98f-ce60-4d23-8a33-6a8a0b84628c\", \"description\": \"server_poweroff\", \"status\": \"pending\", \"href_from\": \"/servers/7d130d21-89ba-4da3-be6d-08bed6949331/action\", \"href_result\": \"/servers/7d130d21-89ba-4da3-be6d-08bed6949331\", \"started_at\": \"2025-10-30T15:44:25.033260+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "352" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:25 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4745c98f-ce60-4d23-8a33-6a8a0b84628c + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b713704c-6aff-4283-8aa9-ca31978516cf + status: 202 Accepted + code: 202 + duration: 220.033719ms +- id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1905 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:44:24.860334+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"33\", \"hypervisor_id\": \"301\", \"node_id\": \"28\"}, \"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: + - "1905" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4590a120-d4e3-45dd-8581-ca2c19200582 + status: 200 OK + code: 200 + duration: 130.136865ms +- id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1859 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:44:24.860334+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"33\", \"hypervisor_id\": \"301\", \"node_id\": \"28\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4281a09f-b192-49a0-b75c-d6db4cbb3787 + status: 200 OK + code: 200 + duration: 149.427885ms +- id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1859 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:44:24.860334+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"33\", \"hypervisor_id\": \"301\", \"node_id\": \"28\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3ee67e73-c4e1-4c0b-9e1d-13938a15a40d + status: 200 OK + code: 200 + duration: 161.720156ms +- id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1905 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:44:24.860334+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"33\", \"hypervisor_id\": \"301\", \"node_id\": \"28\"}, \"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: + - "1905" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4da78768-fe55-4652-a7e8-872d17a8881f + status: 200 OK + code: 200 + duration: 146.051043ms +- id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1905 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:44:24.860334+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"33\", \"hypervisor_id\": \"301\", \"node_id\": \"28\"}, \"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: + - "1905" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c373f5d9-baaf-4d15-b079-bd10d789ca22 + status: 200 OK + code: 200 + duration: 164.075198ms +- id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1905 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:44:24.860334+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"33\", \"hypervisor_id\": \"301\", \"node_id\": \"28\"}, \"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: + - "1905" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8c1a357e-dbcc-40f7-8df2-ea06b478ff65 + status: 200 OK + code: 200 + duration: 138.862088ms +- id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1859 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:44:24.860334+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"33\", \"hypervisor_id\": \"301\", \"node_id\": \"28\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 628e2360-69be-47b8-84c1-5bacc6c0d666 + status: 200 OK + code: 200 + duration: 151.171232ms +- id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1789 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:44:57.942686+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1789" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 90ed1acc-a01c-4481-bd6b-4c592df247f9 + status: 200 OK + code: 200 + duration: 205.023803ms +- id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 30 + host: api.scaleway.com + body: "{\"commercial_type\":\"PRO2-XXS\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1790 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:45:01.396883+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1790" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 614c6e71-2191-4ede-baa6-e64b3bbb092f + status: 200 OK + code: 200 + duration: 739.136098ms +- id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1790 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:45:01.396883+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1790" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 59b72c6a-8e41-4345-a916-cc604c056d60 + status: 200 OK + code: 200 + duration: 251.020415ms +- id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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-30T15:43:29.508325Z\", \"updated_at\":\"2025-10-30T15:43:29.508325Z\", \"references\":[{\"id\":\"5c94df5b-31de-4ebd-9c91-c3d4ec243045\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"7d130d21-89ba-4da3-be6d-08bed6949331\", \"created_at\":\"2025-10-30T15:43:29.508325Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 701bdf9a-ec28-4f46-9366-d6d43e6b8fa9 + status: 200 OK + code: 200 + duration: 116.092674ms +- id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"5ae19189-b907-4ca7-8d30-c9baa78f8e8e\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/7d130d21-89ba-4da3-be6d-08bed6949331/action\", \"href_result\": \"/servers/7d130d21-89ba-4da3-be6d-08bed6949331\", \"started_at\": \"2025-10-30T15:45:02.753985+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:02 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5ae19189-b907-4ca7-8d30-c9baa78f8e8e + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 90cd4cad-3575-4775-81fe-95bf315648a5 + status: 202 Accepted + code: 202 + duration: 391.497877ms +- id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1812 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:45:02.465193+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: + - "1812" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 754326c4-da98-413b-8e71-d81190f6abc2 + status: 200 OK + code: 200 + duration: 199.571815ms +- id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1900 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:45:05.078430+00:00\", \"bootscript\": 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\": \"301\", \"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: + - "1900" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4f48e0aa-18bc-40ac-8e0b-38d20cf325a1 + status: 200 OK + code: 200 + duration: 175.601377ms +- id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1900 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:45:05.078430+00:00\", \"bootscript\": 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\": \"301\", \"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: + - "1900" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5d6e1a24-9cd5-4617-8b82-c946b4ac9181 + status: 200 OK + code: 200 + duration: 169.253599ms +- id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2c6008c2-9fd7-4c4a-9fcb-54ccd2a9fa1d + status: 404 Not Found + code: 404 + duration: 46.507521ms +- id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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-30T15:43:29.508325Z\", \"updated_at\":\"2025-10-30T15:43:29.508325Z\", \"references\":[{\"id\":\"5c94df5b-31de-4ebd-9c91-c3d4ec243045\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"7d130d21-89ba-4da3-be6d-08bed6949331\", \"created_at\":\"2025-10-30T15:43:29.508325Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 76d44700-c877-4d9d-ab7a-99ee2adf00fe + status: 200 OK + code: 200 + duration: 84.49657ms +- id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d68a34ca-7bf3-46e1-b893-3e5997344ea5 + status: 200 OK + code: 200 + duration: 94.167763ms +- id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:08 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2672ccfe-adc5-46e1-bad7-98df18b95b98 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 130.522286ms +- id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:08 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 040cfaf6-2450-4777-a88b-af6f63347048 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 131.016904ms +- id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1946 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:45:05.078430+00:00\", \"bootscript\": 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\": \"301\", \"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: + - "1946" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bc6c3178-453e-4e86-8e77-42451628ddf5 + status: 200 OK + code: 200 + duration: 179.40876ms +- id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ffe90bec-1332-408f-9527-155b3715e773 + status: 404 Not Found + code: 404 + duration: 33.085941ms +- id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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-30T15:43:29.508325Z\", \"updated_at\":\"2025-10-30T15:43:29.508325Z\", \"references\":[{\"id\":\"5c94df5b-31de-4ebd-9c91-c3d4ec243045\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"7d130d21-89ba-4da3-be6d-08bed6949331\", \"created_at\":\"2025-10-30T15:43:29.508325Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4a0b0496-ac96-48e8-a3da-b75d0498cf09 + status: 200 OK + code: 200 + duration: 98.27009ms +- id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - faa2902a-376e-4ea3-8ac1-e86fd0e0b019 + status: 200 OK + code: 200 + duration: 129.714442ms +- id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:09 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 08565750-125f-4cc8-9479-078ee6fdcbe7 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 99.249566ms +- id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1900 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:45:05.078430+00:00\", \"bootscript\": 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\": \"301\", \"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: + - "1900" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - da157c84-944b-40bb-9ae7-43d219ca50b1 + status: 200 OK + code: 200 + duration: 164.349808ms +- id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1946 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:45:05.078430+00:00\", \"bootscript\": 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\": \"301\", \"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: + - "1946" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9f23fe6d-8ade-4b7b-86e5-c6751a55a3dc + status: 200 OK + code: 200 + duration: 190.69826ms +- id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"aa96b99e-f9f1-4c63-977c-43472265550b\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/7d130d21-89ba-4da3-be6d-08bed6949331/action\", \"href_result\": \"/servers/7d130d21-89ba-4da3-be6d-08bed6949331\", \"started_at\": \"2025-10-30T15:45:10.511900+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:10 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/aa96b99e-f9f1-4c63-977c-43472265550b + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 372210b0-fc86-46e7-9e38-33d540389af7 + status: 202 Accepted + code: 202 + duration: 355.27233ms +- id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1909 + body: "{\"server\": {\"id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\", \"name\": \"tf-srv-cool-sanderson\", \"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-cool-sanderson\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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:6d:19\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:29.380803+00:00\", \"modification_date\": \"2025-10-30T15:45:10.223336+00:00\", \"bootscript\": 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\": \"301\", \"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: + - "1909" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 85fccbff-3817-47a2-b9a9-535784df781b + status: 200 OK + code: 200 + duration: 155.472394ms +- id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 279a7818-1dc2-4ebf-894e-680a5aca6b8d + status: 404 Not Found + code: 404 + duration: 46.68801ms +- id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c0642dca-8165-4e9a-8b61-ba89ec135a68 + status: 404 Not Found + code: 404 + duration: 35.019038ms +- id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 498 + body: "{\"id\":\"f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868\", \"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-30T15:43:29.508325Z\", \"updated_at\":\"2025-10-30T15:45:12.011911Z\", \"references\":[], \"parent_snapshot_id\":\"36b4ce54-c67a-4f68-ab74-839515834352\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:45:12.011911Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "498" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 98afbb90-7c70-4ebe-bdc1-6b586b2bcac5 + status: 200 OK + code: 200 + duration: 84.651761ms +- id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4a2c1d3-b6e8-419c-b7f8-6dd671cd7868 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c348c5a0-169d-4e4a-a676-d49ad5c41d51 + status: 204 No Content + code: 204 + duration: 191.450292ms +- id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d130d21-89ba-4da3-be6d-08bed6949331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"7d130d21-89ba-4da3-be6d-08bed6949331\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 588ec229-1738-4dc8-b3d7-72275852176f + status: 404 Not Found + code: 404 + duration: 58.067478ms diff --git a/internal/services/instance/testdata/server-minimal1.cassette.yaml b/internal/services/instance/testdata/server-minimal1.cassette.yaml index 495a2f3a1..395cdd189 100644 --- a/internal/services/instance/testdata/server-minimal1.cassette.yaml +++ b/internal/services/instance/testdata/server-minimal1.cassette.yaml @@ -1,1730 +1,1367 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 27e85e81-bf10-4801-8bb1-be709c5e9f95 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 67.829394ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 061db939-f78e-4271-8377-f78f78c934b8 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 47.133037ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 13184663-97ef-4052-98f5-88ea7dff136f - status: 200 OK - code: 200 - duration: 59.76177ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 301 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1801 - uncompressed: false - 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: - - "1801" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 315ee5c5-be9a-40e9-8539-ea88ada7b867 - status: 201 Created - code: 201 - duration: 1.80463131s - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1801 - uncompressed: false - 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: - - "1801" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d1e13560-5844-412d-aa81-3b8ffe4c51d8 - status: 200 OK - code: 200 - duration: 260.613876ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1847 - uncompressed: false - 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: - - "1847" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d5715d72-40cd-45a8-aaea-291ccacf4783 - status: 200 OK - code: 200 - duration: 141.617692ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ebbe4f72-7b73-404f-99b8-5e0e0e9a2101 - status: 200 OK - code: 200 - duration: 97.276134ms - - id: 7 - 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/a79b4256-31a3-44c1-94e2-c0c7a5a74c72/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/968518ac-aac6-4f2d-bd44-acbebbed6928 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4058ed6c-27ff-4b74-8628-f1734d9838d5 - status: 202 Accepted - code: 202 - duration: 517.316892ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1869 - uncompressed: false - 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: - - "1869" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1276f290-bb1f-43e0-8787-8606d0cf5f06 - status: 200 OK - code: 200 - duration: 161.460874ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1957 - uncompressed: false - 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: - - "1957" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 45697f04-14ff-4ade-a24c-38c285bec4f4 - status: 200 OK - code: 200 - duration: 163.45746ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1957 - uncompressed: false - 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: - - "1957" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9b5486ac-b1fa-4f25-b083-557a3467a9bb - status: 200 OK - code: 200 - duration: 144.105025ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af - 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": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5c8c9353-2ac2-438e-a036-129d3973e734 - status: 404 Not Found - code: 404 - duration: 32.544771ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c35574b1-cb68-47c2-9ea8-aec8d900404d - status: 200 OK - code: 200 - duration: 75.665688ms - - 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/a79b4256-31a3-44c1-94e2-c0c7a5a74c72/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:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3dcd07ab-cc4c-4e1b-bd7d-04d79e19760a - status: 200 OK - code: 200 - duration: 102.099915ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72/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:46 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 74942189-1f2e-42ab-80d9-2bb0ac237f5c - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 92.207889ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2003 - uncompressed: false - 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: - - "2003" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6b5a733d-b269-4332-b1d2-b303109e829e - status: 200 OK - code: 200 - duration: 141.427799ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2003 - uncompressed: false - 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: - - "2003" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0c28914a-a14d-4b4e-aa98-c0bbd179b87e - status: 200 OK - code: 200 - duration: 170.703309ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af - 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": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ec2d82cd-fabc-42e9-b178-7032c9389723 - status: 404 Not Found - code: 404 - duration: 27.532961ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9d6fb729-1d38-47dc-9ef5-b7258356863b - status: 200 OK - code: 200 - duration: 88.387475ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72/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:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2bc00ab4-3db0-4b98-b0d3-43eb5ec14b31 - status: 200 OK - code: 200 - duration: 95.012513ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72/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:47 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ae5dd57e-a119-47db-ad4c-b074dd77435a - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 129.691005ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2003 - uncompressed: false - 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: - - "2003" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 17b5001b-0452-42d8-b028-72d41cdb7c5a - status: 200 OK - code: 200 - duration: 143.441385ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af - 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": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2a02ee6c-4d76-4953-b7c5-eeea32f7f0e5 - status: 404 Not Found - code: 404 - duration: 27.084974ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2e88c92c-a22a-4f96-b619-ed48e610c401 - status: 200 OK - code: 200 - duration: 79.271221ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72/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:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8eb04ee2-125a-4958-a537-239ec8a2c794 - status: 200 OK - code: 200 - duration: 103.90451ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72/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:48 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0755e1e0-dd55-40a9-9197-ab95c0ebd5f7 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 109.047245ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1957 - uncompressed: false - 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: - - "1957" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e8d1fc65-9c5b-4928-9ae1-3483675cd37a - status: 200 OK - code: 200 - duration: 161.31736ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1957 - uncompressed: false - 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: - - "1957" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cf303694-11f9-4edc-b480-f0a7c94fa748 - status: 200 OK - code: 200 - duration: 147.06999ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af - 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": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9691e721-c09d-401d-a5bd-84ef3b1f0637 - status: 404 Not Found - code: 404 - duration: 25.970128ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 81c50c15-412f-475b-b094-979e44b65560 - status: 200 OK - code: 200 - duration: 88.657732ms - - 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/a79b4256-31a3-44c1-94e2-c0c7a5a74c72/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:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6f271efc-d536-4718-9a45-ec4bf40e7217 - status: 200 OK - code: 200 - duration: 112.288696ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72/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:49 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 79072c26-4a06-48de-98ec-2a5f379876dc - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 84.872954ms - - 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/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2003 - uncompressed: false - 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: - - "2003" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d0af6d84-5396-4c3d-8148-ad91ca1335b0 - status: 200 OK - code: 200 - duration: 156.8249ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2043 - uncompressed: false - 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: - - "2043" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 997cbef7-1689-468b-9c60-d4020308ade8 - status: 200 OK - code: 200 - duration: 147.348391ms - - id: 34 - 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/a79b4256-31a3-44c1-94e2-c0c7a5a74c72/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7c94c19e-cad3-43d3-8e3a-647607d028e6 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 11c3a42f-60ac-4baa-8d4e-57b6f8a607f6 - status: 202 Accepted - code: 202 - duration: 316.189499ms - - 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/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1966 - uncompressed: false - 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: - - "1966" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4f64ff4f-fbbf-4319-9b8f-a0d3efbad27f - status: 200 OK - code: 200 - duration: 143.76427ms - - 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/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 - 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": "a79b4256-31a3-44c1-94e2-c0c7a5a74c72"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2673a3e7-e59b-480a-ac04-8092a1da6bd2 - status: 404 Not Found - code: 404 - duration: 61.999237ms - - 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/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af - 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": "96daa29c-eb53-42f6-92c1-2eee2a0ba2af"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4b63bb98-6f0e-4e00-9e73-10ad0a9e58c1 - status: 404 Not Found - code: 404 - duration: 32.114969ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ef84ec30-9216-4520-babf-1beb791d13ea - status: 200 OK - code: 200 - duration: 73.48356ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/96daa29c-eb53-42f6-92c1-2eee2a0ba2af - 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:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9b0e134a-8e04-474a-ac29-d14da90e0852 - status: 204 No Content - code: 204 - duration: 178.856809ms - - 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/a79b4256-31a3-44c1-94e2-c0c7a5a74c72 - 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": "a79b4256-31a3-44c1-94e2-c0c7a5a74c72"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 11f35d6e-2564-4805-8122-dc43adcda696 - status: 404 Not Found - code: 404 - duration: 47.603139ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:34 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 04fbcfd2-ef73-459f-9034-ad18aa24d54c + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 45.295579ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:34 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fb6ce689-8da5-45fa-940d-eae5b71de837 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 35.364841ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f18b989f-ad07-4c3c-ba90-155ed4564b8c + status: 200 OK + code: 200 + duration: 44.443952ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 296 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-hopeful-nobel\",\"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\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1791 + body: "{\"server\": {\"id\": \"d8842bfa-ee0b-4a8f-b612-e87ad8e3a602\", \"name\": \"tf-srv-hopeful-nobel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-nobel\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\", \"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:6d:21\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:35.211073+00:00\", \"modification_date\": \"2025-10-30T15:43:35.211073+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1791" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4e0ea62d-7d7e-4ffc-a88b-88e0441dfcdd + status: 201 Created + code: 201 + duration: 1.459199545s +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1837 + body: "{\"server\": {\"id\": \"d8842bfa-ee0b-4a8f-b612-e87ad8e3a602\", \"name\": \"tf-srv-hopeful-nobel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-nobel\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\", \"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:6d:21\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:35.211073+00:00\", \"modification_date\": \"2025-10-30T15:43:35.211073+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1837" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8588a768-a90f-4ba3-9ef9-4d10a9d9dc8b + status: 200 OK + code: 200 + duration: 142.836357ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1791 + body: "{\"server\": {\"id\": \"d8842bfa-ee0b-4a8f-b612-e87ad8e3a602\", \"name\": \"tf-srv-hopeful-nobel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-nobel\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\", \"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:6d:21\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:35.211073+00:00\", \"modification_date\": \"2025-10-30T15:43:35.211073+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1791" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 435a1b63-9183-49fc-bb1a-15b82db93f24 + status: 200 OK + code: 200 + duration: 171.999243ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/33f8ccf9-53e9-4e83-a077-43bbf5f6a342 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\", \"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-30T15:43:35.350591Z\", \"updated_at\":\"2025-10-30T15:43:35.350591Z\", \"references\":[{\"id\":\"b1f31ab1-c631-4d9b-afb0-503b846a0cb5\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"d8842bfa-ee0b-4a8f-b612-e87ad8e3a602\", \"created_at\":\"2025-10-30T15:43:35.350591Z\", \"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: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d9d6a232-8fb4-4687-acef-18d093d2a178 + status: 200 OK + code: 200 + duration: 94.772673ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"eb7a5afe-dc45-415e-a9ed-8297339c6b67\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602/action\", \"href_result\": \"/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602\", \"started_at\": \"2025-10-30T15:43:36.752624+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/eb7a5afe-dc45-415e-a9ed-8297339c6b67 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e2ec0b6a-b8ae-4837-b543-fb84eab3054a + status: 202 Accepted + code: 202 + duration: 375.506442ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1859 + body: "{\"server\": {\"id\": \"d8842bfa-ee0b-4a8f-b612-e87ad8e3a602\", \"name\": \"tf-srv-hopeful-nobel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-nobel\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\", \"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:6d:21\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:35.211073+00:00\", \"modification_date\": \"2025-10-30T15:43:36.491805+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: + - "1859" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f083d55f-3290-431f-bc3c-39a43c769512 + status: 200 OK + code: 200 + duration: 146.147387ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1992 + body: "{\"server\": {\"id\": \"d8842bfa-ee0b-4a8f-b612-e87ad8e3a602\", \"name\": \"tf-srv-hopeful-nobel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-nobel\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\", \"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:6d:21\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:35.211073+00:00\", \"modification_date\": \"2025-10-30T15:43:39.417674+00:00\", \"bootscript\": 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\": \"103\", \"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: + - "1992" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 55201555-a632-4a2f-bd29-8da726136147 + status: 200 OK + code: 200 + duration: 157.255506ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1992 + body: "{\"server\": {\"id\": \"d8842bfa-ee0b-4a8f-b612-e87ad8e3a602\", \"name\": \"tf-srv-hopeful-nobel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-nobel\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\", \"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:6d:21\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:35.211073+00:00\", \"modification_date\": \"2025-10-30T15:43:39.417674+00:00\", \"bootscript\": 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\": \"103\", \"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: + - "1992" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1429109e-c82c-4353-abf9-86b55e1772bb + status: 200 OK + code: 200 + duration: 151.301688ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/33f8ccf9-53e9-4e83-a077-43bbf5f6a342 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d45500eb-d501-45e3-bf19-eb84fcf5499e + status: 404 Not Found + code: 404 + duration: 24.932952ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/33f8ccf9-53e9-4e83-a077-43bbf5f6a342 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\", \"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-30T15:43:35.350591Z\", \"updated_at\":\"2025-10-30T15:43:35.350591Z\", \"references\":[{\"id\":\"b1f31ab1-c631-4d9b-afb0-503b846a0cb5\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"d8842bfa-ee0b-4a8f-b612-e87ad8e3a602\", \"created_at\":\"2025-10-30T15:43:35.350591Z\", \"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: + - Thu, 30 Oct 2025 15:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9b45874a-9bea-44c8-81d2-d642db17d0fb + status: 200 OK + code: 200 + duration: 89.17812ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5f3e42e8-13aa-45e2-862d-6bb21982fe12 + status: 200 OK + code: 200 + duration: 103.710191ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:42 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 753138ac-13a4-406d-b631-7c5dd671bbdb + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 110.489548ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1992 + body: "{\"server\": {\"id\": \"d8842bfa-ee0b-4a8f-b612-e87ad8e3a602\", \"name\": \"tf-srv-hopeful-nobel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-nobel\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\", \"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:6d:21\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:35.211073+00:00\", \"modification_date\": \"2025-10-30T15:43:39.417674+00:00\", \"bootscript\": 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\": \"103\", \"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: + - "1992" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b918ca32-91fa-4187-b12f-6ea74af840ec + status: 200 OK + code: 200 + duration: 142.722885ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1992 + body: "{\"server\": {\"id\": \"d8842bfa-ee0b-4a8f-b612-e87ad8e3a602\", \"name\": \"tf-srv-hopeful-nobel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-nobel\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\", \"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:6d:21\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:35.211073+00:00\", \"modification_date\": \"2025-10-30T15:43:39.417674+00:00\", \"bootscript\": 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\": \"103\", \"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: + - "1992" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 99f3e84b-51a3-4ddd-bcd0-f99139aabf07 + status: 200 OK + code: 200 + duration: 143.878774ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/33f8ccf9-53e9-4e83-a077-43bbf5f6a342 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a4474d25-5527-4bbd-a044-04e876ce68b9 + status: 404 Not Found + code: 404 + duration: 28.494503ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/33f8ccf9-53e9-4e83-a077-43bbf5f6a342 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\", \"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-30T15:43:35.350591Z\", \"updated_at\":\"2025-10-30T15:43:35.350591Z\", \"references\":[{\"id\":\"b1f31ab1-c631-4d9b-afb0-503b846a0cb5\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"d8842bfa-ee0b-4a8f-b612-e87ad8e3a602\", \"created_at\":\"2025-10-30T15:43:35.350591Z\", \"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: + - Thu, 30 Oct 2025 15:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7480147a-77ee-4b26-913b-a3ec76462835 + status: 200 OK + code: 200 + duration: 83.315282ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7cc758c5-d109-43e9-9a22-794da5262d46 + status: 200 OK + code: 200 + duration: 95.105961ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:43 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 79bb735f-1c26-4f53-ad1b-e30daf8dd3ab + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 113.791171ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1946 + body: "{\"server\": {\"id\": \"d8842bfa-ee0b-4a8f-b612-e87ad8e3a602\", \"name\": \"tf-srv-hopeful-nobel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-nobel\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\", \"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:6d:21\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:35.211073+00:00\", \"modification_date\": \"2025-10-30T15:43:39.417674+00:00\", \"bootscript\": 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\": \"103\", \"node_id\": \"1\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1946" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 78909bc1-fc96-4170-8271-becee224981b + status: 200 OK + code: 200 + duration: 147.654516ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/33f8ccf9-53e9-4e83-a077-43bbf5f6a342 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 658a7df0-7239-4dbf-a48c-99d8d0f5de06 + status: 404 Not Found + code: 404 + duration: 25.056935ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/33f8ccf9-53e9-4e83-a077-43bbf5f6a342 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\", \"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-30T15:43:35.350591Z\", \"updated_at\":\"2025-10-30T15:43:35.350591Z\", \"references\":[{\"id\":\"b1f31ab1-c631-4d9b-afb0-503b846a0cb5\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"d8842bfa-ee0b-4a8f-b612-e87ad8e3a602\", \"created_at\":\"2025-10-30T15:43:35.350591Z\", \"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: + - Thu, 30 Oct 2025 15:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c95ed188-b315-489d-9146-881c15e9f636 + status: 200 OK + code: 200 + duration: 87.041782ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c91c3496-ebe3-4ada-abbc-6525d247fc36 + status: 200 OK + code: 200 + duration: 136.044989ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4b99bef5-d910-453f-803c-252cf3f38c47 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 89.158062ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1992 + body: "{\"server\": {\"id\": \"d8842bfa-ee0b-4a8f-b612-e87ad8e3a602\", \"name\": \"tf-srv-hopeful-nobel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-nobel\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\", \"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:6d:21\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:35.211073+00:00\", \"modification_date\": \"2025-10-30T15:43:39.417674+00:00\", \"bootscript\": 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\": \"103\", \"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: + - "1992" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2255d29a-a28a-47f8-814b-44e10a9e1e11 + status: 200 OK + code: 200 + duration: 162.826588ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1992 + body: "{\"server\": {\"id\": \"d8842bfa-ee0b-4a8f-b612-e87ad8e3a602\", \"name\": \"tf-srv-hopeful-nobel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-nobel\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\", \"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:6d:21\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:35.211073+00:00\", \"modification_date\": \"2025-10-30T15:43:39.417674+00:00\", \"bootscript\": 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\": \"103\", \"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: + - "1992" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - beb580ea-c23c-44a7-b9e5-6a7aac0b8396 + status: 200 OK + code: 200 + duration: 136.376731ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/33f8ccf9-53e9-4e83-a077-43bbf5f6a342 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e4d739ae-0b14-4fe8-b66a-4f76edef8345 + status: 404 Not Found + code: 404 + duration: 23.777615ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/33f8ccf9-53e9-4e83-a077-43bbf5f6a342 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\", \"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-30T15:43:35.350591Z\", \"updated_at\":\"2025-10-30T15:43:35.350591Z\", \"references\":[{\"id\":\"b1f31ab1-c631-4d9b-afb0-503b846a0cb5\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"d8842bfa-ee0b-4a8f-b612-e87ad8e3a602\", \"created_at\":\"2025-10-30T15:43:35.350591Z\", \"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: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e3fc07db-bb29-4c41-b26d-6958c490dcad + status: 200 OK + code: 200 + duration: 97.115249ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2686c0fd-8908-488c-a0cf-0a02e842d7c5 + status: 200 OK + code: 200 + duration: 96.237212ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:45 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ff0bea92-6837-43eb-a403-2a293d29135a + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 90.930488ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1992 + body: "{\"server\": {\"id\": \"d8842bfa-ee0b-4a8f-b612-e87ad8e3a602\", \"name\": \"tf-srv-hopeful-nobel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-nobel\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\", \"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:6d:21\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:35.211073+00:00\", \"modification_date\": \"2025-10-30T15:43:39.417674+00:00\", \"bootscript\": 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\": \"103\", \"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: + - "1992" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 731fe810-1eb9-4de7-899a-722385fe5690 + status: 200 OK + code: 200 + duration: 124.599768ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1992 + body: "{\"server\": {\"id\": \"d8842bfa-ee0b-4a8f-b612-e87ad8e3a602\", \"name\": \"tf-srv-hopeful-nobel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-nobel\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\", \"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:6d:21\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:35.211073+00:00\", \"modification_date\": \"2025-10-30T15:43:39.417674+00:00\", \"bootscript\": 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\": \"103\", \"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: + - "1992" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 841dec9c-dcf0-43b5-a49a-c413fd4e8925 + status: 200 OK + code: 200 + duration: 134.051479ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"7336399c-6614-4de1-854a-5d51c24e3684\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602/action\", \"href_result\": \"/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602\", \"started_at\": \"2025-10-30T15:43:45.749777+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:45 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7336399c-6614-4de1-854a-5d51c24e3684 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ad4007cd-4903-45e8-b2f5-a089f1a8f48e + status: 202 Accepted + code: 202 + duration: 308.520668ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1955 + body: "{\"server\": {\"id\": \"d8842bfa-ee0b-4a8f-b612-e87ad8e3a602\", \"name\": \"tf-srv-hopeful-nobel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-nobel\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\", \"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:6d:21\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:35.211073+00:00\", \"modification_date\": \"2025-10-30T15:43:45.514248+00:00\", \"bootscript\": 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\": \"103\", \"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}}" + headers: + Content-Length: + - "1955" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2acebc15-2984-44eb-9df0-fdcb394f6f8f + status: 200 OK + code: 200 + duration: 137.833213ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"d8842bfa-ee0b-4a8f-b612-e87ad8e3a602\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 17570e48-8c00-4779-8fd0-976e17af5045 + status: 404 Not Found + code: 404 + duration: 70.563682ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/33f8ccf9-53e9-4e83-a077-43bbf5f6a342 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1094820a-e30e-4ce8-bd5f-81f7205463b2 + status: 404 Not Found + code: 404 + duration: 33.828781ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/33f8ccf9-53e9-4e83-a077-43bbf5f6a342 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"33f8ccf9-53e9-4e83-a077-43bbf5f6a342\", \"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-30T15:43:35.350591Z\", \"updated_at\":\"2025-10-30T15:43:47.104668Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:43:47.104668Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9f948b4d-6180-4a01-91f5-8dd5dc7fa9d2 + status: 200 OK + code: 200 + duration: 82.906386ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/33f8ccf9-53e9-4e83-a077-43bbf5f6a342 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 798fd209-5ccb-4c1c-a756-a0eb214445db + status: 204 No Content + code: 204 + duration: 166.834349ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8842bfa-ee0b-4a8f-b612-e87ad8e3a602 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"d8842bfa-ee0b-4a8f-b612-e87ad8e3a602\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b4562314-e8e7-4272-96cd-aca55682854c + status: 404 Not Found + code: 404 + duration: 45.04463ms diff --git a/internal/services/instance/testdata/server-minimal2.cassette.yaml b/internal/services/instance/testdata/server-minimal2.cassette.yaml index 2165f3c82..3841d6f00 100644 --- a/internal/services/instance/testdata/server-minimal2.cassette.yaml +++ b/internal/services/instance/testdata/server-minimal2.cassette.yaml @@ -1,3983 +1,3635 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 08305ee2-f126-4d3b-a06c-74425767f508 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 56.273618ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f9e11316-c1e1-4597-b903-de9c64645707 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 47.087612ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2fbbeb76-d4ef-4bbf-87ff-58bcb6cf9d2d - status: 200 OK - code: 200 - duration: 48.569293ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 233 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1782 - uncompressed: false - 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: - - "1782" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - faedf7af-7564-4765-8823-9f7ef9d871bd - status: 201 Created - code: 201 - duration: 1.379546342s - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1782 - uncompressed: false - 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: - - "1782" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2dd8eef2-c5eb-4f3a-bb24-0b75656969a5 - status: 200 OK - code: 200 - duration: 508.121888ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1782 - uncompressed: false - 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: - - "1782" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fb323805-b589-4704-9dbe-be535eead05c - status: 200 OK - code: 200 - duration: 260.969281ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5caa645f-1400-4bca-96be-5a0323aee5fd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d60999be-26d8-439a-84c2-b597779e5249 - status: 200 OK - code: 200 - duration: 88.240048ms - - id: 7 - 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/96a51b95-f403-4086-b358-37acb88e5806/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/09546b7f-e1e2-4f80-bd0b-ce4e726c9098 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f61d69ca-6da8-4b0a-9c5e-255aad044ee1 - status: 202 Accepted - code: 202 - duration: 266.325787ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1804 - uncompressed: false - 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: - - "1804" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7b5a3c9c-5b2a-498f-9315-1f969ce0db33 - status: 200 OK - code: 200 - duration: 123.447669ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1891 - uncompressed: false - 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: - - "1891" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 409779e8-9400-4e01-bde6-9a7178d8a5c0 - status: 200 OK - code: 200 - duration: 144.932893ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1891 - uncompressed: false - 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: - - "1891" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 69ec3770-d75f-4824-a686-1160dc24353f - status: 200 OK - code: 200 - duration: 166.596459ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5caa645f-1400-4bca-96be-5a0323aee5fd - 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": "5caa645f-1400-4bca-96be-5a0323aee5fd"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1f514523-2496-4693-9292-58ff67489dbc - status: 404 Not Found - code: 404 - duration: 43.461323ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/5caa645f-1400-4bca-96be-5a0323aee5fd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6b33888c-15e5-4bbc-b1e7-fb426967f93a - status: 200 OK - code: 200 - duration: 96.582318ms - - 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/96a51b95-f403-4086-b358-37acb88e5806/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:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9f02756b-3373-4699-a522-e475ea84b3f9 - status: 200 OK - code: 200 - duration: 97.556139ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806/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:46 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0ab94ce7-5755-4fdc-a4ad-e3c4084a2a13 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 125.280287ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1891 - uncompressed: false - 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: - - "1891" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b65b010f-f0e6-432d-88f1-3b8e66d1968e - status: 200 OK - code: 200 - duration: 155.779184ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1891 - uncompressed: false - 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: - - "1891" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5c03e3f9-c1f3-4403-86ee-9635a1aeef5f - status: 200 OK - code: 200 - duration: 144.512027ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5caa645f-1400-4bca-96be-5a0323aee5fd - 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": "5caa645f-1400-4bca-96be-5a0323aee5fd"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5df2d8bb-12c0-4e6d-9be7-fe21a03de19d - status: 404 Not Found - code: 404 - duration: 26.871113ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5caa645f-1400-4bca-96be-5a0323aee5fd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 59a2a8ab-e03b-4472-b91d-9e4a7dfc48f4 - status: 200 OK - code: 200 - duration: 83.658554ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806/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:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 08d3c10f-ab49-4049-831c-cc7a69dde9ff - status: 200 OK - code: 200 - duration: 99.900042ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806/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:46 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7ed9afe0-542b-41ec-ae6d-e7782580cfc1 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 91.366005ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1937 - uncompressed: false - 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: - - "1937" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c3d16057-56ab-4bc7-a571-616ceef87258 - status: 200 OK - code: 200 - duration: 146.958822ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5caa645f-1400-4bca-96be-5a0323aee5fd - 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": "5caa645f-1400-4bca-96be-5a0323aee5fd"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 52b0db7a-be2c-46bd-8d18-7cc342d47cc4 - status: 404 Not Found - code: 404 - duration: 26.451328ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5caa645f-1400-4bca-96be-5a0323aee5fd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 29dae5e5-ed30-4a47-b1c2-6a4eb691cd9f - status: 200 OK - code: 200 - duration: 79.609794ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806/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:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 932ff782-b2f2-499a-9b50-c1fc2a773cb8 - status: 200 OK - code: 200 - duration: 88.49132ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806/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:47 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 69fdabde-8d36-4491-a8da-fc674b7ab49e - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 93.725216ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 97835fd6-dd10-4454-9535-e526fc6e604d - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 38.841536ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/96a51b95-f403-4086-b358-37acb88e5806 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1891 - uncompressed: false - 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: - - "1891" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 454b144d-a784-4296-8b14-9624b6af9a24 - status: 200 OK - code: 200 - duration: 130.344747ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 87334829-dc35-4145-9f77-f5691eb38d5c - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 97.764399ms - - 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: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 442f0dc1-2ef4-4284-b153-f0796ffe922a - status: 200 OK - code: 200 - duration: 55.543495ms - - 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/96a51b95-f403-4086-b358-37acb88e5806 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1977 - uncompressed: false - 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: - - "1977" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b6139f97-017a-4129-b93d-71f9e3eeaafa - status: 200 OK - code: 200 - duration: 142.344945ms - - id: 31 - 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/96a51b95-f403-4086-b358-37acb88e5806/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6c6a1baf-778e-4d81-8951-cabd5f07a1d9 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f83ed4d3-8f2a-4b89-acf4-3351a3485f77 - status: 202 Accepted - code: 202 - duration: 301.687973ms - - 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/96a51b95-f403-4086-b358-37acb88e5806 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1eaff761-af5d-4fe9-85a5-8ab03136f78d - status: 200 OK - code: 200 - duration: 141.195937ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 280 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2172 - uncompressed: false - 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: - - "2172" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4dce6cbc-8d0e-489a-a6ae-7f84dfebdb4b - status: 201 Created - code: 201 - duration: 778.722948ms - - 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/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2218 - uncompressed: false - 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: - - "2218" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 73853aaa-7c99-43b3-85e1-1b0289909446 - status: 200 OK - code: 200 - duration: 138.141997ms - - 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/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2172 - uncompressed: false - 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: - - "2172" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0a96f85c-35b4-488d-bfbc-833d3b9f531a - status: 200 OK - code: 200 - duration: 121.822934ms - - id: 36 - 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/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/16ed66da-e5c2-4244-b489-b94a3d717ca3 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f6498b6b-cb48-43c2-88d8-63106864ad72 - status: 202 Accepted - code: 202 - duration: 254.402871ms - - 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/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2194 - uncompressed: false - 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: - - "2194" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - be36b408-660c-4139-b5d4-c3db0a9914d3 - status: 200 OK - code: 200 - duration: 133.38336ms - - 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/96a51b95-f403-4086-b358-37acb88e5806 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1854 - uncompressed: false - 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: - - "1854" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0ccbfae2-60f9-4eeb-972b-360113d9dc85 - status: 200 OK - code: 200 - duration: 134.657564ms - - 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/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2382 - uncompressed: false - 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: - - "2382" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 72086493-ece3-4767-a8a1-cb8018f4fb05 - status: 200 OK - code: 200 - duration: 118.208457ms - - 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/96a51b95-f403-4086-b358-37acb88e5806 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1854 - uncompressed: false - 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: - - "1854" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 09bebd71-b450-472c-9973-3cb4aea49e06 - status: 200 OK - code: 200 - duration: 178.047888ms - - 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/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2327 - uncompressed: false - 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-Length: - - "2327" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - de633154-c680-4af4-a0b1-ae18b3739fee - status: 200 OK - code: 200 - duration: 135.168702ms - - 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/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2373 - uncompressed: false - 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: - - "2373" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9db6e699-6d5a-4c87-bd49-7a8ca3be143f - status: 200 OK - code: 200 - duration: 118.838568ms - - 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/volumes/d5ad069e-66ca-4f4d-bdc0-b0360163f5d4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 526 - uncompressed: false - 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: - - "526" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2f36039a-e12a-4a78-a2d3-ed4ac7d6c8cc - status: 200 OK - code: 200 - duration: 108.926103ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495/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:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a2ef0f6d-959c-4e71-9db1-296594d5a835 - status: 200 OK - code: 200 - duration: 119.983838ms - - 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/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495/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:54:00 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c3261cd9-3e59-4462-9a2c-efe391a115bc - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 110.869817ms - - 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/96a51b95-f403-4086-b358-37acb88e5806 - 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": "96a51b95-f403-4086-b358-37acb88e5806"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5b39369b-549d-489e-8ac0-946bbc48f2fa - status: 404 Not Found - code: 404 - duration: 51.248496ms - - 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/volumes/5caa645f-1400-4bca-96be-5a0323aee5fd - 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": "5caa645f-1400-4bca-96be-5a0323aee5fd"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 292adce1-bd04-43c4-9645-b87aa5cf9969 - status: 404 Not Found - code: 404 - duration: 25.403781ms - - id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5caa645f-1400-4bca-96be-5a0323aee5fd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - 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: - - "494" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ad56419d-7f8a-4d21-aa56-5f195a5e2cdd - status: 200 OK - code: 200 - duration: 79.347035ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5caa645f-1400-4bca-96be-5a0323aee5fd - 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:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 96ac37dc-83a3-491e-9c86-88fcfb674e00 - status: 204 No Content - code: 204 - duration: 175.785259ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2373 - uncompressed: false - 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: - - "2373" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fa408782-efbb-4406-a8b2-6e408a9fabb6 - status: 200 OK - code: 200 - duration: 150.288225ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2373 - uncompressed: false - 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: - - "2373" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7fc0748f-f0da-4f78-9585-8899c4c9e70c - status: 200 OK - code: 200 - duration: 148.689596ms - - 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/volumes/d5ad069e-66ca-4f4d-bdc0-b0360163f5d4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 526 - uncompressed: false - 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: - - "526" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1120ade2-fdc5-497f-950b-133307b87bfa - status: 200 OK - code: 200 - duration: 123.560939ms - - 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/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495/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:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 62334976-208b-49da-b8a2-be840ae89175 - status: 200 OK - code: 200 - duration: 103.64515ms - - 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/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495/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:54:04 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 01471500-f61e-48c1-be05-84b219458e8e - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 106.786603ms - - 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/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2373 - uncompressed: false - 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: - - "2373" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aacc57af-22ec-4b4b-b096-37692b32fe6b - status: 200 OK - code: 200 - duration: 137.335486ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d5ad069e-66ca-4f4d-bdc0-b0360163f5d4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 526 - uncompressed: false - 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: - - "526" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0f4b5450-fb8e-4fc7-adb7-5dd296cb6006 - status: 200 OK - code: 200 - duration: 121.438601ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495/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:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 696a2590-b8ad-4de0-bd1b-9fdfb71bc601 - status: 200 OK - code: 200 - duration: 90.752332ms - - 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/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495/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:54:05 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7170ff5e-56aa-4f18-8f4f-7732495bab13 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 89.164313ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:05 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 19874bbc-ff20-454a-a9c9-cb4cf8c2bfea - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 91.074514ms - - 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/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2373 - uncompressed: false - 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: - - "2373" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 57caf020-3cd7-47f5-bcd1-97c849de1aae - status: 200 OK - code: 200 - duration: 134.210152ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:05 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7aa4d20b-97ff-4cf6-b424-32748eaee3c6 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 39.523853ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 16d0a833-9ff5-4a28-bb10-160a177a6561 - status: 200 OK - code: 200 - duration: 44.688861ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2373 - uncompressed: false - 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: - - "2373" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a8d60aa8-1d55-4da1-992a-ac74bc6dd8f0 - status: 200 OK - code: 200 - duration: 140.959933ms - - id: 64 - 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/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:06 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1d79869e-0f7c-43e1-87b3-aaf7a5bb7d95 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e9619deb-52cd-4389-b3ae-63352121c0c7 - status: 202 Accepted - code: 202 - duration: 307.974544ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2290 - uncompressed: false - 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: - - "2290" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 388d802f-7b1d-4a92-b877-c94acb8b2322 - status: 200 OK - code: 200 - duration: 129.08064ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 275 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2203 - uncompressed: false - 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: - - "2203" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:06 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5ccea3ed-8034-4b06-8134-2557e353a534 - status: 201 Created - code: 201 - duration: 802.545175ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2157 - uncompressed: false - 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: - - "2157" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b4d660f3-4570-4601-98fa-b9d62271668d - status: 200 OK - code: 200 - duration: 148.011959ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2203 - uncompressed: false - 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: - - "2203" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 25e02dcc-6f15-47a5-af9a-a01a8661a9c0 - status: 200 OK - code: 200 - duration: 138.740674ms - - id: 69 - 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/888503fe-bda3-4ca4-8644-4d54587f6642/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2084d56d-a0a2-4dec-85ef-a8b2a876dcd4 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7b38031a-f5ea-47b9-a3bf-9a995a99095f - status: 202 Accepted - code: 202 - duration: 300.198014ms - - 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/888503fe-bda3-4ca4-8644-4d54587f6642 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2225 - uncompressed: false - 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: - - "2225" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4e19d578-0e3a-47d4-971f-e53b46ebcfb0 - status: 200 OK - code: 200 - duration: 138.689197ms - - 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/a0fbd27a-0937-42b1-8a3d-05f1e6fc5495 - 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": "a0fbd27a-0937-42b1-8a3d-05f1e6fc5495"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6cf68113-1a53-406a-b22f-9d40e373aa2b - status: 404 Not Found - code: 404 - duration: 55.474239ms - - 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/volumes/d5ad069e-66ca-4f4d-bdc0-b0360163f5d4 - 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": "d5ad069e-66ca-4f4d-bdc0-b0360163f5d4"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b777ed39-0e26-462f-8901-8830311c8da2 - status: 404 Not Found - code: 404 - duration: 26.455288ms - - id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5ad069e-66ca-4f4d-bdc0-b0360163f5d4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"d5ad069e-66ca-4f4d-bdc0-b0360163f5d4","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 803f86d3-a012-482f-9dc6-f53e693132cd - status: 404 Not Found - code: 404 - duration: 23.028651ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2282 - uncompressed: false - 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: - - "2282" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ce0b8367-7109-4fa5-a1c8-6b721218f0b4 - status: 200 OK - code: 200 - duration: 125.230144ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2328 - uncompressed: false - 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: - - "2328" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c81e4b47-e00a-4f96-960f-de9ac27800df - status: 200 OK - code: 200 - duration: 121.138474ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2313 - uncompressed: false - 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: - - "2313" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9b0d23d0-edc0-4ed7-9a81-78b8760e06df - status: 200 OK - code: 200 - duration: 128.445148ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2359 - uncompressed: false - 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: - - "2359" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d3ccdfb5-1a8b-46d3-88be-ffb81be1b1c3 - status: 200 OK - code: 200 - duration: 133.76222ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/095a963e-def6-4f01-9a42-97c17d44fa49 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 521 - uncompressed: false - 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: - - "521" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 691dc772-fc12-4670-afb2-0e6de2427b77 - status: 200 OK - code: 200 - duration: 94.969974ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642/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:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 15892b72-dd19-44ae-9d47-748d3501f10b - status: 200 OK - code: 200 - duration: 96.076373ms - - 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/888503fe-bda3-4ca4-8644-4d54587f6642/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:54:23 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0f360f33-c525-4ebe-b6df-236008187875 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 102.622774ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2313 - uncompressed: false - 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: - - "2313" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8ae7056f-b346-42cb-af93-06b9fad23850 - status: 200 OK - code: 200 - duration: 124.669839ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2313 - uncompressed: false - 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: - - "2313" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 17201a0d-cf58-4f7c-b6da-30037690302c - status: 200 OK - code: 200 - duration: 116.270774ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/095a963e-def6-4f01-9a42-97c17d44fa49 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 521 - uncompressed: false - 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: - - "521" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 625e23be-9faf-4a47-a6b8-e42746f5e4f7 - status: 200 OK - code: 200 - duration: 113.766411ms - - 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/888503fe-bda3-4ca4-8644-4d54587f6642/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:54:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 34580ca3-dc0f-4d10-9bc3-3dd331bed4f5 - status: 200 OK - code: 200 - duration: 111.741245ms - - 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/888503fe-bda3-4ca4-8644-4d54587f6642/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:54:24 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 97389f98-2b9d-46a0-8098-7e64f4aea5a2 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 110.680201ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/888503fe-bda3-4ca4-8644-4d54587f6642 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2359 - uncompressed: false - 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: - - "2359" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c069fad9-02fb-445f-b157-3344f0911b3c - status: 200 OK - code: 200 - duration: 123.068334ms - - 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/888503fe-bda3-4ca4-8644-4d54587f6642 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2313 - uncompressed: false - 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: - - "2313" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5ecaecc5-9c9c-4d49-9ad5-bf51cb1c0649 - status: 200 OK - code: 200 - duration: 111.938484ms - - id: 88 - 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/888503fe-bda3-4ca4-8644-4d54587f6642/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:25 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f4e57461-9850-47c4-a6f2-39cd1938619e - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c8d88cc1-3806-48fb-bb06-c795f1e78101 - status: 202 Accepted - code: 202 - duration: 273.130606ms - - 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/888503fe-bda3-4ca4-8644-4d54587f6642 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2322 - uncompressed: false - 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: - - "2322" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 21daf128-02a4-430c-9aab-35aa3a7cc76a - status: 200 OK - code: 200 - duration: 142.680027ms - - 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/888503fe-bda3-4ca4-8644-4d54587f6642 - 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": "888503fe-bda3-4ca4-8644-4d54587f6642"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 42127dd6-ec38-4622-87d8-465046a41cb9 - status: 404 Not Found - code: 404 - duration: 41.600419ms - - 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/volumes/095a963e-def6-4f01-9a42-97c17d44fa49 - 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": "095a963e-def6-4f01-9a42-97c17d44fa49"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cf85450b-1302-41f3-b7b6-ded3924327c6 - status: 404 Not Found - code: 404 - duration: 26.847693ms - - id: 92 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/095a963e-def6-4f01-9a42-97c17d44fa49 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"095a963e-def6-4f01-9a42-97c17d44fa49","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f1760c19-1eb5-42ff-96e6-5508925acc96 - status: 404 Not Found - code: 404 - duration: 17.537393ms - - 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/888503fe-bda3-4ca4-8644-4d54587f6642 - 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": "888503fe-bda3-4ca4-8644-4d54587f6642"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a8526887-1ef2-4a2d-a644-57a39fc14e50 - status: 404 Not Found - code: 404 - duration: 42.656534ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fbb2071d-1a1c-4098-a9c3-19b41fbe5e5c + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 81.197868ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 26316d20-d9ce-4cdd-bd01-b563d68407c7 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 40.376592ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e46aa2ca-1175-44ca-a504-feab36484b2e + status: 200 OK + code: 200 + duration: 41.945636ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 232 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-bold-solomon\",\"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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1780 + body: "{\"server\": {\"id\": \"0eb9be75-027f-4ac3-a839-02b7e9ee734a\", \"name\": \"tf-srv-bold-solomon\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-bold-solomon\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:37.455619+00:00\", \"modification_date\": \"2025-10-30T15:43:37.455619+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1780" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5afce38e-33b7-45f8-807d-6d4dec5283f2 + status: 201 Created + code: 201 + duration: 1.114802035s +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1780 + body: "{\"server\": {\"id\": \"0eb9be75-027f-4ac3-a839-02b7e9ee734a\", \"name\": \"tf-srv-bold-solomon\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-bold-solomon\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:37.455619+00:00\", \"modification_date\": \"2025-10-30T15:43:37.455619+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1780" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 065ce4ad-16fb-408c-b03e-1b1e5ed593c5 + status: 200 OK + code: 200 + duration: 126.367012ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1780 + body: "{\"server\": {\"id\": \"0eb9be75-027f-4ac3-a839-02b7e9ee734a\", \"name\": \"tf-srv-bold-solomon\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-bold-solomon\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:37.455619+00:00\", \"modification_date\": \"2025-10-30T15:43:37.455619+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1780" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 937211b7-2948-4b95-b66a-74972715d1b9 + status: 200 OK + code: 200 + duration: 137.904966ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d\", \"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-30T15:43:37.588032Z\", \"updated_at\":\"2025-10-30T15:43:37.588032Z\", \"references\":[{\"id\":\"84c9d819-69aa-4b7a-8ef5-01e97c30066c\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"0eb9be75-027f-4ac3-a839-02b7e9ee734a\", \"created_at\":\"2025-10-30T15:43:37.588032Z\", \"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: + - Thu, 30 Oct 2025 15:43:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 73ef3338-2a18-461e-a8d7-39ad3058a83a + status: 200 OK + code: 200 + duration: 81.892913ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"1d21b8da-06e2-4946-af12-baf38f467f0b\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a/action\", \"href_result\": \"/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a\", \"started_at\": \"2025-10-30T15:43:38.530432+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:38 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1d21b8da-06e2-4946-af12-baf38f467f0b + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 914490ed-f8fa-4bed-ac1b-c3d3325b649f + status: 202 Accepted + code: 202 + duration: 242.929481ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1756 + body: "{\"server\": {\"id\": \"0eb9be75-027f-4ac3-a839-02b7e9ee734a\", \"name\": \"tf-srv-bold-solomon\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-bold-solomon\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d\", \"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:6d:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:37.455619+00:00\", \"modification_date\": \"2025-10-30T15:43:38.338087+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: + - "1756" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b2dc199d-70a1-451f-aad4-0454c1f15af6 + status: 200 OK + code: 200 + duration: 144.811031ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1936 + body: "{\"server\": {\"id\": \"0eb9be75-027f-4ac3-a839-02b7e9ee734a\", \"name\": \"tf-srv-bold-solomon\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-bold-solomon\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d\", \"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:6d:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:37.455619+00:00\", \"modification_date\": \"2025-10-30T15:43:41.227221+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1401\", \"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, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "1936" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 699e69a2-5b66-4bb7-9cc0-e0d4ecd96cf3 + status: 200 OK + code: 200 + duration: 143.69622ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1890 + body: "{\"server\": {\"id\": \"0eb9be75-027f-4ac3-a839-02b7e9ee734a\", \"name\": \"tf-srv-bold-solomon\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-bold-solomon\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d\", \"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:6d:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:37.455619+00:00\", \"modification_date\": \"2025-10-30T15:43:41.227221+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1401\", \"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: + - "1890" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 647374d6-acfd-4a7b-8942-7b4b112d4a2f + status: 200 OK + code: 200 + duration: 131.130308ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c873bd07-bd0f-4223-939f-025c97260050 + status: 404 Not Found + code: 404 + duration: 23.962081ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d\", \"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-30T15:43:37.588032Z\", \"updated_at\":\"2025-10-30T15:43:37.588032Z\", \"references\":[{\"id\":\"84c9d819-69aa-4b7a-8ef5-01e97c30066c\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"0eb9be75-027f-4ac3-a839-02b7e9ee734a\", \"created_at\":\"2025-10-30T15:43:37.588032Z\", \"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: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 68188a18-edcf-488b-9c74-7d3ad9c4b670 + status: 200 OK + code: 200 + duration: 74.089886ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 19b9a48a-45a7-4bd6-991b-db705f7cf284 + status: 200 OK + code: 200 + duration: 79.322352ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1dbf580d-951d-41ad-9760-2f51389b7cc6 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 104.04578ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1936 + body: "{\"server\": {\"id\": \"0eb9be75-027f-4ac3-a839-02b7e9ee734a\", \"name\": \"tf-srv-bold-solomon\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-bold-solomon\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d\", \"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:6d:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:37.455619+00:00\", \"modification_date\": \"2025-10-30T15:43:41.227221+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1401\", \"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, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "1936" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 99078abd-3c18-4bb9-a854-a1db2442ab07 + status: 200 OK + code: 200 + duration: 138.798063ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1936 + body: "{\"server\": {\"id\": \"0eb9be75-027f-4ac3-a839-02b7e9ee734a\", \"name\": \"tf-srv-bold-solomon\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-bold-solomon\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d\", \"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:6d:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:37.455619+00:00\", \"modification_date\": \"2025-10-30T15:43:41.227221+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1401\", \"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, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "1936" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6b04c7dd-f39e-4de1-a8d3-a64ca37aff41 + status: 200 OK + code: 200 + duration: 158.154123ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c8497c40-03ba-4f4f-a09a-c077bd5dd7a0 + status: 404 Not Found + code: 404 + duration: 30.721741ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d\", \"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-30T15:43:37.588032Z\", \"updated_at\":\"2025-10-30T15:43:37.588032Z\", \"references\":[{\"id\":\"84c9d819-69aa-4b7a-8ef5-01e97c30066c\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"0eb9be75-027f-4ac3-a839-02b7e9ee734a\", \"created_at\":\"2025-10-30T15:43:37.588032Z\", \"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: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 55212e96-8b74-47ff-b0da-3fa6fec2f072 + status: 200 OK + code: 200 + duration: 91.016459ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c58a68da-28ec-48c3-9e1e-5286ef67b6eb + status: 200 OK + code: 200 + duration: 95.710785ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:45 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 48d00246-d7df-418a-a7fd-be1181774196 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 95.971314ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1936 + body: "{\"server\": {\"id\": \"0eb9be75-027f-4ac3-a839-02b7e9ee734a\", \"name\": \"tf-srv-bold-solomon\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-bold-solomon\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d\", \"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:6d:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:37.455619+00:00\", \"modification_date\": \"2025-10-30T15:43:41.227221+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1401\", \"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, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "1936" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bb751012-a866-4074-8f96-78efbe01244b + status: 200 OK + code: 200 + duration: 133.952032ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c6afaee7-efd9-4afb-9d03-4d81c7a89dc4 + status: 404 Not Found + code: 404 + duration: 23.633975ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d\", \"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-30T15:43:37.588032Z\", \"updated_at\":\"2025-10-30T15:43:37.588032Z\", \"references\":[{\"id\":\"84c9d819-69aa-4b7a-8ef5-01e97c30066c\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"0eb9be75-027f-4ac3-a839-02b7e9ee734a\", \"created_at\":\"2025-10-30T15:43:37.588032Z\", \"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: + - Thu, 30 Oct 2025 15:43:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 99c29878-97b7-4632-b8fe-698ac87e234d + status: 200 OK + code: 200 + duration: 87.699476ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c7bce151-4e00-4828-bd88-37f917fed9af + status: 200 OK + code: 200 + duration: 90.412025ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:45 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 97862be5-5e78-4a43-a665-a709066d46f4 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 107.688063ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:45 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eb2074be-a3df-4d12-8e0f-3d166d6a3baf + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 36.724211ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:45 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e79407b5-353d-458c-a53e-96ee42875d97 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 53.391628ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1936 + body: "{\"server\": {\"id\": \"0eb9be75-027f-4ac3-a839-02b7e9ee734a\", \"name\": \"tf-srv-bold-solomon\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-bold-solomon\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d\", \"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:6d:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:37.455619+00:00\", \"modification_date\": \"2025-10-30T15:43:41.227221+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1401\", \"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, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "1936" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3c8b09f0-9bb6-4295-9d1f-956595988e62 + status: 200 OK + code: 200 + duration: 145.192498ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 069f134c-4765-43bf-ace0-36562560b161 + status: 200 OK + code: 200 + duration: 53.674809ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1890 + body: "{\"server\": {\"id\": \"0eb9be75-027f-4ac3-a839-02b7e9ee734a\", \"name\": \"tf-srv-bold-solomon\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-bold-solomon\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d\", \"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:6d:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:37.455619+00:00\", \"modification_date\": \"2025-10-30T15:43:41.227221+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1401\", \"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: + - "1890" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e2a4dfb3-3212-49df-ab21-f9eabb05dca9 + status: 200 OK + code: 200 + duration: 163.874645ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"9104e8ce-14df-4eb2-89a9-37f0a2719445\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a/action\", \"href_result\": \"/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a\", \"started_at\": \"2025-10-30T15:43:46.347077+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:46 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9104e8ce-14df-4eb2-89a9-37f0a2719445 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cabe9786-db50-4186-955a-c284c54f032d + status: 202 Accepted + code: 202 + duration: 268.561679ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1899 + body: "{\"server\": {\"id\": \"0eb9be75-027f-4ac3-a839-02b7e9ee734a\", \"name\": \"tf-srv-bold-solomon\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-bold-solomon\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d\", \"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:6d:27\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:37.455619+00:00\", \"modification_date\": \"2025-10-30T15:43:46.145613+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1401\", \"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: + - "1899" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a9352e4e-9de1-46fc-bb27-865888771b70 + status: 200 OK + code: 200 + duration: 129.064905ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 278 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-loving-mcclintock\",\"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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2212 + body: "{\"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-loving-mcclintock\", \"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\": \"6b3b2003-6780-48bb-845f-1f2768dcaf31\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:46.672424+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:6d:2f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:46.672424+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2212" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:46 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 57cb36fb-5026-4095-bfd8-324234711e52 + status: 201 Created + code: 201 + duration: 905.285749ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2212 + body: "{\"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-loving-mcclintock\", \"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\": \"6b3b2003-6780-48bb-845f-1f2768dcaf31\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:46.672424+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:6d:2f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:46.672424+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2212" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6f23d0a1-f459-405c-94f3-bf4b7364d4fb + status: 200 OK + code: 200 + duration: 134.114507ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2212 + body: "{\"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-loving-mcclintock\", \"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\": \"6b3b2003-6780-48bb-845f-1f2768dcaf31\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:46.672424+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:6d:2f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:46.672424+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2212" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d9ace52a-a7d3-4549-a784-29b5b5b596e7 + status: 200 OK + code: 200 + duration: 111.74783ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"58d783b0-185a-472e-8f59-3268b3086145\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792/action\", \"href_result\": \"/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"started_at\": \"2025-10-30T15:43:47.317899+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:47 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/58d783b0-185a-472e-8f59-3268b3086145 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c833da5e-a3c5-43d7-bda1-a658db94e3ad + status: 202 Accepted + code: 202 + duration: 259.343277ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2234 + body: "{\"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-loving-mcclintock\", \"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\": \"6b3b2003-6780-48bb-845f-1f2768dcaf31\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:46.672424+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:6d:2f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:47.132487+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: + - "2234" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5e5c1f3b-6f3a-4d7e-8a4a-000e59e88e50 + status: 200 OK + code: 200 + duration: 109.493ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0eb9be75-027f-4ac3-a839-02b7e9ee734a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"0eb9be75-027f-4ac3-a839-02b7e9ee734a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1164b565-23b3-4090-92b2-e5bed08da4bd + status: 404 Not Found + code: 404 + duration: 57.89706ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a1bfa513-6590-4f3b-b045-d876578f438b + status: 404 Not Found + code: 404 + duration: 25.884287ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d\", \"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-30T15:43:37.588032Z\", \"updated_at\":\"2025-10-30T15:43:47.834180Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:43:47.834180Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 02ab1cef-9ebf-4af5-9ff3-17290fb0a8cd + status: 200 OK + code: 200 + duration: 114.848197ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8ee71a5d-1c9c-4121-89a7-f1dae57bdb0d + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cfc47c2b-ccc6-4f7b-9025-8ce45655b6aa + status: 204 No Content + code: 204 + duration: 133.977872ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2337 + body: "{\"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-loving-mcclintock\", \"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\": \"6b3b2003-6780-48bb-845f-1f2768dcaf31\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:46.672424+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:6d:2f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:47.132487+00:00\", \"bootscript\": 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\": \"603\", \"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: + - "2337" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 856a9d75-c944-4ff0-942c-013c73f5f68b + status: 200 OK + code: 200 + duration: 147.78819ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2368 + body: "{\"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-loving-mcclintock\", \"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\": \"6b3b2003-6780-48bb-845f-1f2768dcaf31\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:46.672424+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:6d:2f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:53.441256+00:00\", \"bootscript\": 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\": \"603\", \"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: + - "2368" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d343b769-a6e7-4235-be5c-867703a58f78 + status: 200 OK + code: 200 + duration: 141.664233ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2368 + body: "{\"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-loving-mcclintock\", \"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\": \"6b3b2003-6780-48bb-845f-1f2768dcaf31\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:46.672424+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:6d:2f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:53.441256+00:00\", \"bootscript\": 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\": \"603\", \"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: + - "2368" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0ea0476a-8db7-4c2d-b607-2c715f5f9763 + status: 200 OK + code: 200 + duration: 154.099752ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6b3b2003-6780-48bb-845f-1f2768dcaf31 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 524 + body: "{\"volume\": {\"id\": \"6b3b2003-6780-48bb-845f-1f2768dcaf31\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:46.672424+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "524" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f761b40b-b933-4114-bf68-cfd9d769e065 + status: 200 OK + code: 200 + duration: 118.974037ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 161393fa-a9eb-4d09-91e6-1b7b4f4b7924 + status: 200 OK + code: 200 + duration: 113.21768ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:58 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d80f9ab7-5943-4286-8987-0d7e25198fb2 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 95.380497ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2368 + body: "{\"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-loving-mcclintock\", \"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\": \"6b3b2003-6780-48bb-845f-1f2768dcaf31\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:46.672424+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:6d:2f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:53.441256+00:00\", \"bootscript\": 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\": \"603\", \"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: + - "2368" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b9ab5fe6-b837-4978-8c02-df95f4002530 + status: 200 OK + code: 200 + duration: 126.813965ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2322 + body: "{\"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-loving-mcclintock\", \"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\": \"6b3b2003-6780-48bb-845f-1f2768dcaf31\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:46.672424+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:6d:2f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:53.441256+00:00\", \"bootscript\": 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\": \"603\", \"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: + - "2322" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b2224985-3156-4535-aca1-e4a1eb97738d + status: 200 OK + code: 200 + duration: 128.222297ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6b3b2003-6780-48bb-845f-1f2768dcaf31 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 524 + body: "{\"volume\": {\"id\": \"6b3b2003-6780-48bb-845f-1f2768dcaf31\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:46.672424+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "524" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 383860b8-d879-4d50-9752-a6130fc6155c + status: 200 OK + code: 200 + duration: 112.490625ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fd42dca3-3068-49f2-82f9-01f7348c63f3 + status: 200 OK + code: 200 + duration: 117.359019ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:59 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d2cd62ae-e0a7-4a1e-8b76-1382d2fe386d + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 110.891815ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2368 + body: "{\"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-loving-mcclintock\", \"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\": \"6b3b2003-6780-48bb-845f-1f2768dcaf31\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:46.672424+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:6d:2f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:53.441256+00:00\", \"bootscript\": 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\": \"603\", \"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: + - "2368" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ca60a7a4-809c-4915-9854-946d265f6d76 + status: 200 OK + code: 200 + duration: 129.338471ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6b3b2003-6780-48bb-845f-1f2768dcaf31 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 524 + body: "{\"volume\": {\"id\": \"6b3b2003-6780-48bb-845f-1f2768dcaf31\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:46.672424+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "524" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ce79b821-41ea-4557-9b86-360303215c16 + status: 200 OK + code: 200 + duration: 108.1704ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bd00de69-278a-4559-83b2-724d50c98775 + status: 200 OK + code: 200 + duration: 115.897127ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:59 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9fdd1d2f-4310-4a7e-be18-bb52341130f5 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 84.266799ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:59 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8616afb1-b7c3-41e1-a9e2-9f6757691e48 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 50.81725ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:59 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a9c95098-9a0e-4f60-8eaa-5b1734e34b8e + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 60.530672ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2368 + body: "{\"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-loving-mcclintock\", \"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\": \"6b3b2003-6780-48bb-845f-1f2768dcaf31\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:46.672424+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:6d:2f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:53.441256+00:00\", \"bootscript\": 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\": \"603\", \"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: + - "2368" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f856a392-ff3a-49b8-bf54-9ad74bb9f3a0 + status: 200 OK + code: 200 + duration: 124.020064ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 11ed953e-130b-4749-8fae-dffd9ab0422a + status: 200 OK + code: 200 + duration: 129.941102ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2322 + body: "{\"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-loving-mcclintock\", \"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\": \"6b3b2003-6780-48bb-845f-1f2768dcaf31\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:46.672424+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:6d:2f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:53.441256+00:00\", \"bootscript\": 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\": \"603\", \"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: + - "2322" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dafa5475-d50d-4a6d-b7d9-c9c31580c3fa + status: 200 OK + code: 200 + duration: 131.447617ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"85785737-9867-4cff-9eb4-de090d92b6b9\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792/action\", \"href_result\": \"/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"started_at\": \"2025-10-30T15:44:00.292015+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:00 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/85785737-9867-4cff-9eb4-de090d92b6b9 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d2e58f43-1732-4829-aaf4-493c8bca3e7a + status: 202 Accepted + code: 202 + duration: 278.70835ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2331 + body: "{\"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-loving-mcclintock\", \"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\": \"6b3b2003-6780-48bb-845f-1f2768dcaf31\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\", \"name\": \"tf-srv-loving-mcclintock\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:43:46.672424+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:6d:2f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:46.672424+00:00\", \"modification_date\": \"2025-10-30T15:44:00.070739+00:00\", \"bootscript\": 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\": \"603\", \"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: + - "2331" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ff445331-353d-4aab-9387-65a6e9181977 + status: 200 OK + code: 200 + duration: 170.886082ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 276 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-nervous-noether\",\"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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2160 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:01 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7494dba9-43c0-498e-bca1-2347d6786959 + status: 201 Created + code: 201 + duration: 966.487072ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2160 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 63a2000a-6974-4ccf-9e24-4fb75be905d7 + status: 200 OK + code: 200 + duration: 135.344779ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2206 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5787adb1-61aa-4e9f-8a81-f89085822062 + status: 200 OK + code: 200 + duration: 162.716687ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"02a385d7-918a-4335-b99a-27af4eda0a24\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a/action\", \"href_result\": \"/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"started_at\": \"2025-10-30T15:44:01.536531+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:01 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/02a385d7-918a-4335-b99a-27af4eda0a24 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fb630ff6-9ff1-4989-9dd9-ae8cfc8cfa84 + status: 202 Accepted + code: 202 + duration: 277.102839ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2228 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:01.329326+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: + - "2228" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7c5cf94c-e6c5-4777-892b-86423b3ffa2c + status: 200 OK + code: 200 + duration: 148.352601ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b86e701b-8648-46b8-8dc3-d5b1cd7a4792 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"b86e701b-8648-46b8-8dc3-d5b1cd7a4792\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ed1042dc-2715-4ee1-9272-0cf32dac9115 + status: 404 Not Found + code: 404 + duration: 43.88177ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6b3b2003-6780-48bb-845f-1f2768dcaf31 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"6b3b2003-6780-48bb-845f-1f2768dcaf31\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c14c4bef-ccc3-4360-938e-0ad87dc3ed38 + status: 404 Not Found + code: 404 + duration: 34.894721ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6b3b2003-6780-48bb-845f-1f2768dcaf31 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"6b3b2003-6780-48bb-845f-1f2768dcaf31\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ae00a461-59b8-4875-8769-47d679cf7a5f + status: 404 Not Found + code: 404 + duration: 20.531005ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2285 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:01.329326+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2285" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 79b3bb7d-cb6e-48aa-8409-d6c58694ddc1 + status: 200 OK + code: 200 + duration: 129.709027ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2331 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:01.329326+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2331" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3d35f0bb-9867-42f1-b052-d4bdac76ba43 + status: 200 OK + code: 200 + duration: 151.739727ms +- id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2316 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:16.702371+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2316" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1b633437-3224-41a1-a2a6-e77d0bdf2df1 + status: 200 OK + code: 200 + duration: 116.746623ms +- id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2362 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:16.702371+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2362" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 405f17f6-342a-4474-bc7e-0fed0794420f + status: 200 OK + code: 200 + duration: 132.65633ms +- id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b8cb4b62-c03f-40af-8324-ac55fb4d1f4c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 522 + body: "{\"volume\": {\"id\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "522" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a6a6fcd0-938c-4460-a2c6-cc9e5fdaf242 + status: 200 OK + code: 200 + duration: 106.931058ms +- id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5bdd22ad-abd8-4869-ab25-24fe6a9b6d98 + status: 200 OK + code: 200 + duration: 100.322542ms +- id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:17 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4f312c8c-11ae-4247-94c9-2d087c8b480c + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 103.263178ms +- id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2362 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:16.702371+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2362" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5b40c5bf-b65a-4aa2-925b-c590a251f205 + status: 200 OK + code: 200 + duration: 149.118783ms +- id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2362 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:16.702371+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2362" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ac19f2bd-0582-4917-a890-213676ffd65b + status: 200 OK + code: 200 + duration: 119.878389ms +- id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b8cb4b62-c03f-40af-8324-ac55fb4d1f4c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 522 + body: "{\"volume\": {\"id\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "522" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 316a8a2c-115d-4660-899e-48df266db497 + status: 200 OK + code: 200 + duration: 89.856489ms +- id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b4dabde6-cf19-403f-9f15-c440cfd93c52 + status: 200 OK + code: 200 + duration: 112.875972ms +- id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:18 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7e6cd65e-4648-475e-a4cd-73c3b5db4a83 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 93.817669ms +- id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2362 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:16.702371+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2362" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 19853145-168b-4eb1-830d-cc8fffa0e57c + status: 200 OK + code: 200 + duration: 154.449964ms +- id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2316 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:16.702371+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2316" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7773e2ca-ccd0-43e7-89fc-cfcc9013667c + status: 200 OK + code: 200 + duration: 116.037373ms +- id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"78fc30e2-334b-4a9a-b225-278ad97cf1e2\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a/action\", \"href_result\": \"/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"started_at\": \"2025-10-30T15:44:19.054049+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:19 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/78fc30e2-334b-4a9a-b225-278ad97cf1e2 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cdef332f-7241-4b8c-aac0-aef2f15af8ba + status: 202 Accepted + code: 202 + duration: 238.28716ms +- id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2279 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:18.870492+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2279" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4d5d56eb-1807-41c8-9922-2d3fdf6a7133 + status: 200 OK + code: 200 + duration: 139.723147ms +- id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2325 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:18.870492+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2325" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 202eeb2f-90c4-4e0c-a359-b5b72f29e2e3 + status: 200 OK + code: 200 + duration: 120.601046ms +- id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2325 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:18.870492+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2325" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0781b778-8c79-46ec-b4af-0e4da15320e0 + status: 200 OK + code: 200 + duration: 193.967782ms +- id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2325 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:18.870492+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2325" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a7397d90-8576-48c5-845d-e747275c1626 + status: 200 OK + code: 200 + duration: 139.78239ms +- id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2279 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:18.870492+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2279" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 586a238c-1127-4879-9bad-9b522c4f49c7 + status: 200 OK + code: 200 + duration: 137.017415ms +- id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2325 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:18.870492+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2325" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2f0233dd-7357-4f4a-9b34-c934cc018034 + status: 200 OK + code: 200 + duration: 149.837247ms +- id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2325 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:18.870492+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2325" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a805f347-f36f-4892-b935-5de24db1ca90 + status: 200 OK + code: 200 + duration: 141.681708ms +- id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2279 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:18.870492+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2279" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 15c28e6c-c6f6-45d7-af89-8c5965256f3a + status: 200 OK + code: 200 + duration: 137.806169ms +- id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2279 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:18.870492+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2279" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 47526c68-44e9-4673-9de6-602fe3ba9463 + status: 200 OK + code: 200 + duration: 155.433589ms +- id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2325 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:18.870492+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2325" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 79652653-ee75-4193-a97f-6d8fafa0f9e8 + status: 200 OK + code: 200 + duration: 156.110992ms +- id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2325 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:18.870492+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2325" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bd0c5cdb-c07f-48eb-b095-0a9852028ba0 + status: 200 OK + code: 200 + duration: 136.442032ms +- id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2279 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:18.870492+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2279" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c7740eb3-19b6-48d4-8fbd-d05d0b021043 + status: 200 OK + code: 200 + duration: 164.80856ms +- id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2325 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:18.870492+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2325" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 929f30d0-a767-4916-9d8c-2a7e3f6c477e + status: 200 OK + code: 200 + duration: 150.730481ms +- id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2279 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:18.870492+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2279" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 268374b7-7fd5-45cf-ae96-af434d50ee83 + status: 200 OK + code: 200 + duration: 130.310924ms +- id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2279 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:18.870492+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2279" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fe9fabbf-4c4f-4f80-986d-2ea4625f6e02 + status: 200 OK + code: 200 + duration: 133.828653ms +- id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2325 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:18.870492+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2325" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4839b505-c8c9-4eaa-9e1f-4b5a8b7acb4e + status: 200 OK + code: 200 + duration: 419.208162ms +- id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2325 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:18.870492+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2325" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 08087f42-eae7-439f-9053-6e6ad79d211d + status: 200 OK + code: 200 + duration: 179.893759ms +- id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2325 + body: "{\"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nervous-noether\", \"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\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\", \"name\": \"tf-srv-nervous-noether\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:00.723581+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:6d:31\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:44:00.723581+00:00\", \"modification_date\": \"2025-10-30T15:44:18.870492+00:00\", \"bootscript\": 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\": \"102\", \"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: + - "2325" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f67a8e09-69bb-48c4-be3e-555a55cb9105 + status: 200 OK + code: 200 + duration: 220.199056ms +- id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 05364516-7111-4307-9f96-85f89a2fb156 + status: 404 Not Found + code: 404 + duration: 52.504043ms +- id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b8cb4b62-c03f-40af-8324-ac55fb4d1f4c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a1911594-13bb-4085-aca7-fdd146e66b3a + status: 404 Not Found + code: 404 + duration: 30.822006ms +- id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b8cb4b62-c03f-40af-8324-ac55fb4d1f4c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"b8cb4b62-c03f-40af-8324-ac55fb4d1f4c\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 92e1c279-bc93-42c7-a3f6-e98ca07c6527 + status: 404 Not Found + code: 404 + duration: 18.570009ms +- id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"4f5e3b2d-7977-45fb-ab8d-edfbbc3d0a8a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 387c5ea5-66cb-4275-9051-15517cc9140f + status: 404 Not Found + code: 404 + duration: 46.172786ms 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 4e08f59a1..416309543 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 @@ -1,5712 +1,4486 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 135 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"TestAccServer_PrivateNetworkMissingPNIC","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 437 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8316d0b3-d38d-450a-8716-e10b878842ec - status: 200 OK - code: 200 - duration: 80.410714ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e8fc4761-bea6-4677-848a-0c960cd1e144 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 437 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ece2806c-2ec2-4f17-b8e3-06d81fe289c0 - status: 200 OK - code: 200 - duration: 29.81077ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 203 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1095 - uncompressed: false - 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: - - "1095" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bb76f686-5311-4159-aa23-230aa237c728 - status: 200 OK - code: 200 - duration: 644.480063ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5a567c90-21d3-4f8b-ba3f-93856863a772 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1095 - uncompressed: false - 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: - - "1095" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e6b54dd5-8f80-4830-9f48-e79c6d618bd6 - status: 200 OK - code: 200 - duration: 22.595259ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 20132bf1-448b-4856-a2b2-cab35a8fde21 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 53.716299ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1a2b0d76-27e3-402a-96be-ac6e86967ab4 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 41.032404ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5828190f-0804-43a7-b838-c1960de52f95 - status: 200 OK - code: 200 - duration: 43.746799ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 240 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1796 - 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": "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: - - "1796" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:00 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b96d4edd-6f51-4ef7-976b-5179e9153927 - status: 201 Created - code: 201 - duration: 1.061488947s - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 1750 - 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": "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: - - "1750" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 44d893e3-826d-4709-a82a-ac5ff7a45eea - status: 200 OK - code: 200 - duration: 146.830859ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1750 - 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": "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: - - "1750" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1b53ba3f-477d-4f19-9b8c-5acbfceb8f46 - status: 200 OK - code: 200 - duration: 133.336326ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d2fb4a84-8811-49a2-9b9b-d1f38db734f9 - status: 200 OK - code: 200 - duration: 107.571048ms - - id: 11 - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:00 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8528c37a-4043-46f5-b7f3-cf52ebecab0a - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4b13f5bf-1579-45b5-ba79-f899180d1a8e - status: 202 Accepted - code: 202 - duration: 348.325168ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1818 - 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": "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: - - "1818" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 20076b18-28a8-4417-b101-b08e4aeda924 - status: 200 OK - code: 200 - duration: 163.286598ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1951 - 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": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' - headers: - Content-Length: - - "1951" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b14bf413-599c-4af3-bbcd-8d514cc717e3 - status: 200 OK - code: 200 - duration: 148.928553ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5a567c90-21d3-4f8b-ba3f-93856863a772 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1095 - uncompressed: false - 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: - - "1095" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9a807220-a6dd-4071-af13-4eb47c96a098 - status: 200 OK - code: 200 - duration: 22.247629ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1951 - 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": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' - headers: - Content-Length: - - "1951" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d6d5ef4f-2ce1-46fc-aae7-bcfb8d6a0647 - status: 200 OK - code: 200 - duration: 154.557338ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 61 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"private_network_id":"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/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2fe5406b-dd6c-4a08-bd48-a1f24d05b00a - status: 201 Created - code: 201 - duration: 1.009764573s - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a1c9b0bf-c493-45d9-a3dd-07ed04fb39dc - status: 200 OK - code: 200 - duration: 131.14436ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4d735ba4-38c3-493f-838c-d3e70a8da289 - status: 200 OK - code: 200 - duration: 102.685958ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0b946382-adb8-4a4c-bd47-fc6430b7c992 - status: 200 OK - code: 200 - duration: 102.825781ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1d3dee4f-9177-4851-b6bd-5c01cee5a6a5 - status: 200 OK - code: 200 - duration: 91.769679ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c4f7b75b-fc1a-49a5-8ae1-09c55a494786 - status: 200 OK - code: 200 - duration: 98.079779ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9a84a0ae-7d59-446c-aeb6-e48efecdaf51 - status: 200 OK - code: 200 - duration: 107.301214ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9d158640-d2a5-40d0-94df-fcd1f9806acc - status: 200 OK - code: 200 - duration: 109.296237ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7c2b1460-263d-446b-ab88-dca496d52a4e - status: 200 OK - code: 200 - duration: 138.595947ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0358b57c-f429-47f1-9c05-966601f060d7 - status: 200 OK - code: 200 - duration: 97.147733ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f2c17df0-29ec-4197-9f83-a7ccee3ceae7 - status: 200 OK - code: 200 - duration: 86.774206ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a4fef26f-e486-46ec-ad3d-3a6b8b67d3d5 - status: 200 OK - code: 200 - duration: 118.027881ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e532dcc4-8cf9-48f0-a024-a531e51dafcf - status: 200 OK - code: 200 - duration: 102.570978ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d2374073-cca4-4df9-ba3c-9a4706a3ef19 - status: 200 OK - code: 200 - duration: 89.0587ms - - 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/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 - 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": "f303499c-cf78-44e0-a10d-c83f2f9a8893"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b8905d51-a0ec-4cd6-b5ee-48c8d9dab17c - status: 404 Not Found - code: 404 - duration: 29.590905ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 10991de9-8e24-4f53-be44-e31fc8bd2984 - status: 200 OK - code: 200 - duration: 93.305762ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/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:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3273d1d0-3a7f-46b3-90d5-ae5cac99647b - status: 200 OK - code: 200 - duration: 91.059862ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f8cd4b61-5529-4831-9c86-a85836cf0362 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 112.711142ms - - 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 - 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=6e5d9633-6867-40b9-94aa-9bd4d51b8522&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 31d7ba89-ca50-4bfd-aa3b-a5d7881be2dd - status: 200 OK - code: 200 - duration: 34.62072ms - - 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/vpc/v2/regions/fr-par/vpcs/e8fc4761-bea6-4677-848a-0c960cd1e144 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 437 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 14af221b-95d9-4de8-8240-32b876a9f7b6 - status: 200 OK - code: 200 - duration: 33.758038ms - - 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/vpc/v2/regions/fr-par/private-networks/5a567c90-21d3-4f8b-ba3f-93856863a772 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1095 - uncompressed: false - 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: - - "1095" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 17ae2437-681e-4fea-9603-99e591169993 - status: 200 OK - code: 200 - duration: 28.105177ms - - 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/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:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9de17042-7ad1-4c03-bbf4-de127329a792 - status: 200 OK - code: 200 - duration: 120.72167ms - - 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/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 - 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": "f303499c-cf78-44e0-a10d-c83f2f9a8893"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c3dbeebe-fd35-427e-8c0e-4a053d6af261 - status: 404 Not Found - code: 404 - duration: 33.756054ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - edfa5d39-18e1-4b96-a893-82be089abd5d - status: 200 OK - code: 200 - duration: 99.668671ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4/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:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 79ee45f9-fc77-4357-b0ea-ecdb6ff78035 - status: 200 OK - code: 200 - duration: 106.205345ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 092bcfee-aa4d-4c4d-be55-04fb712d184e - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 125.042711ms - - 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: - 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=6e5d9633-6867-40b9-94aa-9bd4d51b8522&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 75e61d71-e79d-4f03-85b7-dda81a0727bd - status: 200 OK - code: 200 - duration: 22.702635ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 44775d1b-bf9a-4521-b3ee-fec6f1aea4c4 - status: 200 OK - code: 200 - duration: 102.317895ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2409 - 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, "admin_password_encryption_ssh_key_id": null}}' - headers: - Content-Length: - - "2409" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ae9d34df-c3ee-4217-b502-ab50a10b0b1c - status: 200 OK - code: 200 - duration: 131.890065ms - - 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: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e2aea698-93b4-4df7-877f-4f53e43a16ab - status: 200 OK - code: 200 - duration: 53.989441ms - - 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/vpc/v2/regions/fr-par/vpcs/e8fc4761-bea6-4677-848a-0c960cd1e144 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 437 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0ced3908-b7bc-4057-b58d-f524e1766e0e - status: 200 OK - code: 200 - duration: 35.891177ms - - 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/vpc/v2/regions/fr-par/private-networks/5a567c90-21d3-4f8b-ba3f-93856863a772 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1095 - uncompressed: false - 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: - - "1095" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a1718938-efe1-4a7f-982c-1f36780dfa84 - status: 200 OK - code: 200 - duration: 26.247814ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2409 - 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, "admin_password_encryption_ssh_key_id": null}}' - headers: - Content-Length: - - "2409" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1f0cf97a-c8b7-4e6b-be2d-15b6e5ad40ad - status: 200 OK - code: 200 - duration: 140.72119ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 - 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": "f303499c-cf78-44e0-a10d-c83f2f9a8893"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9f18e3c4-aee3-4ab0-9be0-aa0ede86fe3e - status: 404 Not Found - code: 404 - duration: 35.015008ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 70aa4077-75bd-4be2-99cd-dcb18c7b1499 - status: 200 OK - code: 200 - duration: 83.904092ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4/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:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 707e9407-0a01-4580-9ea9-5f5acbad8564 - status: 200 OK - code: 200 - duration: 120.982308ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dd0034fb-eb50-41ed-a0f9-9eb017986e7b - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 106.837677ms - - 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: - 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=6e5d9633-6867-40b9-94aa-9bd4d51b8522&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ea339487-fe9e-4593-9ebc-13d36bf6475e - status: 200 OK - code: 200 - duration: 31.991373ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 92d461d6-9a5d-4ddd-bc1e-16b3a2485303 - status: 200 OK - code: 200 - duration: 107.049364ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2409 - 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, "admin_password_encryption_ssh_key_id": null}}' - headers: - Content-Length: - - "2409" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4f8fb396-4919-4104-bb59-11ccf60f9372 - status: 200 OK - code: 200 - duration: 136.899614ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ec317534-7eb0-4924-91e9-19c4f0cadbce - status: 200 OK - code: 200 - duration: 45.550149ms - - 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/vpc/v2/regions/fr-par/vpcs/e8fc4761-bea6-4677-848a-0c960cd1e144 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 437 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d740efc1-ee2f-422c-95cb-2ccb322dc4ff - status: 200 OK - code: 200 - duration: 33.767857ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5a567c90-21d3-4f8b-ba3f-93856863a772 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1095 - uncompressed: false - 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: - - "1095" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 736201af-96fd-447b-8d83-46c861d6abf4 - status: 200 OK - code: 200 - duration: 24.417ms - - 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/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:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dd170ec7-c10b-4407-b356-6a291703a064 - status: 200 OK - code: 200 - duration: 144.503253ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 - 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": "f303499c-cf78-44e0-a10d-c83f2f9a8893"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 14092f7e-25f1-41cf-9623-1b9578d430c4 - status: 404 Not Found - code: 404 - duration: 30.574224ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8968d3d7-c544-438e-a124-142edde9c70d - status: 200 OK - code: 200 - duration: 93.755644ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/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:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5838d796-11e0-4891-ae4f-65fbc551c341 - status: 200 OK - code: 200 - duration: 94.885337ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 936dbe71-8ed9-4f2c-ab4a-20cbdc981966 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 94.720989ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=6e5d9633-6867-40b9-94aa-9bd4d51b8522&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 688ef4ab-1c38-4803-ad0e-6d7e243e557e - status: 200 OK - code: 200 - duration: 87.74251ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 112f0cfd-c77c-4704-9a66-6ff69650ef10 - status: 200 OK - code: 200 - duration: 99.296436ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2409 - 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, "admin_password_encryption_ssh_key_id": null}}' - headers: - Content-Length: - - "2409" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e31978a1-18fd-460e-b042-0e96dca9e6bd - status: 200 OK - code: 200 - duration: 140.135195ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5ee2d40a-2f65-4fc2-bbc8-c16e95d1fa17 - status: 200 OK - code: 200 - duration: 47.073769ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e8fc4761-bea6-4677-848a-0c960cd1e144 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 437 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0b24eb4b-8641-486b-b4b9-ce04fd6171ab - status: 200 OK - code: 200 - duration: 29.819834ms - - 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/vpc/v2/regions/fr-par/private-networks/5a567c90-21d3-4f8b-ba3f-93856863a772 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1095 - uncompressed: false - 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: - - "1095" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ac130828-a35b-4ad9-b342-c18ec5f6f990 - status: 200 OK - code: 200 - duration: 22.29897ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c0447c82-1266-4524-86d5-a995fb74b90f - status: 200 OK - code: 200 - duration: 101.278302ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2409 - 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, "admin_password_encryption_ssh_key_id": null}}' - headers: - Content-Length: - - "2409" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6a16b4ad-1bb2-42f3-a2fe-80f0f3480a7d - status: 200 OK - code: 200 - duration: 153.664044ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2409 - 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, "admin_password_encryption_ssh_key_id": null}}' - headers: - Content-Length: - - "2409" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 31ae956a-91c1-4588-8c87-4a37d0f24f87 - status: 200 OK - code: 200 - duration: 129.563406ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 - 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": "f303499c-cf78-44e0-a10d-c83f2f9a8893"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 578f62c8-ee6a-4683-89e2-a4c429f2870d - status: 404 Not Found - code: 404 - duration: 34.631491ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b08a7b30-65f4-439c-b1a7-bfd9d161a1f7 - status: 200 OK - code: 200 - duration: 46.921434ms - - 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/f303499c-cf78-44e0-a10d-c83f2f9a8893 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 089b74bd-f358-4630-b83c-55441aa182bc - status: 200 OK - code: 200 - duration: 89.528169ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/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:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 26fc7632-cf77-4287-82b1-3b99dac4afc3 - status: 200 OK - code: 200 - duration: 107.59822ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 32901058-436f-45e4-818d-4eb54b925ce5 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 100.50189ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=6e5d9633-6867-40b9-94aa-9bd4d51b8522&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a52b1f9a-b5c2-4dc8-bb74-119fc7eb7c01 - status: 200 OK - code: 200 - duration: 32.185908ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8a2496aa-0ee6-486b-8b0a-52c753103309 - status: 200 OK - code: 200 - duration: 95.062078ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 - 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:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e3e87b6c-e4c7-4fa5-93d8-cbadb33feb6a - status: 204 No Content - code: 204 - duration: 410.181136ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/6e5d9633-6867-40b9-94aa-9bd4d51b8522 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 148 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 881f21ef-b904-4a4f-8b06-385200af6bb9 - status: 404 Not Found - code: 404 - duration: 109.92951ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e8fc4761-bea6-4677-848a-0c960cd1e144 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 437 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 99a9de2e-dd9a-4358-8581-e65846c53597 - status: 200 OK - code: 200 - duration: 28.452316ms - - 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/vpc/v2/regions/fr-par/private-networks/5a567c90-21d3-4f8b-ba3f-93856863a772 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1095 - uncompressed: false - 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: - - "1095" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b2b1db04-420c-48b6-9246-a171101961e3 - status: 200 OK - code: 200 - duration: 35.345446ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1905 - 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": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' - headers: - Content-Length: - - "1905" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4878034f-2061-4abd-ab0e-2e49f0200691 - status: 200 OK - code: 200 - duration: 171.649589ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 - 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": "f303499c-cf78-44e0-a10d-c83f2f9a8893"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7d12f504-34c4-44a3-84dc-22878644a558 - status: 404 Not Found - code: 404 - duration: 28.703426ms - - id: 87 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5ac8ef5d-e955-4f6a-8c04-55d1e6df7d64 - status: 200 OK - code: 200 - duration: 87.610123ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4/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:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f9062248-c2a8-41f6-9d0c-ae7d71626a61 - status: 200 OK - code: 200 - duration: 79.316724ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4/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:55:10 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b55f8cf7-82a5-4519-b7e3-e6cc53b00641 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 107.782736ms - - 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/vpc/v2/regions/fr-par/vpcs/e8fc4761-bea6-4677-848a-0c960cd1e144 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 437 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2be23ae0-6943-4861-b116-09d34c8cabc2 - status: 200 OK - code: 200 - duration: 27.399387ms - - 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/vpc/v2/regions/fr-par/private-networks/5a567c90-21d3-4f8b-ba3f-93856863a772 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1095 - uncompressed: false - 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: - - "1095" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fc39f481-1191-4001-b484-b18e2ffe770b - status: 200 OK - code: 200 - duration: 29.415318ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1951 - 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": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' - headers: - Content-Length: - - "1951" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6a3c3ed4-3326-404f-b376-23b290f94dcb - status: 200 OK - code: 200 - duration: 149.978202ms - - id: 93 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 - 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": "f303499c-cf78-44e0-a10d-c83f2f9a8893"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0683e6a2-4826-414f-ae01-e843f17de9e1 - status: 404 Not Found - code: 404 - duration: 27.68428ms - - id: 94 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f80d13e0-906e-496d-adab-1ca7a47b0d4b - status: 200 OK - code: 200 - duration: 81.805108ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4/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:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 09c06666-0502-4e3c-9521-aa1cbda3e4a8 - status: 200 OK - code: 200 - duration: 81.322595ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4/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:55:11 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 810c60b3-17c7-4ad6-8ae8-ebe1dc0c5f95 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 85.852016ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1951 - 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": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' - headers: - Content-Length: - - "1951" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b63fb3df-f31f-4df2-b9ae-2272b73245a1 - status: 200 OK - code: 200 - duration: 366.154467ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4/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:55:12 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6da94c3f-4a3d-4b64-9971-497bd5c1e241 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 92.974505ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1951 - 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": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' - headers: - Content-Length: - - "1951" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f0674d95-0a8e-49b5-857d-b2b97c3dc773 - status: 200 OK - code: 200 - duration: 135.336121ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 61 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"private_network_id":"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/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 643e7d68-42c6-4fb2-a4bb-ba199981de08 - status: 201 Created - code: 201 - duration: 666.623302ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/60269a0d-6487-4731-a46e-c204572aaf0b - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - abfb464c-12da-44ca-b1ba-d63656c96864 - status: 200 OK - code: 200 - duration: 105.473488ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/60269a0d-6487-4731-a46e-c204572aaf0b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cf53f411-90ea-40ee-b64b-c8b8f8e26b39 - status: 200 OK - code: 200 - duration: 88.716303ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/60269a0d-6487-4731-a46e-c204572aaf0b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4ffc2687-c923-4d97-bd0b-05ff4b302c28 - status: 200 OK - code: 200 - duration: 106.234402ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2409 - 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": "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: - - "2409" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 48fc2e65-306b-4edc-8635-b1bbbb32d64c - status: 200 OK - code: 200 - duration: 141.610999ms - - 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/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": "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: - - "2363" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f9d6dcca-23ed-429b-84ad-c9e642b0c34e - status: 200 OK - code: 200 - duration: 162.120863ms - - 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/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 - 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": "f303499c-cf78-44e0-a10d-c83f2f9a8893"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bbb44d49-9a6c-4518-bcf0-02c76ea5eca2 - status: 404 Not Found - code: 404 - duration: 26.644756ms - - id: 107 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6ba27ba3-4e83-4112-9539-d2b3f76c23bf - status: 200 OK - code: 200 - duration: 91.199156ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4/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:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 549f1ef1-6677-434a-8732-d943e5c4f7d8 - status: 200 OK - code: 200 - duration: 86.242327ms - - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f14a2b28-8f9a-4f71-b32c-0f7c7c585ebf - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 101.486023ms - - 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: - 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=60269a0d-6487-4731-a46e-c204572aaf0b&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1074 - uncompressed: false - 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: - - "1074" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 569d5849-3167-4aa4-b96c-067e0c24baef - status: 200 OK - code: 200 - duration: 22.149921ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e8fc4761-bea6-4677-848a-0c960cd1e144 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 437 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 96992069-004c-4fe1-8604-c38156964934 - status: 200 OK - code: 200 - duration: 25.439363ms - - id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5a567c90-21d3-4f8b-ba3f-93856863a772 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1095 - uncompressed: false - 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: - - "1095" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 94ebc93d-fb7e-4019-98eb-327015044265 - status: 200 OK - code: 200 - duration: 26.732681ms - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2409 - 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": "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: - - "2409" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9ea1c595-4ad1-4116-8746-939d27853e33 - status: 200 OK - code: 200 - duration: 140.332959ms - - 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/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 - 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": "f303499c-cf78-44e0-a10d-c83f2f9a8893"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ad2a80b6-f63d-4aa0-9b0f-dc86de7c68c2 - status: 404 Not Found - code: 404 - duration: 39.346861ms - - id: 115 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7c3f662e-5e11-4cc6-9fec-f09c0b66f4e5 - status: 200 OK - code: 200 - duration: 87.74643ms - - id: 116 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/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:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 05abf55a-5ef3-4568-a462-d69028f09fab - status: 200 OK - code: 200 - duration: 89.430429ms - - id: 117 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ab693d36-995e-4edd-9808-795e12d1f9d4 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 99.267174ms - - id: 118 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=60269a0d-6487-4731-a46e-c204572aaf0b&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1074 - uncompressed: false - 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: - - "1074" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 22b340ce-fb27-49a0-a894-3b848e6d1843 - status: 200 OK - code: 200 - duration: 33.07411ms - - id: 119 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 054d264a-2d2e-4f1d-b208-b69e35061723 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 105.165304ms - - id: 120 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/60269a0d-6487-4731-a46e-c204572aaf0b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b9220ae4-9b03-4941-bf7c-14c53264268d - status: 200 OK - code: 200 - duration: 105.567777ms - - id: 121 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/60269a0d-6487-4731-a46e-c204572aaf0b - 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:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - de5a91ad-9666-4d35-a916-12948b4df6e8 - status: 204 No Content - code: 204 - duration: 450.483546ms - - id: 122 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/private_nics/60269a0d-6487-4731-a46e-c204572aaf0b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 148 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 45e0474f-c775-4686-9d03-5b9fa7ea58d4 - status: 404 Not Found - code: 404 - duration: 103.005726ms - - id: 123 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4/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:55:20 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - de64b4eb-24b5-44cb-bc2e-b34a44706701 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 104.295247ms - - id: 124 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1951 - 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": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' - headers: - Content-Length: - - "1951" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 538b9f69-2ce0-4581-ba4b-0e874e74092b - status: 200 OK - code: 200 - duration: 149.042036ms - - id: 125 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1905 - 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": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' - headers: - Content-Length: - - "1905" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 35c25463-9dea-4f3f-814c-579da06e0afd - status: 200 OK - code: 200 - duration: 148.17291ms - - id: 126 - 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/263f7377-0fc0-4825-bcc2-f6915828cdd4/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:21 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0fa4df79-e235-4cdd-b71b-ae39c8532afc - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cd383feb-abb5-4cea-bea9-f71f7df83816 - status: 202 Accepted - code: 202 - duration: 452.967361ms - - id: 127 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1914 - 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": "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: - - "1914" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 54eef2c3-99aa-42f1-8f23-03bf9c144b5a - status: 200 OK - code: 200 - duration: 125.346815ms - - id: 128 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 - 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": "263f7377-0fc0-4825-bcc2-f6915828cdd4"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 55b84fd8-4f02-48d7-bd8f-9a2342a8f3a4 - status: 404 Not Found - code: 404 - duration: 42.991948ms - - id: 129 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 - 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": "f303499c-cf78-44e0-a10d-c83f2f9a8893"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e8df2dda-95ef-4e4f-899a-16feb9807c6b - status: 404 Not Found - code: 404 - duration: 29.652091ms - - id: 130 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 498 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ada9fb35-5258-4da2-9479-bb40b08c4fdc - status: 200 OK - code: 200 - duration: 81.986099ms - - id: 131 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f303499c-cf78-44e0-a10d-c83f2f9a8893 - 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:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5d40f430-053c-443d-a05c-8db9346e779c - status: 204 No Content - code: 204 - duration: 177.355426ms - - id: 132 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5a567c90-21d3-4f8b-ba3f-93856863a772 - 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:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d56597a7-f5b4-4e0d-a238-e8e35618ec6e - status: 204 No Content - code: 204 - duration: 1.081765761s - - id: 133 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e8fc4761-bea6-4677-848a-0c960cd1e144 - 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:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9f196fc0-2a2b-426d-8793-8fb74e2395c6 - status: 204 No Content - code: 204 - duration: 109.748888ms - - id: 134 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/263f7377-0fc0-4825-bcc2-f6915828cdd4 - 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": "263f7377-0fc0-4825-bcc2-f6915828cdd4"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4a2cbfa3-f821-4546-aa65-1a582323cf29 - status: 404 Not Found - code: 404 - duration: 44.439705ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 135 + host: api.scaleway.com + body: "{\"name\":\"TestAccServer_PrivateNetworkMissingPNIC\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"enable_routing\":false}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 437 + body: "{\"id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\", \"name\":\"TestAccServer_PrivateNetworkMissingPNIC\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.850373Z\", \"updated_at\":\"2025-10-30T15:41:48.850373Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 980b3da6-3243-4dcd-a205-76012191feb9 + status: 200 OK + code: 200 + duration: 118.504477ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/d8e61b0b-b64f-4336-90fc-2909a5a6173a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 437 + body: "{\"id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\", \"name\":\"TestAccServer_PrivateNetworkMissingPNIC\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.850373Z\", \"updated_at\":\"2025-10-30T15:41:48.850373Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 03af0067-9a0e-4603-af9a-6af5c73e7a81 + status: 200 OK + code: 200 + duration: 85.798771ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 198 + host: api.scaleway.com + body: "{\"name\":\"tf-pn-epic-matsumoto\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"subnets\":null,\"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\",\"default_route_propagation_enabled\":false}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1090 + body: "{\"id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"name\":\"tf-pn-epic-matsumoto\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"f218b4a0-c0a8-4fec-8ee4-01ee6ff22ef8\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\"}, {\"id\":\"5c18611e-8868-4ae6-bcb4-e28740bad197\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"subnet\":\"fd5f:519c:6d46:bece::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\"}], \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1090" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d7153fcc-53f9-4193-92ef-8af940ce58d1 + status: 200 OK + code: 200 + duration: 630.457357ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/359387ac-e0bf-4fc0-9af9-35ea847b9141 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1090 + body: "{\"id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"name\":\"tf-pn-epic-matsumoto\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"f218b4a0-c0a8-4fec-8ee4-01ee6ff22ef8\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\"}, {\"id\":\"5c18611e-8868-4ae6-bcb4-e28740bad197\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"subnet\":\"fd5f:519c:6d46:bece::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\"}], \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1090" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ea19fbb7-01e8-4044-948f-a700422e9e63 + status: 200 OK + code: 200 + duration: 88.602399ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0707e395-74df-4fae-b70e-cc112bb1b85b + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 67.141266ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 51c1ea6e-71a6-40b2-9335-aa418b59c76d + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 43.720005ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/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 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 19b85b1e-20d4-4f9d-af77-47139f8dbc74 + status: 200 OK + code: 200 + duration: 50.767814ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 243 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-beautiful-albattani\",\"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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1756 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:50.590423+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cd299b3e-59de-4f43-b291-f1079cca493b + status: 201 Created + code: 201 + duration: 1.283257876s +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1756 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:50.590423+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 18c7d4fc-eca1-4894-9692-f15b08920b04 + status: 200 OK + code: 200 + duration: 142.012941ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1756 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:50.590423+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0edcd798-cbc3-461a-9926-618f3976772d + status: 200 OK + code: 200 + duration: 140.268429ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a9c5e618-0cd5-4c37-a88f-504cc2693953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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-30T15:41:50.732487Z\", \"updated_at\":\"2025-10-30T15:41:50.732487Z\", \"references\":[{\"id\":\"3ce6b91d-974d-407d-9e91-cc0f2dd47cc9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"22aca716-006c-437b-8b4a-4c3223da1b43\", \"created_at\":\"2025-10-30T15:41:50.732487Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 910adfbd-ee92-454b-8232-03479823a52c + status: 200 OK + code: 200 + duration: 103.604029ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"56585809-22f7-4fce-9605-37e4373c6ec6\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/22aca716-006c-437b-8b4a-4c3223da1b43/action\", \"href_result\": \"/servers/22aca716-006c-437b-8b4a-4c3223da1b43\", \"started_at\": \"2025-10-30T15:41:51.749140+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/56585809-22f7-4fce-9605-37e4373c6ec6 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c2454368-0b01-43b2-a23d-a67f747929af + status: 202 Accepted + code: 202 + duration: 248.601658ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1824 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:51.556014+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: + - "1824" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - afdc6ea3-7a08-4d55-894d-78afcf533eee + status: 200 OK + code: 200 + duration: 135.795891ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1911 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:54.430849+00:00\", \"bootscript\": 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\": \"92\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8368c55f-e67c-4fa8-a6c8-4f553f429f71 + status: 200 OK + code: 200 + duration: 154.328513ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/359387ac-e0bf-4fc0-9af9-35ea847b9141 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1090 + body: "{\"id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"name\":\"tf-pn-epic-matsumoto\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"f218b4a0-c0a8-4fec-8ee4-01ee6ff22ef8\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\"}, {\"id\":\"5c18611e-8868-4ae6-bcb4-e28740bad197\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"subnet\":\"fd5f:519c:6d46:bece::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\"}], \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1090" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c7bcefc6-f3db-488d-8ebb-3e3b3795007c + status: 200 OK + code: 200 + duration: 91.544871ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1911 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:54.430849+00:00\", \"bootscript\": 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\": \"92\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 34a3df9b-0d01-4868-969a-a54f06e89ead + status: 200 OK + code: 200 + duration: 125.451379ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 61 + host: api.scaleway.com + body: "{\"private_network_id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:41:57.552884+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 68759f01-e74d-45eb-93b3-077e3ef2f86a + status: 201 Created + code: 201 + duration: 654.122006ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/68eae99b-3538-4725-8a11-811f953466bf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:41:57.552884+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 56e69731-75f7-4a10-8150-616cf25cca69 + status: 200 OK + code: 200 + duration: 108.38651ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/68eae99b-3538-4725-8a11-811f953466bf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:41:57.552884+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b34f798e-b3e2-44f9-871f-bb57f31b3e68 + status: 200 OK + code: 200 + duration: 152.640279ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/68eae99b-3538-4725-8a11-811f953466bf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:41:57.552884+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 131146b9-20b8-443d-bba0-b48575149e8e + status: 200 OK + code: 200 + duration: 131.675076ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/68eae99b-3538-4725-8a11-811f953466bf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:41:57.552884+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8ae38a30-32dc-4d1d-ac42-be07310e1789 + status: 200 OK + code: 200 + duration: 103.759075ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/68eae99b-3538-4725-8a11-811f953466bf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:41:57.552884+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 606152eb-d73c-4bcd-97f9-26bf09a7fc0f + status: 200 OK + code: 200 + duration: 120.996158ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/68eae99b-3538-4725-8a11-811f953466bf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:41:57.552884+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d41da14d-9fe4-4cef-8c5a-de756649ea36 + status: 200 OK + code: 200 + duration: 104.958617ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/68eae99b-3538-4725-8a11-811f953466bf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:41:57.552884+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0e1e6d91-5f02-4c23-9886-7d4251fe3d42 + status: 200 OK + code: 200 + duration: 89.346513ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/68eae99b-3538-4725-8a11-811f953466bf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:41:57.552884+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 113f3db0-7aa7-4ce6-bd2d-d048d0266534 + status: 200 OK + code: 200 + duration: 112.282938ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/68eae99b-3538-4725-8a11-811f953466bf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:41:57.552884+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - da6442a4-b326-4936-83b8-b4b4a3c6fa82 + status: 200 OK + code: 200 + duration: 213.855227ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/68eae99b-3538-4725-8a11-811f953466bf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:41:57.552884+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0edd633c-78da-4bd0-b1bb-ee3da6a91fdf + status: 200 OK + code: 200 + duration: 112.86429ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/68eae99b-3538-4725-8a11-811f953466bf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:42:44.236932+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b47818d8-6757-422e-8ca7-e934aed42d13 + status: 200 OK + code: 200 + duration: 98.71474ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/68eae99b-3538-4725-8a11-811f953466bf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:42:44.236932+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d047701a-49fb-4e9c-9b6f-61b5c6e288aa + status: 200 OK + code: 200 + duration: 93.839285ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2415 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:54.430849+00:00\", \"bootscript\": 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\": \"92\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:42:44.236932+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2415" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bf4971c9-9b89-4aa9-8012-f6a04985e3d5 + status: 200 OK + code: 200 + duration: 138.157587ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9c5e618-0cd5-4c37-a88f-504cc2693953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d65bbfff-f301-4f18-82c9-8eab173f3242 + status: 404 Not Found + code: 404 + duration: 31.718769ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a9c5e618-0cd5-4c37-a88f-504cc2693953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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-30T15:41:50.732487Z\", \"updated_at\":\"2025-10-30T15:41:50.732487Z\", \"references\":[{\"id\":\"3ce6b91d-974d-407d-9e91-cc0f2dd47cc9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"22aca716-006c-437b-8b4a-4c3223da1b43\", \"created_at\":\"2025-10-30T15:41:50.732487Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2c3d8ff9-88d6-4266-985c-ec121b131fd6 + status: 200 OK + code: 200 + duration: 95.854064ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 017886bb-d105-417c-886b-60a0aec96ad9 + status: 200 OK + code: 200 + duration: 98.625102ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:42:44.236932+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - adb7df89-7f21-477b-b821-5c21112bcc3c + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 119.691438ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 68eae99b-3538-4725-8a11-811f953466bf + 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=68eae99b-3538-4725-8a11-811f953466bf&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1082 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\", \"address\":\"fd5f:519c:6d46:bece:157e:6d2d:42c3:b975/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:57.797459Z\", \"updated_at\":\"2025-10-30T15:41:57.797459Z\", \"source\":{\"subnet_id\":\"5c18611e-8868-4ae6-bcb4-e28740bad197\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"68eae99b-3538-4725-8a11-811f953466bf\", \"mac_address\":\"02:00:00:15:9F:EF\", \"name\":\"tf-srv-beautiful-albattani\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"address\":\"172.18.24.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:57.615008Z\", \"updated_at\":\"2025-10-30T15:41:57.615008Z\", \"source\":{\"subnet_id\":\"f218b4a0-c0a8-4fec-8ee4-01ee6ff22ef8\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"68eae99b-3538-4725-8a11-811f953466bf\", \"mac_address\":\"02:00:00:15:9F:EF\", \"name\":\"tf-srv-beautiful-albattani\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1082" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 20eed7ce-1274-48b1-aee0-01d097afaefa + status: 200 OK + code: 200 + duration: 30.794284ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/d8e61b0b-b64f-4336-90fc-2909a5a6173a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 437 + body: "{\"id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\", \"name\":\"TestAccServer_PrivateNetworkMissingPNIC\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.850373Z\", \"updated_at\":\"2025-10-30T15:41:48.850373Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 38659607-ea87-4560-b853-bd719ea2e8e3 + status: 200 OK + code: 200 + duration: 84.534741ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/359387ac-e0bf-4fc0-9af9-35ea847b9141 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1090 + body: "{\"id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"name\":\"tf-pn-epic-matsumoto\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"f218b4a0-c0a8-4fec-8ee4-01ee6ff22ef8\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\"}, {\"id\":\"5c18611e-8868-4ae6-bcb4-e28740bad197\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"subnet\":\"fd5f:519c:6d46:bece::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\"}], \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1090" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d0fe97ca-ca58-45fa-b057-be33697b5eda + status: 200 OK + code: 200 + duration: 27.179483ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2415 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:54.430849+00:00\", \"bootscript\": 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\": \"92\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:42:44.236932+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2415" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f1d07056-23ed-4c11-bd50-9176c4ad4220 + status: 200 OK + code: 200 + duration: 127.327292ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9c5e618-0cd5-4c37-a88f-504cc2693953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2427a706-0177-4d92-a931-5b6cb1f68db6 + status: 404 Not Found + code: 404 + duration: 30.305247ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a9c5e618-0cd5-4c37-a88f-504cc2693953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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-30T15:41:50.732487Z\", \"updated_at\":\"2025-10-30T15:41:50.732487Z\", \"references\":[{\"id\":\"3ce6b91d-974d-407d-9e91-cc0f2dd47cc9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"22aca716-006c-437b-8b4a-4c3223da1b43\", \"created_at\":\"2025-10-30T15:41:50.732487Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 792538e8-fd73-4852-916d-24e8d8dcd9db + status: 200 OK + code: 200 + duration: 82.782614ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 78ac83a9-ee53-4ac4-b0b9-aa3ecf5c0ae1 + status: 200 OK + code: 200 + duration: 89.100596ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:42:44.236932+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cf6b5e86-3f00-4317-96ee-28025c4baf27 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 112.151675ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 68eae99b-3538-4725-8a11-811f953466bf + 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=68eae99b-3538-4725-8a11-811f953466bf&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1082 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\", \"address\":\"fd5f:519c:6d46:bece:157e:6d2d:42c3:b975/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:57.797459Z\", \"updated_at\":\"2025-10-30T15:41:57.797459Z\", \"source\":{\"subnet_id\":\"5c18611e-8868-4ae6-bcb4-e28740bad197\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"68eae99b-3538-4725-8a11-811f953466bf\", \"mac_address\":\"02:00:00:15:9F:EF\", \"name\":\"tf-srv-beautiful-albattani\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"address\":\"172.18.24.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:57.615008Z\", \"updated_at\":\"2025-10-30T15:41:57.615008Z\", \"source\":{\"subnet_id\":\"f218b4a0-c0a8-4fec-8ee4-01ee6ff22ef8\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"68eae99b-3538-4725-8a11-811f953466bf\", \"mac_address\":\"02:00:00:15:9F:EF\", \"name\":\"tf-srv-beautiful-albattani\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1082" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 113c3a4a-1004-4d23-812a-656f11ebffa4 + status: 200 OK + code: 200 + duration: 30.198607ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/68eae99b-3538-4725-8a11-811f953466bf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:42:44.236932+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 07adb676-4480-4a9d-b174-ae99eea3f466 + status: 200 OK + code: 200 + duration: 118.763618ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2415 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:54.430849+00:00\", \"bootscript\": 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\": \"92\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:42:44.236932+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2415" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 352b3586-be97-400e-8a97-aeaf1748c354 + status: 200 OK + code: 200 + duration: 186.757452ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - 359387ac-e0bf-4fc0-9af9-35ea847b9141 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 68eae99b-3538-4725-8a11-811f953466bf + 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=359387ac-e0bf-4fc0-9af9-35ea847b9141&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=68eae99b-3538-4725-8a11-811f953466bf&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1082 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\", \"address\":\"fd5f:519c:6d46:bece:157e:6d2d:42c3:b975/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:57.797459Z\", \"updated_at\":\"2025-10-30T15:41:57.797459Z\", \"source\":{\"subnet_id\":\"5c18611e-8868-4ae6-bcb4-e28740bad197\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"68eae99b-3538-4725-8a11-811f953466bf\", \"mac_address\":\"02:00:00:15:9F:EF\", \"name\":\"tf-srv-beautiful-albattani\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"address\":\"172.18.24.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:57.615008Z\", \"updated_at\":\"2025-10-30T15:41:57.615008Z\", \"source\":{\"subnet_id\":\"f218b4a0-c0a8-4fec-8ee4-01ee6ff22ef8\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"68eae99b-3538-4725-8a11-811f953466bf\", \"mac_address\":\"02:00:00:15:9F:EF\", \"name\":\"tf-srv-beautiful-albattani\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1082" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 93a56605-ebf5-425c-9e8f-2a05b23ec73f + status: 200 OK + code: 200 + duration: 44.057434ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/d8e61b0b-b64f-4336-90fc-2909a5a6173a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 437 + body: "{\"id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\", \"name\":\"TestAccServer_PrivateNetworkMissingPNIC\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.850373Z\", \"updated_at\":\"2025-10-30T15:41:48.850373Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f066f7dd-c151-4cc9-b82b-6bb270412006 + status: 200 OK + code: 200 + duration: 97.57356ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/359387ac-e0bf-4fc0-9af9-35ea847b9141 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1090 + body: "{\"id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"name\":\"tf-pn-epic-matsumoto\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"f218b4a0-c0a8-4fec-8ee4-01ee6ff22ef8\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\"}, {\"id\":\"5c18611e-8868-4ae6-bcb4-e28740bad197\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"subnet\":\"fd5f:519c:6d46:bece::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\"}], \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1090" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - abfe841c-7c1a-4214-8a80-9c032c33d940 + status: 200 OK + code: 200 + duration: 27.318524ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2369 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:54.430849+00:00\", \"bootscript\": 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\": \"92\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:42:44.236932+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2369" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - baea90b9-776b-42fc-8811-352c0d1b87aa + status: 200 OK + code: 200 + duration: 192.949788ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9c5e618-0cd5-4c37-a88f-504cc2693953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4d18870a-b245-487d-830c-b4adb730593b + status: 404 Not Found + code: 404 + duration: 37.787242ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a9c5e618-0cd5-4c37-a88f-504cc2693953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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-30T15:41:50.732487Z\", \"updated_at\":\"2025-10-30T15:41:50.732487Z\", \"references\":[{\"id\":\"3ce6b91d-974d-407d-9e91-cc0f2dd47cc9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"22aca716-006c-437b-8b4a-4c3223da1b43\", \"created_at\":\"2025-10-30T15:41:50.732487Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8a282250-cc14-413b-8b15-08508c6fbeeb + status: 200 OK + code: 200 + duration: 104.243411ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b3beb3db-1995-476b-9d69-7edd6654e2d4 + status: 200 OK + code: 200 + duration: 97.225377ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:42:44.236932+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ef3dd5b3-1669-474e-9977-2184b2b0e432 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 103.321752ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 68eae99b-3538-4725-8a11-811f953466bf + 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=68eae99b-3538-4725-8a11-811f953466bf&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1082 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\", \"address\":\"fd5f:519c:6d46:bece:157e:6d2d:42c3:b975/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:57.797459Z\", \"updated_at\":\"2025-10-30T15:41:57.797459Z\", \"source\":{\"subnet_id\":\"5c18611e-8868-4ae6-bcb4-e28740bad197\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"68eae99b-3538-4725-8a11-811f953466bf\", \"mac_address\":\"02:00:00:15:9F:EF\", \"name\":\"tf-srv-beautiful-albattani\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"address\":\"172.18.24.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:57.615008Z\", \"updated_at\":\"2025-10-30T15:41:57.615008Z\", \"source\":{\"subnet_id\":\"f218b4a0-c0a8-4fec-8ee4-01ee6ff22ef8\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"68eae99b-3538-4725-8a11-811f953466bf\", \"mac_address\":\"02:00:00:15:9F:EF\", \"name\":\"tf-srv-beautiful-albattani\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1082" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 60f7c6bf-c64e-49ac-a83a-703af473323d + status: 200 OK + code: 200 + duration: 33.109818ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/68eae99b-3538-4725-8a11-811f953466bf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:42:44.236932+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - da7806dc-c443-4158-a144-66910c3b6f99 + status: 200 OK + code: 200 + duration: 95.173448ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2415 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:54.430849+00:00\", \"bootscript\": 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\": \"92\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:42:44.236932+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2415" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8330f902-70cc-4f3d-a2d1-776fce132ae2 + status: 200 OK + code: 200 + duration: 152.555265ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - 359387ac-e0bf-4fc0-9af9-35ea847b9141 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 68eae99b-3538-4725-8a11-811f953466bf + 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=359387ac-e0bf-4fc0-9af9-35ea847b9141&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=68eae99b-3538-4725-8a11-811f953466bf&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1082 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\", \"address\":\"fd5f:519c:6d46:bece:157e:6d2d:42c3:b975/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:57.797459Z\", \"updated_at\":\"2025-10-30T15:41:57.797459Z\", \"source\":{\"subnet_id\":\"5c18611e-8868-4ae6-bcb4-e28740bad197\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"68eae99b-3538-4725-8a11-811f953466bf\", \"mac_address\":\"02:00:00:15:9F:EF\", \"name\":\"tf-srv-beautiful-albattani\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"address\":\"172.18.24.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:57.615008Z\", \"updated_at\":\"2025-10-30T15:41:57.615008Z\", \"source\":{\"subnet_id\":\"f218b4a0-c0a8-4fec-8ee4-01ee6ff22ef8\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"68eae99b-3538-4725-8a11-811f953466bf\", \"mac_address\":\"02:00:00:15:9F:EF\", \"name\":\"tf-srv-beautiful-albattani\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1082" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a248c0b6-aa1b-445f-bf4a-6775067a1855 + status: 200 OK + code: 200 + duration: 46.909514ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/d8e61b0b-b64f-4336-90fc-2909a5a6173a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 437 + body: "{\"id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\", \"name\":\"TestAccServer_PrivateNetworkMissingPNIC\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.850373Z\", \"updated_at\":\"2025-10-30T15:41:48.850373Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dc4b4e92-792c-4815-8ef6-0fe7732d9e0a + status: 200 OK + code: 200 + duration: 94.100655ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/359387ac-e0bf-4fc0-9af9-35ea847b9141 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1090 + body: "{\"id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"name\":\"tf-pn-epic-matsumoto\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"f218b4a0-c0a8-4fec-8ee4-01ee6ff22ef8\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\"}, {\"id\":\"5c18611e-8868-4ae6-bcb4-e28740bad197\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"subnet\":\"fd5f:519c:6d46:bece::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\"}], \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1090" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a2b03f7e-7dba-47bf-957d-432109acb9e2 + status: 200 OK + code: 200 + duration: 22.303297ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2415 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:54.430849+00:00\", \"bootscript\": 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\": \"92\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:42:44.236932+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2415" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - accf722e-c3cd-4db5-ad2f-138cff490d46 + status: 200 OK + code: 200 + duration: 142.845151ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9c5e618-0cd5-4c37-a88f-504cc2693953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 16d1d2e0-1650-4b8b-a916-092d596f2590 + status: 404 Not Found + code: 404 + duration: 31.643247ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a9c5e618-0cd5-4c37-a88f-504cc2693953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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-30T15:41:50.732487Z\", \"updated_at\":\"2025-10-30T15:41:50.732487Z\", \"references\":[{\"id\":\"3ce6b91d-974d-407d-9e91-cc0f2dd47cc9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"22aca716-006c-437b-8b4a-4c3223da1b43\", \"created_at\":\"2025-10-30T15:41:50.732487Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 43142062-5a1d-4542-8ea5-ac5318b2c596 + status: 200 OK + code: 200 + duration: 75.446183ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 017764c2-005c-4500-b557-a97d1bb12604 + status: 200 OK + code: 200 + duration: 99.06093ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:42:44.236932+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9f4e35d3-134f-48e2-a1c7-360e4aee1202 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 120.457786ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 68eae99b-3538-4725-8a11-811f953466bf + 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=68eae99b-3538-4725-8a11-811f953466bf&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1082 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\", \"address\":\"fd5f:519c:6d46:bece:157e:6d2d:42c3:b975/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:57.797459Z\", \"updated_at\":\"2025-10-30T15:41:57.797459Z\", \"source\":{\"subnet_id\":\"5c18611e-8868-4ae6-bcb4-e28740bad197\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"68eae99b-3538-4725-8a11-811f953466bf\", \"mac_address\":\"02:00:00:15:9F:EF\", \"name\":\"tf-srv-beautiful-albattani\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"address\":\"172.18.24.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:57.615008Z\", \"updated_at\":\"2025-10-30T15:41:57.615008Z\", \"source\":{\"subnet_id\":\"f218b4a0-c0a8-4fec-8ee4-01ee6ff22ef8\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"68eae99b-3538-4725-8a11-811f953466bf\", \"mac_address\":\"02:00:00:15:9F:EF\", \"name\":\"tf-srv-beautiful-albattani\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1082" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b3394b1a-a60e-406b-9094-1c710c081927 + status: 200 OK + code: 200 + duration: 24.287038ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/68eae99b-3538-4725-8a11-811f953466bf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:42:44.236932+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c1e4a070-057a-4110-ba4e-03902ddd1f92 + status: 200 OK + code: 200 + duration: 126.526771ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2415 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:54.430849+00:00\", \"bootscript\": 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\": \"92\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:42:44.236932+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2415" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 73203d83-0b5a-4206-880b-9334ccc8212c + status: 200 OK + code: 200 + duration: 176.065757ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - 359387ac-e0bf-4fc0-9af9-35ea847b9141 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 68eae99b-3538-4725-8a11-811f953466bf + 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=359387ac-e0bf-4fc0-9af9-35ea847b9141&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=68eae99b-3538-4725-8a11-811f953466bf&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1082 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\", \"address\":\"fd5f:519c:6d46:bece:157e:6d2d:42c3:b975/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:57.797459Z\", \"updated_at\":\"2025-10-30T15:41:57.797459Z\", \"source\":{\"subnet_id\":\"5c18611e-8868-4ae6-bcb4-e28740bad197\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"68eae99b-3538-4725-8a11-811f953466bf\", \"mac_address\":\"02:00:00:15:9F:EF\", \"name\":\"tf-srv-beautiful-albattani\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"address\":\"172.18.24.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:57.615008Z\", \"updated_at\":\"2025-10-30T15:41:57.615008Z\", \"source\":{\"subnet_id\":\"f218b4a0-c0a8-4fec-8ee4-01ee6ff22ef8\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"68eae99b-3538-4725-8a11-811f953466bf\", \"mac_address\":\"02:00:00:15:9F:EF\", \"name\":\"tf-srv-beautiful-albattani\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1082" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 12fc7034-c406-40a2-84bc-9a3e1a74f538 + status: 200 OK + code: 200 + duration: 42.931952ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/d8e61b0b-b64f-4336-90fc-2909a5a6173a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 437 + body: "{\"id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\", \"name\":\"TestAccServer_PrivateNetworkMissingPNIC\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.850373Z\", \"updated_at\":\"2025-10-30T15:41:48.850373Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5f1eacf4-402b-49c6-80f0-acb4d1bb6594 + status: 200 OK + code: 200 + duration: 26.065754ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/359387ac-e0bf-4fc0-9af9-35ea847b9141 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1090 + body: "{\"id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"name\":\"tf-pn-epic-matsumoto\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"f218b4a0-c0a8-4fec-8ee4-01ee6ff22ef8\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\"}, {\"id\":\"5c18611e-8868-4ae6-bcb4-e28740bad197\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"subnet\":\"fd5f:519c:6d46:bece::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\"}], \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1090" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 109cd6e0-81ee-41e0-985f-ea817f995072 + status: 200 OK + code: 200 + duration: 35.951468ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/68eae99b-3538-4725-8a11-811f953466bf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:42:44.236932+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b5ba1fb4-b0d4-4c43-b078-f597f175142a + status: 200 OK + code: 200 + duration: 106.95587ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2369 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:54.430849+00:00\", \"bootscript\": 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\": \"92\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:42:44.236932+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2369" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1e3337d5-9452-49af-82bb-4d3007ce4fc9 + status: 200 OK + code: 200 + duration: 167.918404ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9c5e618-0cd5-4c37-a88f-504cc2693953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 45808269-08ba-4aea-b861-05868a690e36 + status: 404 Not Found + code: 404 + duration: 29.530424ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2415 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:54.430849+00:00\", \"bootscript\": 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\": \"92\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:42:44.236932+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2415" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 14a187c3-4d52-4f40-8772-28ca9d4c6a1c + status: 200 OK + code: 200 + duration: 171.044138ms +- id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + private_network_id: + - 359387ac-e0bf-4fc0-9af9-35ea847b9141 + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 68eae99b-3538-4725-8a11-811f953466bf + 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=359387ac-e0bf-4fc0-9af9-35ea847b9141&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=68eae99b-3538-4725-8a11-811f953466bf&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1082 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\", \"address\":\"fd5f:519c:6d46:bece:157e:6d2d:42c3:b975/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:57.797459Z\", \"updated_at\":\"2025-10-30T15:41:57.797459Z\", \"source\":{\"subnet_id\":\"5c18611e-8868-4ae6-bcb4-e28740bad197\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"68eae99b-3538-4725-8a11-811f953466bf\", \"mac_address\":\"02:00:00:15:9F:EF\", \"name\":\"tf-srv-beautiful-albattani\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"address\":\"172.18.24.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:57.615008Z\", \"updated_at\":\"2025-10-30T15:41:57.615008Z\", \"source\":{\"subnet_id\":\"f218b4a0-c0a8-4fec-8ee4-01ee6ff22ef8\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"68eae99b-3538-4725-8a11-811f953466bf\", \"mac_address\":\"02:00:00:15:9F:EF\", \"name\":\"tf-srv-beautiful-albattani\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1082" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ed9f108f-1287-4140-a17c-234a61103c67 + status: 200 OK + code: 200 + duration: 68.046443ms +- id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a9c5e618-0cd5-4c37-a88f-504cc2693953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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-30T15:41:50.732487Z\", \"updated_at\":\"2025-10-30T15:41:50.732487Z\", \"references\":[{\"id\":\"3ce6b91d-974d-407d-9e91-cc0f2dd47cc9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"22aca716-006c-437b-8b4a-4c3223da1b43\", \"created_at\":\"2025-10-30T15:41:50.732487Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 687040e0-70ec-4eb4-9d55-125b6bbe0e5a + status: 200 OK + code: 200 + duration: 85.622873ms +- id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c1448645-4967-42f0-88e6-0bdc192d81aa + status: 200 OK + code: 200 + duration: 111.838288ms +- id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:42:44.236932+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cc37c696-18a5-4640-bb08-1e10872636aa + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 129.466035ms +- id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 68eae99b-3538-4725-8a11-811f953466bf + 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=68eae99b-3538-4725-8a11-811f953466bf&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1082 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\", \"address\":\"fd5f:519c:6d46:bece:157e:6d2d:42c3:b975/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:41:57.797459Z\", \"updated_at\":\"2025-10-30T15:41:57.797459Z\", \"source\":{\"subnet_id\":\"5c18611e-8868-4ae6-bcb4-e28740bad197\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"68eae99b-3538-4725-8a11-811f953466bf\", \"mac_address\":\"02:00:00:15:9F:EF\", \"name\":\"tf-srv-beautiful-albattani\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"address\":\"172.18.24.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:41:57.615008Z\", \"updated_at\":\"2025-10-30T15:41:57.615008Z\", \"source\":{\"subnet_id\":\"f218b4a0-c0a8-4fec-8ee4-01ee6ff22ef8\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"68eae99b-3538-4725-8a11-811f953466bf\", \"mac_address\":\"02:00:00:15:9F:EF\", \"name\":\"tf-srv-beautiful-albattani\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1082" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 89060122-6e67-4c13-af1c-c12c744e6e58 + status: 200 OK + code: 200 + duration: 29.470181ms +- id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/68eae99b-3538-4725-8a11-811f953466bf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"68eae99b-3538-4725-8a11-811f953466bf\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:15:9f:ef\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:57.313307+00:00\", \"modification_date\": \"2025-10-30T15:42:44.236932+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"4e68a225-688f-4e25-aec0-eb069d4bfcff\", \"2cbc86d0-1118-489b-9fc4-49c6de3bc7fa\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1d6dc9d1-2903-4c20-81b5-25273f1d15fb + status: 200 OK + code: 200 + duration: 105.970371ms +- id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/68eae99b-3538-4725-8a11-811f953466bf + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 08098a3d-1004-4f14-b393-112b65a90907 + status: 204 No Content + code: 204 + duration: 492.662685ms +- id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/68eae99b-3538-4725-8a11-811f953466bf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 148 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_private_nic\", \"resource_id\": \"68eae99b-3538-4725-8a11-811f953466bf\"}" + headers: + Content-Length: + - "148" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a1917a27-51a6-4e0f-9a31-823b39cf8ff3 + status: 404 Not Found + code: 404 + duration: 146.995447ms +- id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/d8e61b0b-b64f-4336-90fc-2909a5a6173a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 437 + body: "{\"id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\", \"name\":\"TestAccServer_PrivateNetworkMissingPNIC\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.850373Z\", \"updated_at\":\"2025-10-30T15:41:48.850373Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0cb6609c-37ab-49b2-8236-064c1bb09518 + status: 200 OK + code: 200 + duration: 24.19736ms +- id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/359387ac-e0bf-4fc0-9af9-35ea847b9141 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1090 + body: "{\"id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"name\":\"tf-pn-epic-matsumoto\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"f218b4a0-c0a8-4fec-8ee4-01ee6ff22ef8\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\"}, {\"id\":\"5c18611e-8868-4ae6-bcb4-e28740bad197\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"subnet\":\"fd5f:519c:6d46:bece::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\"}], \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1090" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 56807825-86c7-44ac-96a9-275588f2bc37 + status: 200 OK + code: 200 + duration: 26.248507ms +- id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1911 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:54.430849+00:00\", \"bootscript\": 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\": \"92\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2afc7605-cd63-4ff5-bfea-98faa7d6c46b + status: 200 OK + code: 200 + duration: 189.977954ms +- id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9c5e618-0cd5-4c37-a88f-504cc2693953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 44d68d5e-6cd3-4dc4-b329-550a7b090f36 + status: 404 Not Found + code: 404 + duration: 37.202485ms +- id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a9c5e618-0cd5-4c37-a88f-504cc2693953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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-30T15:41:50.732487Z\", \"updated_at\":\"2025-10-30T15:41:50.732487Z\", \"references\":[{\"id\":\"3ce6b91d-974d-407d-9e91-cc0f2dd47cc9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"22aca716-006c-437b-8b4a-4c3223da1b43\", \"created_at\":\"2025-10-30T15:41:50.732487Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - da1f5824-672e-4d50-9710-8bdfbd0cd007 + status: 200 OK + code: 200 + duration: 92.963704ms +- id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 72fa95c7-38b0-42f3-94ec-a316fb6c7fd5 + status: 200 OK + code: 200 + duration: 116.997436ms +- id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d2f07344-1fe8-4ce0-b6ce-3ba0881890b9 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 103.961954ms +- id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/d8e61b0b-b64f-4336-90fc-2909a5a6173a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 437 + body: "{\"id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\", \"name\":\"TestAccServer_PrivateNetworkMissingPNIC\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.850373Z\", \"updated_at\":\"2025-10-30T15:41:48.850373Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e54b7b83-350c-4325-9e45-2823aaca4dad + status: 200 OK + code: 200 + duration: 81.95317ms +- id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/359387ac-e0bf-4fc0-9af9-35ea847b9141 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1090 + body: "{\"id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"name\":\"tf-pn-epic-matsumoto\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"f218b4a0-c0a8-4fec-8ee4-01ee6ff22ef8\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\"}, {\"id\":\"5c18611e-8868-4ae6-bcb4-e28740bad197\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"subnet\":\"fd5f:519c:6d46:bece::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\"}], \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1090" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0e86c886-f61b-4943-b015-bbdefe9c84f6 + status: 200 OK + code: 200 + duration: 23.265362ms +- id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1911 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:54.430849+00:00\", \"bootscript\": 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\": \"92\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 49240684-1f97-493d-88b8-3f0b3ca31a69 + status: 200 OK + code: 200 + duration: 152.022878ms +- id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9c5e618-0cd5-4c37-a88f-504cc2693953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fcdb6b70-f47d-4356-9814-2971c369ec27 + status: 404 Not Found + code: 404 + duration: 27.981859ms +- id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a9c5e618-0cd5-4c37-a88f-504cc2693953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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-30T15:41:50.732487Z\", \"updated_at\":\"2025-10-30T15:41:50.732487Z\", \"references\":[{\"id\":\"3ce6b91d-974d-407d-9e91-cc0f2dd47cc9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"22aca716-006c-437b-8b4a-4c3223da1b43\", \"created_at\":\"2025-10-30T15:41:50.732487Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3e69131b-270e-4589-bb93-cb10dd658de4 + status: 200 OK + code: 200 + duration: 92.335335ms +- id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b33b37a9-54e4-47d1-af0c-ec6762ad950d + status: 200 OK + code: 200 + duration: 87.640438ms +- id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 11677134-bf0c-4cae-821b-5eff28627de4 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 113.527838ms +- id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1911 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:54.430849+00:00\", \"bootscript\": 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\": \"92\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b47022e0-36f5-4b1b-ae38-3be72e5fb1d5 + status: 200 OK + code: 200 + duration: 188.532334ms +- id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3b73804d-f4b1-4a4d-b8e4-ed4623a5ddae + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 125.096258ms +- id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1911 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:54.430849+00:00\", \"bootscript\": 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\": \"92\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 68dcea87-8fda-4721-bcbc-ee18db8f5d72 + status: 200 OK + code: 200 + duration: 146.157426ms +- id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 61 + host: api.scaleway.com + body: "{\"private_network_id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"ea6ef66a-5cf3-4bfe-945f-9b540fd63f98\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:19:ce:a3\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:42:57.706494+00:00\", \"modification_date\": \"2025-10-30T15:42:57.914715+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"1bf9ce71-7416-4184-baf9-3e700797af93\", \"2bc0bb8b-4de1-4d95-ab2c-3e9e881be50a\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6a46149b-6c45-4be1-830e-1e6191f18877 + status: 201 Created + code: 201 + duration: 653.336734ms +- id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/ea6ef66a-5cf3-4bfe-945f-9b540fd63f98 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"ea6ef66a-5cf3-4bfe-945f-9b540fd63f98\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:19:ce:a3\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:42:57.706494+00:00\", \"modification_date\": \"2025-10-30T15:42:57.914715+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"1bf9ce71-7416-4184-baf9-3e700797af93\", \"2bc0bb8b-4de1-4d95-ab2c-3e9e881be50a\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f0e67c9e-c78f-4e6c-8278-0fed54e112d6 + status: 200 OK + code: 200 + duration: 88.635906ms +- id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/ea6ef66a-5cf3-4bfe-945f-9b540fd63f98 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"ea6ef66a-5cf3-4bfe-945f-9b540fd63f98\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:19:ce:a3\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.706494+00:00\", \"modification_date\": \"2025-10-30T15:42:58.908467+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"1bf9ce71-7416-4184-baf9-3e700797af93\", \"2bc0bb8b-4de1-4d95-ab2c-3e9e881be50a\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 616f9154-2b40-451f-b929-f97c54a2dab9 + status: 200 OK + code: 200 + duration: 108.377689ms +- id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/ea6ef66a-5cf3-4bfe-945f-9b540fd63f98 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"ea6ef66a-5cf3-4bfe-945f-9b540fd63f98\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:19:ce:a3\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.706494+00:00\", \"modification_date\": \"2025-10-30T15:42:58.908467+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"1bf9ce71-7416-4184-baf9-3e700797af93\", \"2bc0bb8b-4de1-4d95-ab2c-3e9e881be50a\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d8b1fc96-2691-42b6-a76d-0bf3fab2cd88 + status: 200 OK + code: 200 + duration: 100.923135ms +- id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2369 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:54.430849+00:00\", \"bootscript\": 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\": \"92\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"ea6ef66a-5cf3-4bfe-945f-9b540fd63f98\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:19:ce:a3\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.706494+00:00\", \"modification_date\": \"2025-10-30T15:42:58.908467+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"1bf9ce71-7416-4184-baf9-3e700797af93\", \"2bc0bb8b-4de1-4d95-ab2c-3e9e881be50a\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2369" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e331de4d-5614-463b-bda2-2d0e8a09ee99 + status: 200 OK + code: 200 + duration: 139.116209ms +- id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2415 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:54.430849+00:00\", \"bootscript\": 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\": \"92\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"ea6ef66a-5cf3-4bfe-945f-9b540fd63f98\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:19:ce:a3\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.706494+00:00\", \"modification_date\": \"2025-10-30T15:42:58.908467+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"1bf9ce71-7416-4184-baf9-3e700797af93\", \"2bc0bb8b-4de1-4d95-ab2c-3e9e881be50a\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2415" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - de7f0131-0aaa-4494-a636-42147d5ec545 + status: 200 OK + code: 200 + duration: 341.222929ms +- id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9c5e618-0cd5-4c37-a88f-504cc2693953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4bbff29c-c83e-4fb0-a8b7-7e096d8a31db + status: 404 Not Found + code: 404 + duration: 38.325332ms +- id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a9c5e618-0cd5-4c37-a88f-504cc2693953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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-30T15:41:50.732487Z\", \"updated_at\":\"2025-10-30T15:41:50.732487Z\", \"references\":[{\"id\":\"3ce6b91d-974d-407d-9e91-cc0f2dd47cc9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"22aca716-006c-437b-8b4a-4c3223da1b43\", \"created_at\":\"2025-10-30T15:41:50.732487Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d9fbbd9e-bdd8-4304-936d-5f084f4a47bf + status: 200 OK + code: 200 + duration: 94.588613ms +- id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f76b1b8b-9bc3-443f-b5d2-6535bf79e389 + status: 200 OK + code: 200 + duration: 201.071888ms +- id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"ea6ef66a-5cf3-4bfe-945f-9b540fd63f98\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:19:ce:a3\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.706494+00:00\", \"modification_date\": \"2025-10-30T15:42:58.908467+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"1bf9ce71-7416-4184-baf9-3e700797af93\", \"2bc0bb8b-4de1-4d95-ab2c-3e9e881be50a\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 390d22f0-c31d-4c1e-b8d7-65fd8f7a587a + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 99.682017ms +- id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - ea6ef66a-5cf3-4bfe-945f-9b540fd63f98 + 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=ea6ef66a-5cf3-4bfe-945f-9b540fd63f98&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1082 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"2bc0bb8b-4de1-4d95-ab2c-3e9e881be50a\", \"address\":\"fd5f:519c:6d46:bece:9cd6:a6a6:437f:2c73/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:42:58.162367Z\", \"updated_at\":\"2025-10-30T15:42:58.162367Z\", \"source\":{\"subnet_id\":\"5c18611e-8868-4ae6-bcb4-e28740bad197\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"ea6ef66a-5cf3-4bfe-945f-9b540fd63f98\", \"mac_address\":\"02:00:00:19:CE:A3\", \"name\":\"tf-srv-beautiful-albattani\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"1bf9ce71-7416-4184-baf9-3e700797af93\", \"address\":\"172.18.24.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:58.019307Z\", \"updated_at\":\"2025-10-30T15:42:58.019307Z\", \"source\":{\"subnet_id\":\"f218b4a0-c0a8-4fec-8ee4-01ee6ff22ef8\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"ea6ef66a-5cf3-4bfe-945f-9b540fd63f98\", \"mac_address\":\"02:00:00:19:CE:A3\", \"name\":\"tf-srv-beautiful-albattani\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1082" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7d532d7d-d294-45ef-8b73-d2dcfcec3302 + status: 200 OK + code: 200 + duration: 28.181314ms +- id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/d8e61b0b-b64f-4336-90fc-2909a5a6173a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 437 + body: "{\"id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\", \"name\":\"TestAccServer_PrivateNetworkMissingPNIC\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.850373Z\", \"updated_at\":\"2025-10-30T15:41:48.850373Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9e71ffed-dd59-482e-8328-6e1a80712f82 + status: 200 OK + code: 200 + duration: 25.911014ms +- id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/359387ac-e0bf-4fc0-9af9-35ea847b9141 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1090 + body: "{\"id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"name\":\"tf-pn-epic-matsumoto\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"f218b4a0-c0a8-4fec-8ee4-01ee6ff22ef8\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\"}, {\"id\":\"5c18611e-8868-4ae6-bcb4-e28740bad197\", \"created_at\":\"2025-10-30T15:41:49.064489Z\", \"updated_at\":\"2025-10-30T15:41:49.064489Z\", \"subnet\":\"fd5f:519c:6d46:bece::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\"}], \"vpc_id\":\"d8e61b0b-b64f-4336-90fc-2909a5a6173a\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1090" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eabe3188-f8b0-4ea0-9c0c-7edfed8a650b + status: 200 OK + code: 200 + duration: 34.839784ms +- id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2415 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:54.430849+00:00\", \"bootscript\": 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\": \"92\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"ea6ef66a-5cf3-4bfe-945f-9b540fd63f98\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:19:ce:a3\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.706494+00:00\", \"modification_date\": \"2025-10-30T15:42:58.908467+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"1bf9ce71-7416-4184-baf9-3e700797af93\", \"2bc0bb8b-4de1-4d95-ab2c-3e9e881be50a\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2415" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e682bfee-efc7-4e8a-b40c-b411ac3900cd + status: 200 OK + code: 200 + duration: 163.791105ms +- id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9c5e618-0cd5-4c37-a88f-504cc2693953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7dbffc72-cc22-4ec5-b56c-0e269d4c44ee + status: 404 Not Found + code: 404 + duration: 30.336296ms +- id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a9c5e618-0cd5-4c37-a88f-504cc2693953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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-30T15:41:50.732487Z\", \"updated_at\":\"2025-10-30T15:41:50.732487Z\", \"references\":[{\"id\":\"3ce6b91d-974d-407d-9e91-cc0f2dd47cc9\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"22aca716-006c-437b-8b4a-4c3223da1b43\", \"created_at\":\"2025-10-30T15:41:50.732487Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 741421ed-32b9-4e65-9084-cd64a82760bc + status: 200 OK + code: 200 + duration: 99.800039ms +- id: 115 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - af4ac2c0-e175-4d2b-a205-02e9d063c6a6 + status: 200 OK + code: 200 + duration: 105.985552ms +- id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"ea6ef66a-5cf3-4bfe-945f-9b540fd63f98\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:19:ce:a3\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.706494+00:00\", \"modification_date\": \"2025-10-30T15:42:58.908467+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"1bf9ce71-7416-4184-baf9-3e700797af93\", \"2bc0bb8b-4de1-4d95-ab2c-3e9e881be50a\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9e6a5254-dd92-46a5-90c3-0ece04c96540 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 110.976825ms +- id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - ea6ef66a-5cf3-4bfe-945f-9b540fd63f98 + 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=ea6ef66a-5cf3-4bfe-945f-9b540fd63f98&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1082 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"2bc0bb8b-4de1-4d95-ab2c-3e9e881be50a\", \"address\":\"fd5f:519c:6d46:bece:9cd6:a6a6:437f:2c73/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:42:58.162367Z\", \"updated_at\":\"2025-10-30T15:42:58.162367Z\", \"source\":{\"subnet_id\":\"5c18611e-8868-4ae6-bcb4-e28740bad197\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"ea6ef66a-5cf3-4bfe-945f-9b540fd63f98\", \"mac_address\":\"02:00:00:19:CE:A3\", \"name\":\"tf-srv-beautiful-albattani\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"1bf9ce71-7416-4184-baf9-3e700797af93\", \"address\":\"172.18.24.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:42:58.019307Z\", \"updated_at\":\"2025-10-30T15:42:58.019307Z\", \"source\":{\"subnet_id\":\"f218b4a0-c0a8-4fec-8ee4-01ee6ff22ef8\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"ea6ef66a-5cf3-4bfe-945f-9b540fd63f98\", \"mac_address\":\"02:00:00:19:CE:A3\", \"name\":\"tf-srv-beautiful-albattani\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1082" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 464320fe-ad70-4665-b6b1-f6b0a815e2dd + status: 200 OK + code: 200 + duration: 34.838341ms +- id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"ea6ef66a-5cf3-4bfe-945f-9b540fd63f98\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:19:ce:a3\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.706494+00:00\", \"modification_date\": \"2025-10-30T15:42:58.908467+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"1bf9ce71-7416-4184-baf9-3e700797af93\", \"2bc0bb8b-4de1-4d95-ab2c-3e9e881be50a\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a68bf732-e230-408b-b3fa-4f5fe010b629 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 115.754226ms +- id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/ea6ef66a-5cf3-4bfe-945f-9b540fd63f98 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"ea6ef66a-5cf3-4bfe-945f-9b540fd63f98\", \"private_network_id\": \"359387ac-e0bf-4fc0-9af9-35ea847b9141\", \"server_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"mac_address\": \"02:00:00:19:ce:a3\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:57.706494+00:00\", \"modification_date\": \"2025-10-30T15:42:58.908467+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"1bf9ce71-7416-4184-baf9-3e700797af93\", \"2bc0bb8b-4de1-4d95-ab2c-3e9e881be50a\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d7f931ed-76be-42cb-814c-0c373718ae69 + status: 200 OK + code: 200 + duration: 117.874584ms +- id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/ea6ef66a-5cf3-4bfe-945f-9b540fd63f98 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6aac5686-0045-4f52-b986-6bcaf503381e + status: 204 No Content + code: 204 + duration: 454.172645ms +- id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics/ea6ef66a-5cf3-4bfe-945f-9b540fd63f98 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 148 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_private_nic\", \"resource_id\": \"ea6ef66a-5cf3-4bfe-945f-9b540fd63f98\"}" + headers: + Content-Length: + - "148" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cc87015a-6d8e-4c24-9785-dda3e4ff3b7d + status: 404 Not Found + code: 404 + duration: 106.364253ms +- id: 122 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:06 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 29f0b141-7609-4d41-88cf-50a2af5be5d4 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 88.379366ms +- id: 123 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1911 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:54.430849+00:00\", \"bootscript\": 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\": \"92\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eefd976c-3603-46ec-b2a9-44fb92a79a3a + status: 200 OK + code: 200 + duration: 147.595035ms +- id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1957 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:41:54.430849+00:00\", \"bootscript\": 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\": \"92\"}, \"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: + - "1957" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9b923c97-043e-453a-8e0e-6d2b6413834f + status: 200 OK + code: 200 + duration: 141.957018ms +- id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"0e1feaea-c7bf-4a8e-af70-5e47ed748b52\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/22aca716-006c-437b-8b4a-4c3223da1b43/action\", \"href_result\": \"/servers/22aca716-006c-437b-8b4a-4c3223da1b43\", \"started_at\": \"2025-10-30T15:43:07.139201+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:07 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0e1feaea-c7bf-4a8e-af70-5e47ed748b52 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 02b6b01e-4908-4b74-83e1-4078b15a2765 + status: 202 Accepted + code: 202 + duration: 309.047605ms +- id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1874 + body: "{\"server\": {\"id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\", \"name\": \"tf-srv-beautiful-albattani\", \"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-albattani\", \"image\": {\"id\": \"6d3c053e-c728-4294-b23a-560b62a4d592\", \"name\": \"Ubuntu 22.04 Jammy Jellyfish\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"36b4ce54-c67a-4f68-ab74-839515834352\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:11:41.420846+00:00\", \"modification_date\": \"2025-09-12T09:11:41.420846+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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:6c:ab\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:50.590423+00:00\", \"modification_date\": \"2025-10-30T15:43:06.890454+00:00\", \"bootscript\": 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\": \"92\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fac5f330-f029-43b4-ad94-9b40b1ebf325 + status: 200 OK + code: 200 + duration: 180.437342ms +- id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1b109094-7a76-4843-9750-3b803f0daa4e + status: 404 Not Found + code: 404 + duration: 47.565065ms +- id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9c5e618-0cd5-4c37-a88f-504cc2693953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"a9c5e618-0cd5-4c37-a88f-504cc2693953\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b5d2df2f-23be-466a-8c8a-47c460c2560b + status: 404 Not Found + code: 404 + duration: 27.86467ms +- id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a9c5e618-0cd5-4c37-a88f-504cc2693953 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 498 + body: "{\"id\":\"a9c5e618-0cd5-4c37-a88f-504cc2693953\", \"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-30T15:41:50.732487Z\", \"updated_at\":\"2025-10-30T15:43:08.875637Z\", \"references\":[], \"parent_snapshot_id\":\"36b4ce54-c67a-4f68-ab74-839515834352\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:43:08.875637Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "498" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a9b466a2-c0e2-456a-b486-8bd7e973d9e4 + status: 200 OK + code: 200 + duration: 85.300161ms +- id: 130 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a9c5e618-0cd5-4c37-a88f-504cc2693953 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2a917f8b-f87a-4c11-abf9-61dc1bd96baa + status: 204 No Content + code: 204 + duration: 164.444834ms +- id: 131 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/359387ac-e0bf-4fc0-9af9-35ea847b9141 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ac273fb2-cced-4cc8-a0ca-c9c996d7fd86 + status: 204 No Content + code: 204 + duration: 1.142095644s +- id: 132 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/d8e61b0b-b64f-4336-90fc-2909a5a6173a + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6d648cd0-ee86-4346-9339-7a4e1fd0b55d + status: 204 No Content + code: 204 + duration: 112.230388ms +- id: 133 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/22aca716-006c-437b-8b4a-4c3223da1b43 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"22aca716-006c-437b-8b4a-4c3223da1b43\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d398bc5f-efaf-4669-9011-37becf2dc331 + status: 404 Not Found + code: 404 + duration: 48.461636ms diff --git a/internal/services/instance/testdata/server-private-network.cassette.yaml b/internal/services/instance/testdata/server-private-network.cassette.yaml index 04cdcc6e8..57c714230 100644 --- a/internal/services/instance/testdata/server-private-network.cassette.yaml +++ b/internal/services/instance/testdata/server-private-network.cassette.yaml @@ -1,9582 +1,7798 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 124 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"TestAccServer_PrivateNetwork","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 426 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dfefe6dc-eb24-4675-9c59-96e148c2b8d3 - status: 200 OK - code: 200 - duration: 77.7515ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c902fdb9-2b14-41b6-8205-47683e8628ab - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 426 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6e4a43aa-2817-4ef6-9735-f0f60dbff48f - status: 200 OK - code: 200 - duration: 24.322064ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 202 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"private_network_instance","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab","default_route_propagation_enabled":false}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1093 - uncompressed: false - 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: - - "1093" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4aa617bd-dbd4-48a9-b39c-59bf94262f4e - status: 200 OK - code: 200 - duration: 642.044046ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/643122ae-3d61-498b-8c96-4942f49b3487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1093 - uncompressed: false - 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: - - "1093" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a66d813d-5a0d-423d-afe0-cc76a4402114 - status: 200 OK - code: 200 - duration: 25.264807ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 40275 - uncompressed: false - 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: - - "40275" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ebf0005a-b75d-4e27-a166-ba715c83f5c8 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 67.785794ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14060 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f0610587-1b90-4465-9438-92487fcd0efb - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 49.433805ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1266 - uncompressed: false - 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: - - "1266" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - df6b3ea5-c2a0-4e06-a266-bc2e15acd5a7 - status: 200 OK - code: 200 - duration: 48.615534ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 230 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1730 - uncompressed: false - 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: - - "1730" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 98c37be6-8d65-4abd-a6ff-6f91ea7259a0 - status: 201 Created - code: 201 - duration: 1.441454381s - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1730 - uncompressed: false - 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: - - "1730" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ad9f89ec-cbc8-4bc9-924d-6d6bdef79aa7 - status: 200 OK - code: 200 - duration: 149.009337ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1730 - uncompressed: false - 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: - - "1730" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d3fa4874-a639-4515-8b64-b52c42ee4f4c - status: 200 OK - code: 200 - duration: 146.89804ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/0551fc56-2b66-4f13-bf4e-b1c48e406a51 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9f849e98-6726-42ac-884e-390b4b797020 - status: 200 OK - code: 200 - duration: 89.70258ms - - id: 11 - 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-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/f3b98fd0-5c1d-4503-ac4a-b481fa535699 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 74a5f991-2f1b-47a6-aa5e-01a209fb9298 - status: 202 Accepted - code: 202 - duration: 272.243635ms - - 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-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1752 - uncompressed: false - 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: - - "1752" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 054fc3ac-807a-4d7f-b6cb-821edc97d36f - status: 200 OK - code: 200 - duration: 132.573803ms - - 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-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1887 - uncompressed: false - 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: - - "1887" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4ce65abf-79ee-41db-8259-2461f0842886 - status: 200 OK - code: 200 - duration: 150.236144ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/643122ae-3d61-498b-8c96-4942f49b3487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1093 - uncompressed: false - 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: - - "1093" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 65b51e38-39cd-4904-95fa-29c8638d83df - status: 200 OK - code: 200 - duration: 31.519845ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1887 - uncompressed: false - 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: - - "1887" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0c12c77b-5514-482c-a459-442884549ec3 - status: 200 OK - code: 200 - duration: 154.597962ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 61 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"private_network_id":"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/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9d96f58b-8d2c-4dd0-9193-d5bc9081d9b7 - status: 201 Created - code: 201 - duration: 740.879419ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e51b4435-379d-40b3-8928-2560f864897a - status: 200 OK - code: 200 - duration: 121.944067ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e305da6a-6c11-4449-94ea-2efa4ecce5c5 - status: 200 OK - code: 200 - duration: 108.861993ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4f5293da-6fa9-4733-b6e4-fee3737f6204 - status: 200 OK - code: 200 - duration: 110.463228ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5af9a02e-2449-4bfd-80f5-9c27b3735147 - status: 200 OK - code: 200 - duration: 102.537718ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5ecbba8f-7c00-4ea1-9643-f2643f9e28cb - status: 200 OK - code: 200 - duration: 92.563396ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8077ba63-6766-44fc-ae7f-482daf684345 - status: 200 OK - code: 200 - duration: 98.129427ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 88c1cce9-8323-4c94-8657-b4e15a8cc037 - status: 200 OK - code: 200 - duration: 107.411106ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aa4ec77c-fbd5-4e91-a4b9-45099e7f6d75 - status: 200 OK - code: 200 - duration: 110.408533ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6991cdaf-dee1-4de7-b7ce-bb736a9e5b21 - status: 200 OK - code: 200 - duration: 95.519669ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 81ca3772-60b6-492f-b931-6edc7f41b467 - status: 200 OK - code: 200 - duration: 93.398954ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b175f1c6-75ae-4757-8232-2877a9bc5322 - status: 200 OK - code: 200 - duration: 110.951391ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2345 - uncompressed: false - 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: - - "2345" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9086f517-6a21-451e-b501-2081ac4d8a65 - status: 200 OK - code: 200 - duration: 153.897198ms - - 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-2/volumes/0551fc56-2b66-4f13-bf4e-b1c48e406a51 - 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": "0551fc56-2b66-4f13-bf4e-b1c48e406a51"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 72cd9231-fc9c-4702-8e45-620fc8e1a9c0 - status: 404 Not Found - code: 404 - duration: 30.059988ms - - 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/block/v1alpha1/zones/fr-par-2/volumes/0551fc56-2b66-4f13-bf4e-b1c48e406a51 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9b9da094-2e01-4321-848b-d53f90a2a326 - status: 200 OK - code: 200 - duration: 88.50405ms - - 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-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/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:56:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c2a6d091-e990-4d5e-a7fc-da3d5ebfaff3 - status: 200 OK - code: 200 - duration: 92.071792ms - - 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-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:23 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aca36c53-8c3c-4172-88a4-ff66b7f2e7cb - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 110.83406ms - - 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: - 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=9758daee-aef0-422b-b7ec-e87e496f7f18&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1063 - uncompressed: false - 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: - - "1063" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3f4e179b-6d32-42c9-91b8-fb4a6859f54d - status: 200 OK - code: 200 - duration: 30.706859ms - - 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-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:23 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cce51f1a-8c0b-4087-9a53-4c8bc27abfd2 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 99.113041ms - - 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/vpc/v2/regions/fr-par/vpcs/c902fdb9-2b14-41b6-8205-47683e8628ab - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 426 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 64c5d928-6c88-4d56-8a1a-00c0fb0584cb - status: 200 OK - code: 200 - duration: 28.470436ms - - 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/vpc/v2/regions/fr-par/private-networks/643122ae-3d61-498b-8c96-4942f49b3487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1093 - uncompressed: false - 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: - - "1093" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a1e4f6b1-d677-4107-8a74-0338c305059d - status: 200 OK - code: 200 - duration: 26.587144ms - - 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-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2345 - uncompressed: false - 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: - - "2345" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1664b7dc-7524-409a-9df1-772987cfdcd7 - status: 200 OK - code: 200 - duration: 158.947824ms - - 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-2/volumes/0551fc56-2b66-4f13-bf4e-b1c48e406a51 - 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": "0551fc56-2b66-4f13-bf4e-b1c48e406a51"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ac4fa0e8-f7b1-4c81-b83c-0778d98ea158 - status: 404 Not Found - code: 404 - duration: 28.361741ms - - 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/block/v1alpha1/zones/fr-par-2/volumes/0551fc56-2b66-4f13-bf4e-b1c48e406a51 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9876f39e-02cc-4d91-9798-f9e9b6cee206 - status: 200 OK - code: 200 - duration: 87.190013ms - - 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-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/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:56:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 801c5ae8-6868-42f6-8de4-c19448b63789 - status: 200 OK - code: 200 - duration: 97.901866ms - - 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-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:24 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1f170a54-a294-4fd1-981c-7c636c603114 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 121.817713ms - - 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: - 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=9758daee-aef0-422b-b7ec-e87e496f7f18&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1063 - uncompressed: false - 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: - - "1063" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f1964135-b586-4e57-8482-ca3268caa64c - status: 200 OK - code: 200 - duration: 25.015103ms - - 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/vpc/v2/regions/fr-par/vpcs/c902fdb9-2b14-41b6-8205-47683e8628ab - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 426 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ca49de87-8ad7-4f5d-8b7e-7ef150f6f2dc - status: 200 OK - code: 200 - duration: 27.115542ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/643122ae-3d61-498b-8c96-4942f49b3487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1093 - uncompressed: false - 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: - - "1093" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 97a6d325-c52a-48d1-9e87-4568a96a1fbe - status: 200 OK - code: 200 - duration: 26.761269ms - - 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-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2345 - uncompressed: false - 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: - - "2345" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 756f9d13-83b2-4e98-ab3a-ab4c5339202a - status: 200 OK - code: 200 - duration: 149.313837ms - - 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-2/volumes/0551fc56-2b66-4f13-bf4e-b1c48e406a51 - 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": "0551fc56-2b66-4f13-bf4e-b1c48e406a51"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f5eb6c27-69bc-4e88-83b7-aa27972724d0 - status: 404 Not Found - code: 404 - duration: 26.517422ms - - id: 47 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/0551fc56-2b66-4f13-bf4e-b1c48e406a51 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2f7aa397-644c-44f2-a824-519f7cd26ad9 - status: 200 OK - code: 200 - duration: 97.296805ms - - 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-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/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:56:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7760a853-e207-4d61-b252-828da5ba13aa - status: 200 OK - code: 200 - duration: 102.07001ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:25 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d7d9aa06-a3ab-494d-ae72-f01c9354c8df - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 107.196339ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=9758daee-aef0-422b-b7ec-e87e496f7f18&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1063 - uncompressed: false - 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: - - "1063" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a18cafde-5139-4630-a86d-10f9a2c71d16 - status: 200 OK - code: 200 - duration: 33.724061ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:25 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dd1d4fc9-d6c2-43bc-a044-901a7e84e7ba - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 104.531986ms - - 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-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 44b98b66-415b-485e-bef7-6cbb97e9313f - status: 200 OK - code: 200 - duration: 101.396111ms - - 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-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 - 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:56:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5adaee46-8963-4875-a833-899073625db8 - status: 204 No Content - code: 204 - duration: 453.976207ms - - 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-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/private_nics/9758daee-aef0-422b-b7ec-e87e496f7f18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 148 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4e54245b-8afa-451a-a844-87857180443a - status: 404 Not Found - code: 404 - duration: 85.092369ms - - id: 55 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/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:56:26 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f1963953-27f0-4cb5-bb4a-81b718bd3da8 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 95.624045ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1887 - uncompressed: false - 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: - - "1887" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3fda148f-e499-45bc-93ba-8d3b9f44ffed - status: 200 OK - code: 200 - duration: 139.933255ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1887 - uncompressed: false - 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: - - "1887" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7e0c955b-b515-44b2-8a98-7d42aaa18958 - status: 200 OK - code: 200 - duration: 140.365851ms - - id: 58 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 22 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"terminate"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:27 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/11c6f6be-dbb3-4e8e-a2f7-407c57ad9617 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cbfe99e1-e53b-4dc5-8e06-a4e1e1b0ac2f - status: 202 Accepted - code: 202 - duration: 261.400333ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1850 - uncompressed: false - 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: - - "1850" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2d710a22-c0e4-44d6-9d77-e18d25e7d690 - status: 200 OK - code: 200 - duration: 156.679743ms - - id: 60 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/e1eca761-91d7-4166-83c4-3c9ac1b6acc5 - 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": "e1eca761-91d7-4166-83c4-3c9ac1b6acc5"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3287c542-155b-4527-8330-e0d05d8ffb20 - status: 404 Not Found - code: 404 - duration: 52.188583ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/0551fc56-2b66-4f13-bf4e-b1c48e406a51 - 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": "0551fc56-2b66-4f13-bf4e-b1c48e406a51"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 093d74ea-0fa5-447c-a81b-05264c0cc82e - status: 404 Not Found - code: 404 - duration: 29.998684ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/0551fc56-2b66-4f13-bf4e-b1c48e406a51 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 36ff25d7-673e-4a9a-a080-67924f78a22a - status: 200 OK - code: 200 - duration: 90.484606ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/0551fc56-2b66-4f13-bf4e-b1c48e406a51 - 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:56:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6d2d2f87-2963-4133-af5d-5621ee4c3f7a - status: 204 No Content - code: 204 - duration: 149.144301ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 202 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"private_network_instance","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab","default_route_propagation_enabled":false}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1094 - uncompressed: false - body: '{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6f091ace-334d-46a1-b53c-93d07843917a - status: 200 OK - code: 200 - duration: 668.767992ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/55c55c2c-e481-4d0c-9bca-132a1b4215ef - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1094 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c584094c-7909-42f3-8804-f8e4b21659df - status: 200 OK - code: 200 - duration: 27.532482ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/643122ae-3d61-498b-8c96-4942f49b3487 - 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:56:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ac1a4fb3-8fef-4af2-827b-c53e20003773 - status: 204 No Content - code: 204 - duration: 1.285757596s - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:33 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 00fafef6-0762-437d-a8b3-307b445d3f72 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 44.44937ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:33 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 38ba660b-5b49-411a-a6a6-e91aae154bb4 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 41.670723ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d90573ea-848c-417c-97fd-fe3dbe39ed6c - status: 200 OK - code: 200 - duration: 44.709996ms - - id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 236 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1788 - 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": "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: - - "1788" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:35 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7db0b51e-3c56-4cb6-9f95-b45066c2470d - status: 201 Created - code: 201 - duration: 1.364717945s - - 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/80c85af0-da43-4fc3-bb9b-7089afdc8289 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1742 - 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": "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: - - "1742" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6ccb02db-134e-43ef-95bc-fe60e6d73622 - status: 200 OK - code: 200 - duration: 138.334126ms - - 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/80c85af0-da43-4fc3-bb9b-7089afdc8289 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1788 - 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": "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: - - "1788" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 00d93727-aa0c-4c4f-a4cd-f93ffce33891 - status: 200 OK - code: 200 - duration: 152.86423ms - - id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aa81a1fa-9ea3-4a26-865e-f0d2a3247c04 - status: 200 OK - code: 200 - duration: 81.496638ms - - id: 74 - 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/80c85af0-da43-4fc3-bb9b-7089afdc8289/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:36 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f748ba99-f800-46e9-8ddc-f4ec5a0f8133 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2a72a40f-a908-43ce-8528-bc4aa883801e - status: 202 Accepted - code: 202 - duration: 325.277392ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1764 - 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": "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: - - "1764" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 06afa74d-19f9-4800-8e55-74dfaee3d2c4 - status: 200 OK - code: 200 - duration: 133.231201ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1944 - 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": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' - headers: - Content-Length: - - "1944" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9137d4f9-2963-49d5-a305-5f822a2b941a - status: 200 OK - code: 200 - duration: 147.015173ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/55c55c2c-e481-4d0c-9bca-132a1b4215ef - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1094 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f704143e-89a4-4baa-9893-a3e31d63607d - status: 200 OK - code: 200 - duration: 24.138585ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1898 - 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": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' - headers: - Content-Length: - - "1898" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8633276b-621c-4f54-be82-cbd4ca257d1b - status: 200 OK - code: 200 - duration: 158.132485ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 61 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"private_network_id":"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/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic": {"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: - - 7515e979-2ff4-47a2-8ad8-4606b5d50883 - status: 201 Created - code: 201 - 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 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+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:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 71ed0f73-a441-48c4-b2f1-cbad52b03e09 - status: 200 OK - code: 200 - duration: 95.602792ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 77abeda4-cae7-4759-b5a7-acff01f760c8 - status: 200 OK - code: 200 - duration: 114.78059ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0a3e0f97-3b83-4834-983c-5239242735e0 - status: 200 OK - code: 200 - duration: 127.326234ms - - 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/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:57:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 41186b22-9bd4-4d80-86a6-d516ed848684 - status: 200 OK - code: 200 - duration: 113.841034ms - - 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/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:57:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ec6c37e5-acb6-4c1e-8c1d-4af5c75dc723 - status: 200 OK - code: 200 - duration: 112.23897ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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:57:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9afb8622-cd4b-4354-849c-bde87a723235 - status: 200 OK - code: 200 - duration: 100.242154ms - - 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/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:57:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 291086b5-7c47-448c-8cc5-cf4960145599 - status: 200 OK - code: 200 - duration: 92.040725ms - - 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/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:57:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ebaab352-2a90-4f22-aae6-ed51ec0a9624 - status: 200 OK - code: 200 - duration: 98.134142ms - - 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/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:57:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d126343d-5a9f-4882-aa46-b60a3d6322b7 - status: 200 OK - code: 200 - duration: 93.418764ms - - 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/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:57:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7d6475b2-c261-4625-af1e-310ae9ccf2d9 - status: 200 OK - code: 200 - duration: 104.744498ms - - 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/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: 475 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a6ec7bff-c858-4213-82a8-c52037068200 - status: 200 OK - code: 200 - duration: 107.12992ms - - 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/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: 475 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 71d3051d-f75c-4000-97e2-38772fdf2716 - status: 200 OK - code: 200 - duration: 101.891423ms - - 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/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 - 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": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a8123b77-26e1-4370-a0f8-bb77236eb44b - status: 404 Not Found - code: 404 - duration: 35.070445ms - - id: 95 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5431980a-66e7-4121-858e-1a670b7c50f7 - status: 200 OK - code: 200 - duration: 86.621984ms - - 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/80c85af0-da43-4fc3-bb9b-7089afdc8289/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:57:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 904b9bff-5601-47e2-a6e6-6b767038963d - status: 200 OK - code: 200 - duration: 101.882937ms - - 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/80c85af0-da43-4fc3-bb9b-7089afdc8289/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:39 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fcbd1a26-16aa-4893-98db-708b1a71eb55 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 149.855263ms - - 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: - 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=adc4f975-a3df-497e-a5d4-744191eb6dad&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1074 - uncompressed: false - 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: - - "1074" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7c54d5d2-b16f-42fe-a51a-cc16c1db5c0c - status: 200 OK - code: 200 - duration: 31.550361ms - - 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/80c85af0-da43-4fc3-bb9b-7089afdc8289/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:39 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ef63db32-e51c-4e02-97e6-9b292238fb52 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 102.094272ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c902fdb9-2b14-41b6-8205-47683e8628ab - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 426 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 418a5e04-cf20-4c21-b58f-67f0d073edff - status: 200 OK - code: 200 - duration: 35.140706ms - - 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/vpc/v2/regions/fr-par/private-networks/55c55c2c-e481-4d0c-9bca-132a1b4215ef - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1094 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e2ce11b7-4900-4513-ba1d-9b16f1ab45e3 - status: 200 OK - code: 200 - duration: 28.647241ms - - 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/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:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e6f81528-dff5-4eb8-a4c4-df4252bb9b12 - status: 200 OK - code: 200 - duration: 147.871021ms - - 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/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - 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": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2efc91c4-8472-4be3-b404-34257e2d478a - status: 404 Not Found - code: 404 - duration: 37.398369ms - - id: 104 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 218e375f-c775-4123-ab97-16169ecfc4a4 - status: 200 OK - code: 200 - duration: 80.173222ms - - 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/80c85af0-da43-4fc3-bb9b-7089afdc8289/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:57:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5061c7ec-bd1f-47c4-9897-279f820caa84 - status: 200 OK - code: 200 - duration: 92.694002ms - - 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/80c85af0-da43-4fc3-bb9b-7089afdc8289/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:40 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 821cf412-2012-4171-a671-c4b704020cab - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 99.660029ms - - 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: - 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=adc4f975-a3df-497e-a5d4-744191eb6dad&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1074 - uncompressed: false - 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: - - "1074" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2124d839-94aa-4ebb-b99f-f35f2d7b9ad7 - status: 200 OK - code: 200 - duration: 30.32027ms - - id: 108 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c902fdb9-2b14-41b6-8205-47683e8628ab - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 426 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8cf2e68c-9fd9-4ded-85d0-3eef3ab33761 - status: 200 OK - code: 200 - duration: 51.592116ms - - 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/vpc/v2/regions/fr-par/private-networks/55c55c2c-e481-4d0c-9bca-132a1b4215ef - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1094 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9d123108-9de4-45ab-8368-d2b08b83806d - status: 200 OK - code: 200 - duration: 30.749022ms - - id: 110 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2442 - 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, "admin_password_encrypted_value": null}}' - headers: - Content-Length: - - "2442" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9dde8a7f-ac42-4f5b-ab99-cf5e33f7c781 - status: 200 OK - code: 200 - duration: 130.601392ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - 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": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 68920c1f-002e-402b-9ba4-0fd078cf5d84 - status: 404 Not Found - code: 404 - duration: 27.803262ms - - id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3bedd216-c340-4abe-99fd-8d30de2e9165 - status: 200 OK - code: 200 - duration: 96.513774ms - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/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:57:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ce89e8a9-f627-4d64-80f5-a291ef4873b8 - status: 200 OK - code: 200 - duration: 131.511353ms - - 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/80c85af0-da43-4fc3-bb9b-7089afdc8289/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:40 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4593b869-446a-4a75-8210-57f8af617177 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 107.335346ms - - id: 115 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=adc4f975-a3df-497e-a5d4-744191eb6dad&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1074 - uncompressed: false - 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: - - "1074" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f364e424-5bae-4d50-9020-7403180136c3 - status: 200 OK - code: 200 - duration: 29.784007ms - - id: 116 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 205 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"private_network_instance_02","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"c902fdb9-2b14-41b6-8205-47683e8628ab","default_route_propagation_enabled":false}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1098 - uncompressed: false - 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: - - "1098" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 39e56d16-a16b-40fc-bd78-06bfaff2956f - status: 200 OK - code: 200 - duration: 624.206831ms - - id: 117 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f3c55b96-528f-49af-95f1-bafdf4e557a4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1098 - uncompressed: false - 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: - - "1098" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c6b10a01-8024-42c4-9ef9-715b88e90c08 - status: 200 OK - code: 200 - duration: 27.520963ms - - id: 118 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2356 - 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}}' - headers: - Content-Length: - - "2356" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1eec6aac-0df2-4ba7-af64-f66fd8bd3a22 - status: 200 OK - code: 200 - duration: 151.149493ms - - id: 119 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:42 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b5172ee0-8464-4d16-8cb7-307bc9ffd633 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 133.973279ms - - id: 120 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2356 - 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}}' - headers: - Content-Length: - - "2356" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 27259eb5-a546-4d6e-8549-4a6bfa034255 - status: 200 OK - code: 200 - duration: 148.542217ms - - id: 121 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 475 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 90ba705d-8e08-498f-8166-d5d29b60be83 - status: 200 OK - code: 200 - duration: 103.028531ms - - id: 122 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/adc4f975-a3df-497e-a5d4-744191eb6dad - 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:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b14ca35b-8ea4-4b7c-ba7d-a8b594e17392 - status: 204 No Content - code: 204 - duration: 409.763173ms - - id: 123 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/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: 148 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2c5718a6-8215-4a42-b36f-bf0bd1b8c37a - status: 404 Not Found - code: 404 - duration: 95.973193ms - - id: 124 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 61 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"private_network_id":"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/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ca2578b9-ba69-43fe-8a36-0534f3cc5242 - status: 201 Created - code: 201 - duration: 697.919251ms - - id: 125 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1dca76eb-c3d7-4f83-b86f-0238be11dc26 - status: 200 OK - code: 200 - duration: 94.276612ms - - id: 126 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ee126000-61d0-432b-92a4-5060828ae039 - status: 200 OK - code: 200 - duration: 96.094792ms - - id: 127 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1733348e-5eed-498b-a688-98e7c86ad52a - status: 200 OK - code: 200 - duration: 99.951827ms - - id: 128 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2356 - 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": "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: - - "2356" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 27c08b9f-f93e-41f3-a419-94f1f68a69a1 - status: 200 OK - code: 200 - duration: 160.670855ms - - id: 129 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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": "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: - - "2402" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 796c525a-1646-43fc-892a-109ba7a22181 - status: 200 OK - code: 200 - duration: 140.182524ms - - id: 130 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - 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": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8d57e4f5-8bca-43f1-b11c-4564a7c0452c - status: 404 Not Found - code: 404 - duration: 39.917992ms - - id: 131 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f80c4b8a-245f-4433-a5c0-4ac95bcac574 - status: 200 OK - code: 200 - duration: 92.315685ms - - id: 132 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/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:57:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0e292f44-9ae0-42de-b0f5-26fd1be67f50 - status: 200 OK - code: 200 - duration: 96.54249ms - - id: 133 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:49 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bdeb1474-f544-4e06-b3d3-1a5ce7c84e1a - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 113.291789ms - - id: 134 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1077 - uncompressed: false - 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: - - "1077" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8779704f-06cb-4a9c-a16a-170ec1008152 - status: 200 OK - code: 200 - duration: 77.385501ms - - id: 135 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:49 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8fc38734-bfc9-4e26-8e48-88f3e3e4dbd4 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 107.350546ms - - id: 136 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c902fdb9-2b14-41b6-8205-47683e8628ab - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 426 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 58d12e50-6d77-4fc8-8e90-41bd195b2eef - status: 200 OK - code: 200 - duration: 27.416519ms - - id: 137 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/55c55c2c-e481-4d0c-9bca-132a1b4215ef - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1094 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 551a2b10-edf7-409a-8caa-d1f1b1eaaf99 - status: 200 OK - code: 200 - duration: 28.487332ms - - id: 138 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f3c55b96-528f-49af-95f1-bafdf4e557a4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1098 - uncompressed: false - 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: - - "1098" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b1aa6903-38d3-4d48-b06c-e4e564b499fa - status: 200 OK - code: 200 - duration: 28.009939ms - - id: 139 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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": "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: - - "2402" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4f3897b7-2124-442f-a58b-10dd3f360446 - status: 200 OK - code: 200 - duration: 147.800964ms - - id: 140 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - 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": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1f5341a3-ca42-4721-bdd4-34262d98cceb - status: 404 Not Found - code: 404 - duration: 31.404658ms - - id: 141 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0718f0dc-718f-4b8d-8d59-5692e32f1bba - status: 200 OK - code: 200 - duration: 96.332358ms - - id: 142 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/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:57:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8671f497-f290-4153-aa1b-e50ef1ae2aed - status: 200 OK - code: 200 - duration: 96.847772ms - - id: 143 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:50 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 527255b6-0676-4b3e-8337-3784550a101b - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 110.69964ms - - id: 144 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1077 - uncompressed: false - 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: - - "1077" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0f600f5f-9274-4894-93c9-bcd616689890 - status: 200 OK - code: 200 - duration: 34.980577ms - - id: 145 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c902fdb9-2b14-41b6-8205-47683e8628ab - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 426 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6daed32e-c5df-4032-8f1a-d154b17b9422 - status: 200 OK - code: 200 - duration: 25.376824ms - - id: 146 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/55c55c2c-e481-4d0c-9bca-132a1b4215ef - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1094 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3c554afd-27fc-4302-ad01-a3fced82272c - status: 200 OK - code: 200 - duration: 23.675563ms - - 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/vpc/v2/regions/fr-par/private-networks/f3c55b96-528f-49af-95f1-bafdf4e557a4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1098 - uncompressed: false - 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: - - "1098" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 980e91a1-2f94-4581-bb1c-6b7d0d531e5a - status: 200 OK - code: 200 - duration: 26.275325ms - - 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/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": "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: - - "2402" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 086d9c7b-7d0d-46ec-ab33-85c4bbe34135 - status: 200 OK - code: 200 - duration: 164.933969ms - - id: 149 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - 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": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4280db82-c0f6-47e8-9160-0cdcaff0869d - status: 404 Not Found - code: 404 - duration: 29.97712ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 54de3f7a-9674-4fec-a398-64e3fba5a259 - status: 200 OK - code: 200 - duration: 82.338684ms - - id: 151 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/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:57:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9bf84b07-985d-4daa-a110-af0e316bf477 - status: 200 OK - code: 200 - duration: 103.431426ms - - 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/80c85af0-da43-4fc3-bb9b-7089afdc8289/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:51 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 58f8670b-240f-449b-88bd-3a5f98441788 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 121.289807ms - - 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: - 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=855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1077 - uncompressed: false - 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: - - "1077" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7a32cbb8-8241-44b3-8972-54f8599efb25 - status: 200 OK - code: 200 - duration: 29.722212ms - - 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/80c85af0-da43-4fc3-bb9b-7089afdc8289 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2442 - 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": "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: - - "2442" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - beef2dba-96fa-4ea8-a555-09ab8a5816db - status: 200 OK - code: 200 - duration: 157.480999ms - - 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/80c85af0-da43-4fc3-bb9b-7089afdc8289/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:51 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9b1f85be-4116-46a0-ba45-6dda29240f30 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 100.747016ms - - 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/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": "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: - - "2402" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0a28192d-bcd5-4eb3-9d4b-c3856966f2fa - status: 200 OK - code: 200 - duration: 146.412167ms - - id: 157 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 61 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"private_network_id":"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/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9daa0eea-d5ef-44f5-862b-da255900fd59 - status: 201 Created - code: 201 - duration: 638.764533ms - - 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/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/bfa71825-f835-4642-a841-3fca02d9f73e - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2d07bb80-df22-4994-ac79-d3f59bc2d455 - status: 200 OK - code: 200 - duration: 93.760228ms - - 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/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/bfa71825-f835-4642-a841-3fca02d9f73e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e96e75d6-ca59-4c27-ae2a-ea7ab000aec2 - status: 200 OK - code: 200 - duration: 115.752541ms - - 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/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/bfa71825-f835-4642-a841-3fca02d9f73e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d15b5302-71bc-4b1b-acee-2d44e2449686 - status: 200 OK - code: 200 - duration: 93.34949ms - - 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/80c85af0-da43-4fc3-bb9b-7089afdc8289 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2902 - 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": "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: - - "2902" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d3747115-eae8-423e-8753-98e81ecf8434 - status: 200 OK - code: 200 - duration: 152.407643ms - - 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/80c85af0-da43-4fc3-bb9b-7089afdc8289 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2816 - 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": "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: - - "2816" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6b5ddb46-fa90-4e92-a541-50926532d507 - status: 200 OK - code: 200 - duration: 131.683419ms - - 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/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - 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": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b8ae0c56-8021-4139-9004-a509615378e4 - status: 404 Not Found - code: 404 - duration: 31.339117ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d9bddea3-8fab-4158-b1e4-55a90514efe2 - status: 200 OK - code: 200 - duration: 95.89432ms - - 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/80c85af0-da43-4fc3-bb9b-7089afdc8289/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:57:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a45eb237-a340-44ed-8307-397f19f184b2 - status: 200 OK - code: 200 - duration: 121.586594ms - - 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/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 938 - uncompressed: false - body: '{"private_nics": [{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:58 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5bfda61a-046e-416a-ba58-8968da0cf02e - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 113.658796ms - - 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: - 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=855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1077 - uncompressed: false - 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: - - "1077" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f892c517-bb5d-4727-819c-919c7d806830 - status: 200 OK - code: 200 - duration: 25.677276ms - - 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: - 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=bfa71825-f835-4642-a841-3fca02d9f73e&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2ebcb336-e90d-486d-b577-5e9bb8c8cf26 - status: 200 OK - code: 200 - duration: 53.770081ms - - 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/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 938 - uncompressed: false - body: '{"private_nics": [{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:59 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b272c1d5-0e28-4540-ae9f-975536ba7f16 - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 116.241737ms - - id: 170 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c902fdb9-2b14-41b6-8205-47683e8628ab - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 426 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 95ee55e8-fdc5-40e4-840e-df022bde184a - status: 200 OK - code: 200 - duration: 33.969056ms - - id: 171 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f3c55b96-528f-49af-95f1-bafdf4e557a4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1098 - uncompressed: false - 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: - - "1098" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 17ff5d3f-2d91-4377-b945-4e6ef1761707 - status: 200 OK - code: 200 - duration: 25.063679ms - - 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/vpc/v2/regions/fr-par/private-networks/55c55c2c-e481-4d0c-9bca-132a1b4215ef - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1094 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b1ea7390-cdaf-4e7f-a5bb-68dcd2dd8d91 - status: 200 OK - code: 200 - duration: 25.151934ms - - id: 173 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2816 - 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": "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: - - "2816" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4b035a18-abf0-4a46-8e5d-8b8d13534143 - status: 200 OK - code: 200 - duration: 135.393369ms - - id: 174 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - 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": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8d726b58-2516-4de6-8d8b-969fb1f4209e - status: 404 Not Found - code: 404 - duration: 32.197181ms - - id: 175 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 053a4875-fd23-4ed1-8ecc-c8594e60e684 - status: 200 OK - code: 200 - duration: 104.302066ms - - id: 176 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/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:57:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b5f35890-d5e8-4a53-bc8e-c28ab1c3124c - status: 200 OK - code: 200 - duration: 99.399176ms - - id: 177 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 938 - uncompressed: false - body: '{"private_nics": [{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:59 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dd465ea2-e09d-40d7-bde2-a6e09bcfc92d - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 108.446137ms - - id: 178 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1077 - uncompressed: false - 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: - - "1077" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8d82894c-8317-44bb-ae4c-f6adea4eb76d - status: 200 OK - code: 200 - duration: 30.640059ms - - id: 179 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=bfa71825-f835-4642-a841-3fca02d9f73e&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ae9f0e27-e379-4f26-97be-050383d43429 - status: 200 OK - code: 200 - duration: 25.146905ms - - id: 180 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c902fdb9-2b14-41b6-8205-47683e8628ab - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 426 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2acc4cc1-69e0-467f-8be1-3650096ee34c - status: 200 OK - code: 200 - duration: 266.047595ms - - id: 181 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/55c55c2c-e481-4d0c-9bca-132a1b4215ef - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1094 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f33dbe6b-a3a2-4bd1-aa38-6c476f5e095f - status: 200 OK - code: 200 - duration: 23.142787ms - - id: 182 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f3c55b96-528f-49af-95f1-bafdf4e557a4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1098 - uncompressed: false - 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: - - "1098" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3a87dcae-1fd0-4926-b3fa-3ae7afb00794 - status: 200 OK - code: 200 - duration: 33.054334ms - - id: 183 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2902 - 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": "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: - - "2902" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 817518e3-b775-4f13-ab84-829df81f9629 - status: 200 OK - code: 200 - duration: 383.951832ms - - id: 184 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - 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": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bc2439e9-0fa6-42eb-9944-ae6074fac1b4 - status: 404 Not Found - code: 404 - duration: 30.31421ms - - id: 185 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6ec6b36e-fceb-4ac3-bc0a-a40104fbca71 - status: 200 OK - code: 200 - duration: 78.359003ms - - id: 186 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/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:58:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c3513870-b771-429d-839c-b4b3d9fb56a2 - status: 200 OK - code: 200 - duration: 97.820423ms - - id: 187 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 938 - uncompressed: false - body: '{"private_nics": [{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:00 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 967d975c-5ea3-4400-8fef-aedbd7e75842 - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 96.505864ms - - id: 188 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1077 - uncompressed: false - 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: - - "1077" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b35bf394-ff7b-4320-b89c-29a38cdd9c73 - status: 200 OK - code: 200 - duration: 24.245018ms - - id: 189 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=bfa71825-f835-4642-a841-3fca02d9f73e&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1076 - uncompressed: false - 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: - - "1076" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9a7d3d26-ab62-4083-80df-4e64b4886b1c - status: 200 OK - code: 200 - duration: 26.042059ms - - id: 190 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2816 - 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": "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: - - "2816" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7e69baf2-1317-44e0-8500-55a26c63132f - status: 200 OK - code: 200 - duration: 162.032245ms - - id: 191 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 938 - uncompressed: false - body: '{"private_nics": [{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:01 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1af53d4b-a1f6-43e8-9dff-5691b54cc498 - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 132.013117ms - - id: 192 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2816 - 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": "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: - - "2816" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9fbfae33-410e-4232-a3e2-29a5f66408ea - status: 200 OK - code: 200 - duration: 145.115433ms - - id: 193 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 48c86362-dbd4-489b-b2a7-5d7e4be54aff - status: 200 OK - code: 200 - duration: 112.957415ms - - id: 194 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1 - 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:58:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4e0e6a74-700d-4632-9762-593a1947d24f - status: 204 No Content - code: 204 - duration: 438.347033ms - - id: 195 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/855a4fa3-b51c-4ee1-87c2-c3ea27cfd5d1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 148 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d0d308d9-6065-4859-bf45-675c972dd219 - status: 404 Not Found - code: 404 - duration: 115.74566ms - - id: 196 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2356 - 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": "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: - - "2356" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0878e90e-6a91-4eef-95f5-08e95515d146 - status: 200 OK - code: 200 - duration: 140.024853ms - - id: 197 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/bfa71825-f835-4642-a841-3fca02d9f73e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a59d4e3e-2600-4e67-92dc-84e17748b53a - status: 200 OK - code: 200 - duration: 90.521933ms - - id: 198 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/bfa71825-f835-4642-a841-3fca02d9f73e - 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:58:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4158c9bb-36e4-4721-a2ac-9e7b31b7e30b - status: 204 No Content - code: 204 - duration: 446.721596ms - - id: 199 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/private_nics/bfa71825-f835-4642-a841-3fca02d9f73e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 148 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 435c574f-fe3a-45a8-b6cb-c4c5ad21ff64 - status: 404 Not Found - code: 404 - duration: 118.731495ms - - id: 200 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1898 - 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": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' - headers: - Content-Length: - - "1898" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 95693ec6-e4a5-4d7c-9b80-a660eaae8b90 - status: 200 OK - code: 200 - duration: 152.781342ms - - id: 201 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1944 - 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": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null}}' - headers: - Content-Length: - - "1944" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6e96d05c-8488-4d0b-840c-e5341cda150f - status: 200 OK - code: 200 - duration: 135.883967ms - - id: 202 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - 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": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 17d68986-2040-4fc0-a2fa-12a747ad3d9c - status: 404 Not Found - code: 404 - duration: 33.124807ms - - id: 203 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 296f948f-b023-4966-8329-331c444c2af9 - status: 200 OK - code: 200 - duration: 81.890929ms - - id: 204 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/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:58:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 05aec47c-3a50-4fb1-a029-aecb634fc08f - status: 200 OK - code: 200 - duration: 88.094061ms - - id: 205 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/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:58:03 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5b001c3a-b197-4f27-8bb4-47c556e3f891 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 93.361323ms - - id: 206 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 1984 - 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": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' - headers: - Content-Length: - - "1984" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0a7360b1-bd5c-4edc-88c8-0fa655131927 - status: 200 OK - code: 200 - duration: 153.968413ms - - id: 207 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c902fdb9-2b14-41b6-8205-47683e8628ab - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 426 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 74c363f2-e594-4d75-bf01-ad3d74955e3d - status: 200 OK - code: 200 - duration: 29.841546ms - - id: 208 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f3c55b96-528f-49af-95f1-bafdf4e557a4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1098 - uncompressed: false - 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: - - "1098" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d56626ce-dd78-490b-8fd7-2b048186e605 - status: 200 OK - code: 200 - duration: 26.752307ms - - id: 209 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/55c55c2c-e481-4d0c-9bca-132a1b4215ef - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1094 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2673b6eb-2050-4676-b860-f98ae5cb373b - status: 200 OK - code: 200 - duration: 26.692937ms - - id: 210 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1984 - 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": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' - headers: - Content-Length: - - "1984" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 735955c1-46e6-4337-a8a2-c9140c652424 - status: 200 OK - code: 200 - duration: 143.824139ms - - id: 211 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - 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": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d44ed799-91a4-4cff-93cd-ef8e32caad16 - status: 404 Not Found - code: 404 - duration: 25.906235ms - - id: 212 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b54524f3-6839-4a43-9e3c-e66e757601a2 - status: 200 OK - code: 200 - duration: 82.092285ms - - id: 213 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/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:58:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a38bfa7c-c3c2-4bd5-9417-ab663272895e - status: 200 OK - code: 200 - duration: 101.521656ms - - id: 214 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289/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:58:04 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1988280d-6c9a-4a9f-b9ff-d1145e485b46 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 101.073088ms - - id: 215 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1984 - 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": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "admin_password_encryption_ssh_key_id": null, "admin_password_encrypted_value": null}}' - headers: - Content-Length: - - "1984" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 17b9e6d0-4d24-4ff1-8bcb-cd0dfc108a14 - status: 200 OK - code: 200 - duration: 140.432786ms - - id: 216 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1898 - 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": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false}}' - headers: - Content-Length: - - "1898" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0565afaa-e405-4c0b-a4fa-3ec1fba2f444 - status: 200 OK - code: 200 - duration: 151.177172ms - - id: 217 - 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/80c85af0-da43-4fc3-bb9b-7089afdc8289/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:05 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0e07e64e-56ec-4a06-b42e-076bc773780f - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 93552c76-4e05-40ed-952b-de344b656d8e - status: 202 Accepted - code: 202 - duration: 282.649078ms - - id: 218 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 1861 - 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": "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: - - "1861" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4e03d6e0-b5e4-404b-8ee1-eea27bfbc3f8 - status: 200 OK - code: 200 - duration: 160.469252ms - - id: 219 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/55c55c2c-e481-4d0c-9bca-132a1b4215ef - 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:58:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 18aee5f0-9f7d-45df-9318-882f269e258c - status: 204 No Content - code: 204 - duration: 1.178135829s - - id: 220 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f3c55b96-528f-49af-95f1-bafdf4e557a4 - 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:58:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 91fca9e7-e7ef-4317-9e27-8ae344b6e066 - status: 204 No Content - code: 204 - duration: 1.178060449s - - 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/vpc/v2/regions/fr-par/vpcs/c902fdb9-2b14-41b6-8205-47683e8628ab - 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:58:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b0c961f1-465e-4aa7-a4e1-daff09ad6f3e - status: 204 No Content - code: 204 - duration: 193.364499ms - - id: 222 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80c85af0-da43-4fc3-bb9b-7089afdc8289 - 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": "80c85af0-da43-4fc3-bb9b-7089afdc8289"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7250b6cf-273b-4d2a-b206-9bcf65a2aa11 - status: 404 Not Found - code: 404 - duration: 52.299863ms - - 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/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - 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": "2d0309e3-1094-4d29-b4b6-d5aac84ba4b5"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e0ce7f1c-6747-46b4-84c3-1a5ff9047528 - status: 404 Not Found - code: 404 - duration: 27.986647ms - - id: 224 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - edf72887-0e96-49c7-a463-33db2b6f3f33 - status: 200 OK - code: 200 - duration: 102.290335ms - - id: 225 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2d0309e3-1094-4d29-b4b6-d5aac84ba4b5 - 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:58:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 60d112d3-b2ad-4d28-a7ff-1b3fcaa8ebd0 - status: 204 No Content - code: 204 - duration: 156.595869ms - - id: 226 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 143 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "80c85af0-da43-4fc3-bb9b-7089afdc8289"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:58:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d1703bed-188f-4dc6-a4a3-79165b21740b - status: 404 Not Found - code: 404 - duration: 62.562858ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 124 + host: api.scaleway.com + body: "{\"name\":\"TestAccServer_PrivateNetwork\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"enable_routing\":false}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 426 + body: "{\"id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"name\":\"TestAccServer_PrivateNetwork\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:38.387796Z\", \"updated_at\":\"2025-10-30T15:43:38.387796Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5c9426e7-c68c-48c7-b035-0df99e86137c + status: 200 OK + code: 200 + duration: 143.459245ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/8a03ce15-7bee-4c1c-9d2e-8e561ccf299e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 426 + body: "{\"id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"name\":\"TestAccServer_PrivateNetwork\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:38.387796Z\", \"updated_at\":\"2025-10-30T15:43:38.387796Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 91bfcab1-3bcd-4f29-94d1-3c0eaccae390 + status: 200 OK + code: 200 + duration: 28.840502ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 202 + host: api.scaleway.com + body: "{\"name\":\"private_network_instance\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"subnets\":null,\"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\",\"default_route_propagation_enabled\":false}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1094 + body: "{\"id\":\"e419c733-1308-400c-bfd8-3305ddca182f\", \"name\":\"private_network_instance\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:38.491715Z\", \"updated_at\":\"2025-10-30T15:43:38.491715Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"7bd4ab9b-9cfc-4912-b639-0553d0038497\", \"created_at\":\"2025-10-30T15:43:38.491715Z\", \"updated_at\":\"2025-10-30T15:43:38.491715Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"e419c733-1308-400c-bfd8-3305ddca182f\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}, {\"id\":\"6a7fd483-8762-4ebe-87f9-5beb6e18a279\", \"created_at\":\"2025-10-30T15:43:38.491715Z\", \"updated_at\":\"2025-10-30T15:43:38.491715Z\", \"subnet\":\"fd5f:519c:6d46:146d::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"e419c733-1308-400c-bfd8-3305ddca182f\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}], \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1094" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e5db2af4-e4b0-494d-9424-e383beee3120 + status: 200 OK + code: 200 + duration: 740.879287ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/e419c733-1308-400c-bfd8-3305ddca182f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1094 + body: "{\"id\":\"e419c733-1308-400c-bfd8-3305ddca182f\", \"name\":\"private_network_instance\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:38.491715Z\", \"updated_at\":\"2025-10-30T15:43:38.491715Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"7bd4ab9b-9cfc-4912-b639-0553d0038497\", \"created_at\":\"2025-10-30T15:43:38.491715Z\", \"updated_at\":\"2025-10-30T15:43:38.491715Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"e419c733-1308-400c-bfd8-3305ddca182f\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}, {\"id\":\"6a7fd483-8762-4ebe-87f9-5beb6e18a279\", \"created_at\":\"2025-10-30T15:43:38.491715Z\", \"updated_at\":\"2025-10-30T15:43:38.491715Z\", \"subnet\":\"fd5f:519c:6d46:146d::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"e419c733-1308-400c-bfd8-3305ddca182f\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}], \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1094" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e667ba8b-20b8-4c3f-adc0-98aa3236bed2 + status: 200 OK + code: 200 + duration: 33.953554ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 40275 + 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: + - "40275" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:39 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 04ac2ff2-31be-4fc3-8c95-105c70ce71a0 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 59.533438ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14060 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:39 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7bf8c43a-4161-4c81-817a-4e9449093673 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 66.973766ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1266 + 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: + - "1266" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d15734ec-b998-4624-acf5-04176ec5b00f + status: 200 OK + code: 200 + duration: 43.947422ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 238 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-confident-herschel\",\"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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1746 + body: "{\"server\": {\"id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"name\": \"tf-srv-confident-herschel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-confident-herschel\", \"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\": \"775db2e7-f97c-4afa-9e49-fa6764bc9f52\", \"state\": \"available\", \"zone\": \"fr-par-2\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:8f:0d:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:40.030482+00:00\", \"modification_date\": \"2025-10-30T15:43:40.030482+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: + - "1746" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:40 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6f90699a-8de7-4f62-be09-fb66634aab9d + status: 201 Created + code: 201 + duration: 1.253297766s +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1746 + body: "{\"server\": {\"id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"name\": \"tf-srv-confident-herschel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-confident-herschel\", \"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\": \"775db2e7-f97c-4afa-9e49-fa6764bc9f52\", \"state\": \"available\", \"zone\": \"fr-par-2\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:8f:0d:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:40.030482+00:00\", \"modification_date\": \"2025-10-30T15:43:40.030482+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: + - "1746" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - de464eef-d3da-4d71-a525-3adc68fc2c77 + status: 200 OK + code: 200 + duration: 130.599442ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1746 + body: "{\"server\": {\"id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"name\": \"tf-srv-confident-herschel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-confident-herschel\", \"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\": \"775db2e7-f97c-4afa-9e49-fa6764bc9f52\", \"state\": \"available\", \"zone\": \"fr-par-2\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:8f:0d:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:40.030482+00:00\", \"modification_date\": \"2025-10-30T15:43:40.030482+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: + - "1746" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4c37b5fb-e186-4e96-9748-f6a43e42c47b + status: 200 OK + code: 200 + duration: 149.449763ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/775db2e7-f97c-4afa-9e49-fa6764bc9f52 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"775db2e7-f97c-4afa-9e49-fa6764bc9f52\", \"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-30T15:43:40.164526Z\", \"updated_at\":\"2025-10-30T15:43:40.164526Z\", \"references\":[{\"id\":\"65d30e9c-3725-4d5f-9e72-22addb3da609\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"created_at\":\"2025-10-30T15:43:40.164526Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b82380ab-f452-4a93-8c67-ea5a9b3ea8c8 + status: 200 OK + code: 200 + duration: 88.998694ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"af9366d8-804e-464d-b52e-acbde362c4f6\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/action\", \"href_result\": \"/servers/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"started_at\": \"2025-10-30T15:43:41.486973+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-2\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:41 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/af9366d8-804e-464d-b52e-acbde362c4f6 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cdede911-022b-41fe-a246-83346db6b4c8 + status: 202 Accepted + code: 202 + duration: 502.559465ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1768 + body: "{\"server\": {\"id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"name\": \"tf-srv-confident-herschel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-confident-herschel\", \"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\": \"775db2e7-f97c-4afa-9e49-fa6764bc9f52\", \"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:8f:0d:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:40.030482+00:00\", \"modification_date\": \"2025-10-30T15:43:41.068880+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: + - "1768" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 18b572d3-b446-4b5f-867c-6fe7d170c0f3 + status: 200 OK + code: 200 + duration: 136.841362ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1901 + body: "{\"server\": {\"id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"name\": \"tf-srv-confident-herschel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-confident-herschel\", \"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\": \"775db2e7-f97c-4afa-9e49-fa6764bc9f52\", \"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:8f:0d:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:40.030482+00:00\", \"modification_date\": \"2025-10-30T15:43:43.189015+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\": \"7\", \"hypervisor_id\": \"401\", \"node_id\": \"56\"}, \"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: + - "1901" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fbf790f4-752b-49f9-95f4-cd6ccc42cd7c + status: 200 OK + code: 200 + duration: 165.531583ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/e419c733-1308-400c-bfd8-3305ddca182f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1094 + body: "{\"id\":\"e419c733-1308-400c-bfd8-3305ddca182f\", \"name\":\"private_network_instance\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:38.491715Z\", \"updated_at\":\"2025-10-30T15:43:38.491715Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"7bd4ab9b-9cfc-4912-b639-0553d0038497\", \"created_at\":\"2025-10-30T15:43:38.491715Z\", \"updated_at\":\"2025-10-30T15:43:38.491715Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"e419c733-1308-400c-bfd8-3305ddca182f\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}, {\"id\":\"6a7fd483-8762-4ebe-87f9-5beb6e18a279\", \"created_at\":\"2025-10-30T15:43:38.491715Z\", \"updated_at\":\"2025-10-30T15:43:38.491715Z\", \"subnet\":\"fd5f:519c:6d46:146d::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"e419c733-1308-400c-bfd8-3305ddca182f\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}], \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1094" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9fc8d9d0-58d1-4993-859f-3377ab72c947 + status: 200 OK + code: 200 + duration: 37.692208ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1901 + body: "{\"server\": {\"id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"name\": \"tf-srv-confident-herschel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-confident-herschel\", \"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\": \"775db2e7-f97c-4afa-9e49-fa6764bc9f52\", \"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:8f:0d:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:40.030482+00:00\", \"modification_date\": \"2025-10-30T15:43:43.189015+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\": \"7\", \"hypervisor_id\": \"401\", \"node_id\": \"56\"}, \"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: + - "1901" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3c6a579e-de9a-49ae-a0a8-14a16f81109c + status: 200 OK + code: 200 + duration: 161.497566ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 61 + host: api.scaleway.com + body: "{\"private_network_id\":\"e419c733-1308-400c-bfd8-3305ddca182f\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:43:47.333858+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cd908b86-6de8-42b7-b416-e39b2c9c1def + status: 201 Created + code: 201 + duration: 711.07673ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:43:47.333858+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c787e582-8775-4766-8c8b-ec4555fc446d + status: 200 OK + code: 200 + duration: 104.375089ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:43:47.333858+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3cecd862-4c25-4ef1-9480-c22ef8d71d92 + status: 200 OK + code: 200 + duration: 106.639318ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:43:47.333858+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fc8f588c-fb9e-42b4-a9a5-3ac21d372993 + status: 200 OK + code: 200 + duration: 101.14456ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:43:47.333858+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 334c5e69-755f-47a9-be66-75fa28e673b8 + status: 200 OK + code: 200 + duration: 104.405539ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:43:47.333858+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a54c090a-de63-4be3-ad45-99c29bce4bfb + status: 200 OK + code: 200 + duration: 116.670819ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:43:47.333858+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d8872af0-ab41-4a02-a499-5cb11a8f5166 + status: 200 OK + code: 200 + duration: 125.453086ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:43:47.333858+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4145eb41-69e3-4db5-9d87-688235c7f2dd + status: 200 OK + code: 200 + duration: 93.463374ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:43:47.333858+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c0b1032f-1a95-47df-9361-4268b0e3cc55 + status: 200 OK + code: 200 + duration: 102.738705ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:43:47.333858+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5b3ab46c-c77e-4dc2-82f5-7fe5fcb73a84 + status: 200 OK + code: 200 + duration: 90.950863ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:43:47.333858+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d9b64575-bb76-4fc1-ad34-7f757e9b778c + status: 200 OK + code: 200 + duration: 104.46713ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:43:47.333858+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f9064108-9e45-40f7-8992-eedab286339d + status: 200 OK + code: 200 + duration: 84.99464ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:43:47.333858+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3ca6f60d-0807-498a-b222-720823715cb9 + status: 200 OK + code: 200 + duration: 102.687994ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:43:47.333858+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 651b9920-e342-4d60-bc86-402bd87d3d1e + status: 200 OK + code: 200 + duration: 105.742525ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:43:47.333858+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ca21fb8e-fe08-45ad-82c1-6366527e748d + status: 200 OK + code: 200 + duration: 96.237805ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:43:47.333858+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:44:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3b2ebde3-523a-4e9a-8885-a04d476a5095 + status: 200 OK + code: 200 + duration: 92.679851ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:43:47.333858+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 61c73239-1a14-423c-ad27-339da659e91e + status: 200 OK + code: 200 + duration: 104.494396ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:43:47.333858+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8bf1eb73-3776-4015-a2c3-7b5f7156aa94 + status: 200 OK + code: 200 + duration: 116.137622ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:43:47.333858+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a0faa427-5e74-4e25-be90-6e6a1042e488 + status: 200 OK + code: 200 + duration: 111.859294ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:43:47.333858+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2062c007-2db3-4d1f-9713-1379fdd5c3fe + status: 200 OK + code: 200 + duration: 120.304309ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:43:47.333858+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d3f9ae9f-2895-49f6-a467-89c3d1db526e + status: 200 OK + code: 200 + duration: 116.887409ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:43:47.333858+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7df476ef-51e1-408d-87e2-af3204204802 + status: 200 OK + code: 200 + duration: 120.020769ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:45:30.452687+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - acbc53c2-d288-48e3-a572-3303eefa30ce + status: 200 OK + code: 200 + duration: 301.011654ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:45:30.452687+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 14a268fb-9de5-4875-9fba-eb209ad4fe34 + status: 200 OK + code: 200 + duration: 270.124287ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2359 + body: "{\"server\": {\"id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"name\": \"tf-srv-confident-herschel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-confident-herschel\", \"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\": \"775db2e7-f97c-4afa-9e49-fa6764bc9f52\", \"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:8f:0d:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:40.030482+00:00\", \"modification_date\": \"2025-10-30T15:43:43.189015+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\": \"7\", \"hypervisor_id\": \"401\", \"node_id\": \"56\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:45:30.452687+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}], \"zone\": \"fr-par-2\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2359" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a2013649-4bb8-449d-9312-24b527adacfc + status: 200 OK + code: 200 + duration: 270.740123ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/775db2e7-f97c-4afa-9e49-fa6764bc9f52 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"775db2e7-f97c-4afa-9e49-fa6764bc9f52\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c41baf2a-93b6-4d96-bf13-1dc53af7445a + status: 404 Not Found + code: 404 + duration: 31.562935ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/775db2e7-f97c-4afa-9e49-fa6764bc9f52 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"775db2e7-f97c-4afa-9e49-fa6764bc9f52\", \"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-30T15:43:40.164526Z\", \"updated_at\":\"2025-10-30T15:43:40.164526Z\", \"references\":[{\"id\":\"65d30e9c-3725-4d5f-9e72-22addb3da609\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"created_at\":\"2025-10-30T15:43:40.164526Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4d0e8a3a-9f43-486f-8287-730af3ccaef8 + status: 200 OK + code: 200 + duration: 238.493275ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ca3519bb-86e4-424e-8b8b-3c5cd5518acc + status: 200 OK + code: 200 + duration: 99.406846ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:45:30.452687+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:36 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 67bda8a6-c5a3-4317-adc8-259270e16f9a + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 218.18214ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 0f462688-4637-4f6d-9cbe-de34170a54a3 + 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=0f462688-4637-4f6d-9cbe-de34170a54a3&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1080 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"139d569e-e30c-44a3-8f8b-f60106819439\", \"address\":\"fd5f:519c:6d46:146d:f477:a06f:9dfe:2176/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:43:47.543854Z\", \"updated_at\":\"2025-10-30T15:43:47.543854Z\", \"source\":{\"subnet_id\":\"6a7fd483-8762-4ebe-87f9-5beb6e18a279\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"mac_address\":\"02:00:00:22:C3:44\", \"name\":\"tf-srv-confident-herschel\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"address\":\"172.18.24.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:43:47.422791Z\", \"updated_at\":\"2025-10-30T15:43:47.422791Z\", \"source\":{\"subnet_id\":\"7bd4ab9b-9cfc-4912-b639-0553d0038497\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"mac_address\":\"02:00:00:22:C3:44\", \"name\":\"tf-srv-confident-herschel\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1080" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 98a50c6f-c803-49a9-a72c-9cee2183040a + status: 200 OK + code: 200 + duration: 35.153391ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:45:30.452687+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:36 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 689c048d-420c-4ece-8828-069f0bf02292 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 165.86636ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/8a03ce15-7bee-4c1c-9d2e-8e561ccf299e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 426 + body: "{\"id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"name\":\"TestAccServer_PrivateNetwork\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:38.387796Z\", \"updated_at\":\"2025-10-30T15:43:38.387796Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 76b27ef8-e449-4c56-b727-ff9cd1c248d4 + status: 200 OK + code: 200 + duration: 93.043448ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/e419c733-1308-400c-bfd8-3305ddca182f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1094 + body: "{\"id\":\"e419c733-1308-400c-bfd8-3305ddca182f\", \"name\":\"private_network_instance\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:38.491715Z\", \"updated_at\":\"2025-10-30T15:43:38.491715Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"7bd4ab9b-9cfc-4912-b639-0553d0038497\", \"created_at\":\"2025-10-30T15:43:38.491715Z\", \"updated_at\":\"2025-10-30T15:43:38.491715Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"e419c733-1308-400c-bfd8-3305ddca182f\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}, {\"id\":\"6a7fd483-8762-4ebe-87f9-5beb6e18a279\", \"created_at\":\"2025-10-30T15:43:38.491715Z\", \"updated_at\":\"2025-10-30T15:43:38.491715Z\", \"subnet\":\"fd5f:519c:6d46:146d::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"e419c733-1308-400c-bfd8-3305ddca182f\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}], \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1094" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dc2e2c82-5287-410c-81d4-8d250564cdd9 + status: 200 OK + code: 200 + duration: 27.099361ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2359 + body: "{\"server\": {\"id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"name\": \"tf-srv-confident-herschel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-confident-herschel\", \"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\": \"775db2e7-f97c-4afa-9e49-fa6764bc9f52\", \"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:8f:0d:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:40.030482+00:00\", \"modification_date\": \"2025-10-30T15:43:43.189015+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\": \"7\", \"hypervisor_id\": \"401\", \"node_id\": \"56\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:45:30.452687+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}], \"zone\": \"fr-par-2\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2359" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1db7c70d-bc12-4352-87c6-ef24f7d37b3b + status: 200 OK + code: 200 + duration: 214.046982ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/775db2e7-f97c-4afa-9e49-fa6764bc9f52 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"775db2e7-f97c-4afa-9e49-fa6764bc9f52\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cd4b4b6f-64d3-49bc-8469-82c1be3704b8 + status: 404 Not Found + code: 404 + duration: 33.797978ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/775db2e7-f97c-4afa-9e49-fa6764bc9f52 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"775db2e7-f97c-4afa-9e49-fa6764bc9f52\", \"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-30T15:43:40.164526Z\", \"updated_at\":\"2025-10-30T15:43:40.164526Z\", \"references\":[{\"id\":\"65d30e9c-3725-4d5f-9e72-22addb3da609\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"created_at\":\"2025-10-30T15:43:40.164526Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7be85484-0b9a-4c44-b281-1d85da0783d6 + status: 200 OK + code: 200 + duration: 232.39763ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 09651f67-8c6b-4fe5-8cce-b5714a2bc0da + status: 200 OK + code: 200 + duration: 95.64521ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:45:30.452687+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:37 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2ffbf697-c439-44e5-816f-bb63e9b4e44f + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 177.604592ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 0f462688-4637-4f6d-9cbe-de34170a54a3 + 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=0f462688-4637-4f6d-9cbe-de34170a54a3&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1080 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"139d569e-e30c-44a3-8f8b-f60106819439\", \"address\":\"fd5f:519c:6d46:146d:f477:a06f:9dfe:2176/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:43:47.543854Z\", \"updated_at\":\"2025-10-30T15:43:47.543854Z\", \"source\":{\"subnet_id\":\"6a7fd483-8762-4ebe-87f9-5beb6e18a279\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"mac_address\":\"02:00:00:22:C3:44\", \"name\":\"tf-srv-confident-herschel\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"address\":\"172.18.24.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:43:47.422791Z\", \"updated_at\":\"2025-10-30T15:43:47.422791Z\", \"source\":{\"subnet_id\":\"7bd4ab9b-9cfc-4912-b639-0553d0038497\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"mac_address\":\"02:00:00:22:C3:44\", \"name\":\"tf-srv-confident-herschel\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1080" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 29774d9b-7432-4f36-8efa-47b83dba1b75 + status: 200 OK + code: 200 + duration: 30.559312ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/e419c733-1308-400c-bfd8-3305ddca182f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1094 + body: "{\"id\":\"e419c733-1308-400c-bfd8-3305ddca182f\", \"name\":\"private_network_instance\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:38.491715Z\", \"updated_at\":\"2025-10-30T15:43:38.491715Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"7bd4ab9b-9cfc-4912-b639-0553d0038497\", \"created_at\":\"2025-10-30T15:43:38.491715Z\", \"updated_at\":\"2025-10-30T15:43:38.491715Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"e419c733-1308-400c-bfd8-3305ddca182f\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}, {\"id\":\"6a7fd483-8762-4ebe-87f9-5beb6e18a279\", \"created_at\":\"2025-10-30T15:43:38.491715Z\", \"updated_at\":\"2025-10-30T15:43:38.491715Z\", \"subnet\":\"fd5f:519c:6d46:146d::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"e419c733-1308-400c-bfd8-3305ddca182f\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}], \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1094" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0f4ee261-c21e-4a5f-8846-365826e1635c + status: 200 OK + code: 200 + duration: 134.903521ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/8a03ce15-7bee-4c1c-9d2e-8e561ccf299e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 426 + body: "{\"id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"name\":\"TestAccServer_PrivateNetwork\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:38.387796Z\", \"updated_at\":\"2025-10-30T15:43:38.387796Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 871c24d0-ee92-4092-b26e-d0897aaf6771 + status: 200 OK + code: 200 + duration: 135.378303ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2359 + body: "{\"server\": {\"id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"name\": \"tf-srv-confident-herschel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-confident-herschel\", \"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\": \"775db2e7-f97c-4afa-9e49-fa6764bc9f52\", \"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:8f:0d:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:40.030482+00:00\", \"modification_date\": \"2025-10-30T15:43:43.189015+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\": \"7\", \"hypervisor_id\": \"401\", \"node_id\": \"56\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:45:30.452687+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}], \"zone\": \"fr-par-2\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2359" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0541f308-5127-411a-8888-a9b63227da2d + status: 200 OK + code: 200 + duration: 236.047868ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/775db2e7-f97c-4afa-9e49-fa6764bc9f52 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"775db2e7-f97c-4afa-9e49-fa6764bc9f52\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9f632c95-60ab-483e-8c38-7141917c7ec4 + status: 404 Not Found + code: 404 + duration: 36.542768ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/775db2e7-f97c-4afa-9e49-fa6764bc9f52 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"775db2e7-f97c-4afa-9e49-fa6764bc9f52\", \"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-30T15:43:40.164526Z\", \"updated_at\":\"2025-10-30T15:43:40.164526Z\", \"references\":[{\"id\":\"65d30e9c-3725-4d5f-9e72-22addb3da609\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"created_at\":\"2025-10-30T15:43:40.164526Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1e753fb0-a990-4edb-9b21-36442261559c + status: 200 OK + code: 200 + duration: 232.157809ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b6bbf71f-62ed-40e4-b189-4dc1e57f4f62 + status: 200 OK + code: 200 + duration: 269.461324ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:45:30.452687+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:38 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3455109d-7bf9-4d0c-a5c5-e78588bcc6f2 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 270.346776ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 0f462688-4637-4f6d-9cbe-de34170a54a3 + 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=0f462688-4637-4f6d-9cbe-de34170a54a3&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1080 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"139d569e-e30c-44a3-8f8b-f60106819439\", \"address\":\"fd5f:519c:6d46:146d:f477:a06f:9dfe:2176/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:43:47.543854Z\", \"updated_at\":\"2025-10-30T15:43:47.543854Z\", \"source\":{\"subnet_id\":\"6a7fd483-8762-4ebe-87f9-5beb6e18a279\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"mac_address\":\"02:00:00:22:C3:44\", \"name\":\"tf-srv-confident-herschel\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"address\":\"172.18.24.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:43:47.422791Z\", \"updated_at\":\"2025-10-30T15:43:47.422791Z\", \"source\":{\"subnet_id\":\"7bd4ab9b-9cfc-4912-b639-0553d0038497\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"mac_address\":\"02:00:00:22:C3:44\", \"name\":\"tf-srv-confident-herschel\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1080" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 782d9597-c3a6-40bd-b031-2acfce5a49f5 + status: 200 OK + code: 200 + duration: 26.88021ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:45:30.452687+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:39 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1830cce0-042d-4db3-b247-6561c397b08c + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 380.5618ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\", \"private_network_id\": \"e419c733-1308-400c-bfd8-3305ddca182f\", \"server_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"mac_address\": \"02:00:00:22:c3:44\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:43:47.075079+00:00\", \"modification_date\": \"2025-10-30T15:45:30.452687+00:00\", \"zone\": \"fr-par-2\", \"tags\": [], \"ipam_ip_ids\": [\"37c1dba1-6f81-42ef-a4ff-dad0da206cac\", \"139d569e-e30c-44a3-8f8b-f60106819439\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 232a9084-7d7f-4832-ab2d-6a6801d36806 + status: 200 OK + code: 200 + duration: 105.901551ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 80ee94e2-c44c-4bc3-bfa1-206fad99eb55 + status: 204 No Content + code: 204 + duration: 540.669107ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics/0f462688-4637-4f6d-9cbe-de34170a54a3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 148 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_private_nic\", \"resource_id\": \"0f462688-4637-4f6d-9cbe-de34170a54a3\"}" + headers: + Content-Length: + - "148" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1de2a223-622a-45dd-9e96-423d269c35d8 + status: 404 Not Found + code: 404 + duration: 115.467388ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:40 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 75c821d7-a2ae-40ad-992c-57ea8e78a762 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 207.874523ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1901 + body: "{\"server\": {\"id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"name\": \"tf-srv-confident-herschel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-confident-herschel\", \"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\": \"775db2e7-f97c-4afa-9e49-fa6764bc9f52\", \"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:8f:0d:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:40.030482+00:00\", \"modification_date\": \"2025-10-30T15:43:43.189015+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\": \"7\", \"hypervisor_id\": \"401\", \"node_id\": \"56\"}, \"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: + - "1901" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1539977e-e6d8-4765-929f-a814c300e363 + status: 200 OK + code: 200 + duration: 204.065056ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1901 + body: "{\"server\": {\"id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"name\": \"tf-srv-confident-herschel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-confident-herschel\", \"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\": \"775db2e7-f97c-4afa-9e49-fa6764bc9f52\", \"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:8f:0d:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:40.030482+00:00\", \"modification_date\": \"2025-10-30T15:43:43.189015+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\": \"7\", \"hypervisor_id\": \"401\", \"node_id\": \"56\"}, \"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: + - "1901" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1071d094-9235-4cfa-b4bf-a7fac43f5600 + status: 200 OK + code: 200 + duration: 203.565799ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"e81c1014-61fd-4a60-8c15-e73ff1dd83b3\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b/action\", \"href_result\": \"/servers/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"started_at\": \"2025-10-30T15:45:41.328693+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-2\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:41 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/e81c1014-61fd-4a60-8c15-e73ff1dd83b3 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8c0f9312-e567-4e7d-bbfd-a3eeb6d770c6 + status: 202 Accepted + code: 202 + duration: 313.666038ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1864 + body: "{\"server\": {\"id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\", \"name\": \"tf-srv-confident-herschel\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-confident-herschel\", \"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\": \"775db2e7-f97c-4afa-9e49-fa6764bc9f52\", \"state\": \"available\", \"zone\": \"fr-par-2\"}}, \"tags\": [], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"terminating\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:8f:0d:ef\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:43:40.030482+00:00\", \"modification_date\": \"2025-10-30T15:45:41.108174+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\": \"7\", \"hypervisor_id\": \"401\", \"node_id\": \"56\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-2\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1864" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 21f45ab8-3e54-4b2e-a52b-16d21693a385 + status: 200 OK + code: 200 + duration: 198.116406ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/1d37c338-c21d-4dfd-9634-fb1c0b4cc35b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"1d37c338-c21d-4dfd-9634-fb1c0b4cc35b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d0ffe27a-3ea7-4faf-8842-9a0f3179bd45 + status: 404 Not Found + code: 404 + duration: 76.644924ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/775db2e7-f97c-4afa-9e49-fa6764bc9f52 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"775db2e7-f97c-4afa-9e49-fa6764bc9f52\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fde50f44-eda8-4955-838d-632f8879dd39 + status: 404 Not Found + code: 404 + duration: 30.017185ms +- id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/775db2e7-f97c-4afa-9e49-fa6764bc9f52 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"775db2e7-f97c-4afa-9e49-fa6764bc9f52\", \"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-30T15:43:40.164526Z\", \"updated_at\":\"2025-10-30T15:45:42.569160Z\", \"references\":[], \"parent_snapshot_id\":\"0de1a1bd-e99d-4301-a523-7c426dc5fa18\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:45:42.569160Z\", \"zone\":\"fr-par-2\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 92cc3043-52c7-4ead-9b33-2ab71c4cf2e4 + status: 200 OK + code: 200 + duration: 111.005397ms +- id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/775db2e7-f97c-4afa-9e49-fa6764bc9f52 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8aa41c7a-b1c2-44c7-a27e-61e284ab321a + status: 204 No Content + code: 204 + duration: 160.025184ms +- id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 202 + host: api.scaleway.com + body: "{\"name\":\"private_network_instance\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"subnets\":null,\"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\",\"default_route_propagation_enabled\":false}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1094 + body: "{\"id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"name\":\"private_network_instance\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"507a0445-6c8a-485b-a1bc-9f46b11437fe\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"subnet\":\"172.17.108.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}, {\"id\":\"12e47a9c-0858-4c3c-879e-4ad4c633dff1\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"subnet\":\"fd5f:519c:6d46:cdb::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}], \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1094" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a53aacd9-4735-4aaf-bcd8-56d57d672259 + status: 200 OK + code: 200 + duration: 750.473918ms +- id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/31f84cb3-96ab-4190-95c6-7f04a9456778 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1094 + body: "{\"id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"name\":\"private_network_instance\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"507a0445-6c8a-485b-a1bc-9f46b11437fe\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"subnet\":\"172.17.108.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}, {\"id\":\"12e47a9c-0858-4c3c-879e-4ad4c633dff1\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"subnet\":\"fd5f:519c:6d46:cdb::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}], \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1094" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f1114f4b-51d7-46de-8423-c935a54d1e44 + status: 200 OK + code: 200 + duration: 116.888635ms +- id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/e419c733-1308-400c-bfd8-3305ddca182f + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9788a358-fcff-4800-80ca-5a36db99953b + status: 204 No Content + code: 204 + duration: 1.173440498s +- id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:48 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f8420d56-4156-4050-8232-6fac8e23882b + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 183.598891ms +- id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:48 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 483c413b-7e52-464c-906a-6a4530f9d5bc + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 108.20312ms +- id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dfb7b89a-4baf-4b7e-8523-cd5e0725b3eb + status: 200 OK + code: 200 + duration: 59.797126ms +- id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 235 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-pensive-vaughan\",\"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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1740 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:49.248007+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:50 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d564fa90-d4b6-45eb-8592-87ebb7f896d7 + status: 201 Created + code: 201 + duration: 1.643590904s +- id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1740 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:49.248007+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 845da0f4-5f70-44ce-a882-e87706002744 + status: 200 OK + code: 200 + duration: 140.589872ms +- id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1786 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:49.248007+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1786" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - be14c898-4b03-4a9f-b072-82aba099335b + status: 200 OK + code: 200 + duration: 158.298646ms +- id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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-30T15:45:49.393737Z\", \"updated_at\":\"2025-10-30T15:45:49.393737Z\", \"references\":[{\"id\":\"b212c03b-8585-4ce9-8b51-bec675ab74fb\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"6bf9f46c-fa08-45c4-8118-71938310077a\", \"created_at\":\"2025-10-30T15:45:49.393737Z\", \"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: + - Thu, 30 Oct 2025 15:45:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6f4ea391-ae9f-4fe5-bc05-c93309e347d5 + status: 200 OK + code: 200 + duration: 107.89891ms +- id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"ce3fcbc5-630e-44f7-960f-eb100180b6ba\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/6bf9f46c-fa08-45c4-8118-71938310077a/action\", \"href_result\": \"/servers/6bf9f46c-fa08-45c4-8118-71938310077a\", \"started_at\": \"2025-10-30T15:45:50.802420+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:50 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ce3fcbc5-630e-44f7-960f-eb100180b6ba + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fb3a4089-8150-477b-a0fb-a8a94067d984 + status: 202 Accepted + code: 202 + duration: 253.880217ms +- id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1808 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:50.603524+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: + - "1808" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7f890658-cf56-4c35-a358-79369f407abf + status: 200 OK + code: 200 + duration: 148.896646ms +- id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1897 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"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: + - "1897" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 508498ed-6f8d-489f-8e6a-3baa9a5b80e5 + status: 200 OK + code: 200 + duration: 153.105063ms +- id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/31f84cb3-96ab-4190-95c6-7f04a9456778 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1094 + body: "{\"id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"name\":\"private_network_instance\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"507a0445-6c8a-485b-a1bc-9f46b11437fe\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"subnet\":\"172.17.108.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}, {\"id\":\"12e47a9c-0858-4c3c-879e-4ad4c633dff1\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"subnet\":\"fd5f:519c:6d46:cdb::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}], \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1094" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0737ce98-f358-40de-9e2a-dd7d05cb1767 + status: 200 OK + code: 200 + duration: 29.296323ms +- id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1897 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"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: + - "1897" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bbb5291f-b0e9-4d42-bac6-cc35a9d64e7b + status: 200 OK + code: 200 + duration: 153.165858ms +- id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 61 + host: api.scaleway.com + body: "{\"private_network_id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:3b:62\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:45:56.353992+00:00\", \"modification_date\": \"2025-10-30T15:45:56.584075+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"28cf8122-df0a-418b-9a57-e84c86d946cf\", \"74361d0f-ee3f-42c2-a6d3-8d1435f3b3f1\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0ed8e866-4552-4056-b49e-cb7de6480e30 + status: 201 Created + code: 201 + duration: 627.376561ms +- id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics/6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:3b:62\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:45:56.353992+00:00\", \"modification_date\": \"2025-10-30T15:45:56.584075+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"28cf8122-df0a-418b-9a57-e84c86d946cf\", \"74361d0f-ee3f-42c2-a6d3-8d1435f3b3f1\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:45:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5ff96acb-54ee-4865-a1bb-f44ec2c51646 + status: 200 OK + code: 200 + duration: 112.76966ms +- id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics/6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:3b:62\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:45:56.353992+00:00\", \"modification_date\": \"2025-10-30T15:45:56.584075+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"28cf8122-df0a-418b-9a57-e84c86d946cf\", \"74361d0f-ee3f-42c2-a6d3-8d1435f3b3f1\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f9010f7a-e5a6-48a5-84fe-f3c798a65bf0 + status: 200 OK + code: 200 + duration: 111.543249ms +- id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics/6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:3b:62\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:45:56.353992+00:00\", \"modification_date\": \"2025-10-30T15:45:56.584075+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"28cf8122-df0a-418b-9a57-e84c86d946cf\", \"74361d0f-ee3f-42c2-a6d3-8d1435f3b3f1\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e5e5f0f7-fc5c-4138-90ef-caff8c1f9d94 + status: 200 OK + code: 200 + duration: 94.008342ms +- id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics/6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:3b:62\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:45:56.353992+00:00\", \"modification_date\": \"2025-10-30T15:45:56.584075+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"28cf8122-df0a-418b-9a57-e84c86d946cf\", \"74361d0f-ee3f-42c2-a6d3-8d1435f3b3f1\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 541d856f-50cd-45ec-86c7-c879b381d495 + status: 200 OK + code: 200 + duration: 106.923583ms +- id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics/6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:3b:62\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:45:56.353992+00:00\", \"modification_date\": \"2025-10-30T15:45:56.584075+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"28cf8122-df0a-418b-9a57-e84c86d946cf\", \"74361d0f-ee3f-42c2-a6d3-8d1435f3b3f1\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 232e0311-3e94-4191-9128-54b72ffba3d1 + status: 200 OK + code: 200 + duration: 82.941942ms +- id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics/6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:3b:62\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:45:56.353992+00:00\", \"modification_date\": \"2025-10-30T15:45:56.584075+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"28cf8122-df0a-418b-9a57-e84c86d946cf\", \"74361d0f-ee3f-42c2-a6d3-8d1435f3b3f1\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7c809bf4-2b23-4ec7-8065-bb7784231890 + status: 200 OK + code: 200 + duration: 91.789592ms +- id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics/6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:3b:62\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:45:56.353992+00:00\", \"modification_date\": \"2025-10-30T15:46:23.392465+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"28cf8122-df0a-418b-9a57-e84c86d946cf\", \"74361d0f-ee3f-42c2-a6d3-8d1435f3b3f1\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5306d9a6-a718-489d-9bb3-bd45c13c6a21 + status: 200 OK + code: 200 + duration: 95.102538ms +- id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics/6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:3b:62\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:45:56.353992+00:00\", \"modification_date\": \"2025-10-30T15:46:23.392465+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"28cf8122-df0a-418b-9a57-e84c86d946cf\", \"74361d0f-ee3f-42c2-a6d3-8d1435f3b3f1\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5ea21735-973f-4a8e-8fa3-28913380da17 + status: 200 OK + code: 200 + duration: 88.235203ms +- id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2355 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"node_id\": \"38\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:3b:62\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:45:56.353992+00:00\", \"modification_date\": \"2025-10-30T15:46:23.392465+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"28cf8122-df0a-418b-9a57-e84c86d946cf\", \"74361d0f-ee3f-42c2-a6d3-8d1435f3b3f1\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2355" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4f4960c4-b926-4adc-9fe5-66a519a2cd64 + status: 200 OK + code: 200 + duration: 137.038807ms +- id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 26c353f8-a7ff-4ede-97e3-b94f783c61fb + status: 404 Not Found + code: 404 + duration: 27.658312ms +- id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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-30T15:45:49.393737Z\", \"updated_at\":\"2025-10-30T15:45:49.393737Z\", \"references\":[{\"id\":\"b212c03b-8585-4ce9-8b51-bec675ab74fb\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"6bf9f46c-fa08-45c4-8118-71938310077a\", \"created_at\":\"2025-10-30T15:45:49.393737Z\", \"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: + - Thu, 30 Oct 2025 15:46:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a0043e1c-960e-4e57-827a-d2034650865f + status: 200 OK + code: 200 + duration: 78.205947ms +- id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ea790647-d359-4cd3-af98-b640ea52ad01 + status: 200 OK + code: 200 + duration: 95.346825ms +- id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:3b:62\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:45:56.353992+00:00\", \"modification_date\": \"2025-10-30T15:46:23.392465+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"28cf8122-df0a-418b-9a57-e84c86d946cf\", \"74361d0f-ee3f-42c2-a6d3-8d1435f3b3f1\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:28 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6c71b195-e8a4-4aba-94f8-b41df2860fa0 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 98.482059ms +- id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb + 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=6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1074 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"74361d0f-ee3f-42c2-a6d3-8d1435f3b3f1\", \"address\":\"fd5f:519c:6d46:cdb:9f25:453a:30be:3fd5/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:45:56.768242Z\", \"updated_at\":\"2025-10-30T15:45:56.768242Z\", \"source\":{\"subnet_id\":\"12e47a9c-0858-4c3c-879e-4ad4c633dff1\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"mac_address\":\"02:00:00:11:3B:62\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"28cf8122-df0a-418b-9a57-e84c86d946cf\", \"address\":\"172.17.108.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:45:56.658757Z\", \"updated_at\":\"2025-10-30T15:45:56.658757Z\", \"source\":{\"subnet_id\":\"507a0445-6c8a-485b-a1bc-9f46b11437fe\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"mac_address\":\"02:00:00:11:3B:62\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1074" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b86c6f5b-7b71-4ecc-a526-5b348f44b33d + status: 200 OK + code: 200 + duration: 31.729419ms +- id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:3b:62\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:45:56.353992+00:00\", \"modification_date\": \"2025-10-30T15:46:23.392465+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"28cf8122-df0a-418b-9a57-e84c86d946cf\", \"74361d0f-ee3f-42c2-a6d3-8d1435f3b3f1\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:28 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ebfa234e-098f-48d4-94f5-72357ac873c9 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 112.041708ms +- id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/8a03ce15-7bee-4c1c-9d2e-8e561ccf299e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 426 + body: "{\"id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"name\":\"TestAccServer_PrivateNetwork\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:38.387796Z\", \"updated_at\":\"2025-10-30T15:43:38.387796Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 74a04bb4-ee22-455a-9286-deba4d01ab0f + status: 200 OK + code: 200 + duration: 25.29591ms +- id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/31f84cb3-96ab-4190-95c6-7f04a9456778 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1094 + body: "{\"id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"name\":\"private_network_instance\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"507a0445-6c8a-485b-a1bc-9f46b11437fe\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"subnet\":\"172.17.108.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}, {\"id\":\"12e47a9c-0858-4c3c-879e-4ad4c633dff1\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"subnet\":\"fd5f:519c:6d46:cdb::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}], \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1094" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 753c062f-655e-47bf-b40d-2f173dc0ba94 + status: 200 OK + code: 200 + duration: 24.749924ms +- id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2355 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"node_id\": \"38\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:3b:62\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:45:56.353992+00:00\", \"modification_date\": \"2025-10-30T15:46:23.392465+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"28cf8122-df0a-418b-9a57-e84c86d946cf\", \"74361d0f-ee3f-42c2-a6d3-8d1435f3b3f1\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2355" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 74d23179-effb-4046-ae45-549b716c94ae + status: 200 OK + code: 200 + duration: 140.668947ms +- id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 71c129ad-67c9-4edf-93af-1f446e5c84b8 + status: 404 Not Found + code: 404 + duration: 27.864408ms +- id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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-30T15:45:49.393737Z\", \"updated_at\":\"2025-10-30T15:45:49.393737Z\", \"references\":[{\"id\":\"b212c03b-8585-4ce9-8b51-bec675ab74fb\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"6bf9f46c-fa08-45c4-8118-71938310077a\", \"created_at\":\"2025-10-30T15:45:49.393737Z\", \"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: + - Thu, 30 Oct 2025 15:46:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 100d404a-5868-4713-ad31-4c91b1d39b40 + status: 200 OK + code: 200 + duration: 76.510567ms +- id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6d0ab59f-46e0-44ab-a692-8d60c5a18712 + status: 200 OK + code: 200 + duration: 92.633124ms +- id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:3b:62\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:45:56.353992+00:00\", \"modification_date\": \"2025-10-30T15:46:23.392465+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"28cf8122-df0a-418b-9a57-e84c86d946cf\", \"74361d0f-ee3f-42c2-a6d3-8d1435f3b3f1\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:29 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6a9f2dc4-a6ac-4a2f-b046-0a570bb938bd + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 101.431673ms +- id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb + 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=6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1074 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"74361d0f-ee3f-42c2-a6d3-8d1435f3b3f1\", \"address\":\"fd5f:519c:6d46:cdb:9f25:453a:30be:3fd5/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:45:56.768242Z\", \"updated_at\":\"2025-10-30T15:45:56.768242Z\", \"source\":{\"subnet_id\":\"12e47a9c-0858-4c3c-879e-4ad4c633dff1\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"mac_address\":\"02:00:00:11:3B:62\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"28cf8122-df0a-418b-9a57-e84c86d946cf\", \"address\":\"172.17.108.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:45:56.658757Z\", \"updated_at\":\"2025-10-30T15:45:56.658757Z\", \"source\":{\"subnet_id\":\"507a0445-6c8a-485b-a1bc-9f46b11437fe\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"mac_address\":\"02:00:00:11:3B:62\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1074" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 52669b4d-5ec4-4600-842a-b79c3a12f69e + status: 200 OK + code: 200 + duration: 28.255162ms +- id: 115 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/8a03ce15-7bee-4c1c-9d2e-8e561ccf299e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 426 + body: "{\"id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"name\":\"TestAccServer_PrivateNetwork\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:38.387796Z\", \"updated_at\":\"2025-10-30T15:43:38.387796Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b2dfe8b2-1c7d-4307-acb0-5d84fca6ad4d + status: 200 OK + code: 200 + duration: 26.593123ms +- id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/31f84cb3-96ab-4190-95c6-7f04a9456778 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1094 + body: "{\"id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"name\":\"private_network_instance\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"507a0445-6c8a-485b-a1bc-9f46b11437fe\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"subnet\":\"172.17.108.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}, {\"id\":\"12e47a9c-0858-4c3c-879e-4ad4c633dff1\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"subnet\":\"fd5f:519c:6d46:cdb::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}], \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1094" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9108c8ed-bb48-45e5-9d1e-10cd0a0980d5 + status: 200 OK + code: 200 + duration: 21.097272ms +- id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2355 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"node_id\": \"38\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:3b:62\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:45:56.353992+00:00\", \"modification_date\": \"2025-10-30T15:46:23.392465+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"28cf8122-df0a-418b-9a57-e84c86d946cf\", \"74361d0f-ee3f-42c2-a6d3-8d1435f3b3f1\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2355" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fe2e3118-7fe0-40e0-9af6-d27f1f518d16 + status: 200 OK + code: 200 + duration: 143.17506ms +- id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1794c553-0386-4270-b5e9-5ee4fb6ab33d + status: 404 Not Found + code: 404 + duration: 28.543082ms +- id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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-30T15:45:49.393737Z\", \"updated_at\":\"2025-10-30T15:45:49.393737Z\", \"references\":[{\"id\":\"b212c03b-8585-4ce9-8b51-bec675ab74fb\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"6bf9f46c-fa08-45c4-8118-71938310077a\", \"created_at\":\"2025-10-30T15:45:49.393737Z\", \"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: + - Thu, 30 Oct 2025 15:46:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7f7fa08b-1b6d-418b-bacb-7dfa2e310d64 + status: 200 OK + code: 200 + duration: 84.35825ms +- id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7e7d0db3-19c1-4de9-93a0-13d6af53dac9 + status: 200 OK + code: 200 + duration: 97.845875ms +- id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:3b:62\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:45:56.353992+00:00\", \"modification_date\": \"2025-10-30T15:46:23.392465+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"28cf8122-df0a-418b-9a57-e84c86d946cf\", \"74361d0f-ee3f-42c2-a6d3-8d1435f3b3f1\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:29 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b5214e95-c6ce-4313-a8c9-570ceb52ff7c + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 104.47402ms +- id: 122 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb + 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=6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1074 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"74361d0f-ee3f-42c2-a6d3-8d1435f3b3f1\", \"address\":\"fd5f:519c:6d46:cdb:9f25:453a:30be:3fd5/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:45:56.768242Z\", \"updated_at\":\"2025-10-30T15:45:56.768242Z\", \"source\":{\"subnet_id\":\"12e47a9c-0858-4c3c-879e-4ad4c633dff1\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"mac_address\":\"02:00:00:11:3B:62\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"28cf8122-df0a-418b-9a57-e84c86d946cf\", \"address\":\"172.17.108.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:45:56.658757Z\", \"updated_at\":\"2025-10-30T15:45:56.658757Z\", \"source\":{\"subnet_id\":\"507a0445-6c8a-485b-a1bc-9f46b11437fe\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"mac_address\":\"02:00:00:11:3B:62\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1074" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4ca32049-3e20-403f-9f28-33c94dacc6b6 + status: 200 OK + code: 200 + duration: 22.105023ms +- id: 123 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 205 + host: api.scaleway.com + body: "{\"name\":\"private_network_instance_02\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"subnets\":null,\"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\",\"default_route_propagation_enabled\":false}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1097 + body: "{\"id\":\"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"name\":\"private_network_instance_02\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:46:30.020545Z\", \"updated_at\":\"2025-10-30T15:46:30.020545Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"74d5a39c-9e14-4677-b029-d458aaab6523\", \"created_at\":\"2025-10-30T15:46:30.020545Z\", \"updated_at\":\"2025-10-30T15:46:30.020545Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}, {\"id\":\"afaa604b-80dc-44a8-87fd-90c5fa4eaf7e\", \"created_at\":\"2025-10-30T15:46:30.020545Z\", \"updated_at\":\"2025-10-30T15:46:30.020545Z\", \"subnet\":\"fd5f:519c:6d46:682e::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}], \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1097" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0b90e949-c0ed-4b82-bab2-6233b8d27341 + status: 200 OK + code: 200 + duration: 701.907482ms +- id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/2bf97591-aa13-4511-b92d-e79144f5f5ac + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1097 + body: "{\"id\":\"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"name\":\"private_network_instance_02\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:46:30.020545Z\", \"updated_at\":\"2025-10-30T15:46:30.020545Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"74d5a39c-9e14-4677-b029-d458aaab6523\", \"created_at\":\"2025-10-30T15:46:30.020545Z\", \"updated_at\":\"2025-10-30T15:46:30.020545Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}, {\"id\":\"afaa604b-80dc-44a8-87fd-90c5fa4eaf7e\", \"created_at\":\"2025-10-30T15:46:30.020545Z\", \"updated_at\":\"2025-10-30T15:46:30.020545Z\", \"subnet\":\"fd5f:519c:6d46:682e::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}], \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1097" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4937de43-6b21-4788-9182-1f0465723d2d + status: 200 OK + code: 200 + duration: 28.912945ms +- id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2355 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"node_id\": \"38\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:3b:62\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:45:56.353992+00:00\", \"modification_date\": \"2025-10-30T15:46:23.392465+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"28cf8122-df0a-418b-9a57-e84c86d946cf\", \"74361d0f-ee3f-42c2-a6d3-8d1435f3b3f1\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2355" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d397ad3b-61ab-496b-822c-3aa745a74540 + status: 200 OK + code: 200 + duration: 150.688276ms +- id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:3b:62\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:45:56.353992+00:00\", \"modification_date\": \"2025-10-30T15:46:23.392465+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"28cf8122-df0a-418b-9a57-e84c86d946cf\", \"74361d0f-ee3f-42c2-a6d3-8d1435f3b3f1\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:30 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a9f83534-d0b0-4510-9af8-52850fc94a2a + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 102.334105ms +- id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2441 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"node_id\": \"38\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:3b:62\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:45:56.353992+00:00\", \"modification_date\": \"2025-10-30T15:46:23.392465+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"28cf8122-df0a-418b-9a57-e84c86d946cf\", \"74361d0f-ee3f-42c2-a6d3-8d1435f3b3f1\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null, \"admin_password_encrypted_value\": null}}" + headers: + Content-Length: + - "2441" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7ca7f813-4403-4951-8847-a084a79e44fd + status: 200 OK + code: 200 + duration: 133.796786ms +- id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics/6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:3b:62\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:45:56.353992+00:00\", \"modification_date\": \"2025-10-30T15:46:23.392465+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"28cf8122-df0a-418b-9a57-e84c86d946cf\", \"74361d0f-ee3f-42c2-a6d3-8d1435f3b3f1\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8ca6e608-7ae9-4e1e-b9ef-daada2b40594 + status: 200 OK + code: 200 + duration: 102.925566ms +- id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics/6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 80fd113f-aa45-4a39-a423-4323980078c9 + status: 204 No Content + code: 204 + duration: 412.630824ms +- id: 130 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics/6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 148 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_private_nic\", \"resource_id\": \"6a888f1f-6c1d-4d84-8e7a-69a6c429e3eb\"}" + headers: + Content-Length: + - "148" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - abd5f288-03f4-4093-9174-f4b067a7cba6 + status: 404 Not Found + code: 404 + duration: 110.463408ms +- id: 131 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 61 + host: api.scaleway.com + body: "{\"private_network_id\":\"2bf97591-aa13-4511-b92d-e79144f5f5ac\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:31.875262+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aa791843-4e62-47e6-bcea-c58356be44df + status: 201 Created + code: 201 + duration: 585.710791ms +- id: 132 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics/0de02967-d8f8-4b02-b672-5ced6c100d95 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:31.875262+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b7a4f981-1160-4612-9b88-52e82dc9646f + status: 200 OK + code: 200 + duration: 103.664422ms +- id: 133 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics/0de02967-d8f8-4b02-b672-5ced6c100d95 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4fe1a571-d15a-467e-a5ad-7441bbd8b3fc + status: 200 OK + code: 200 + duration: 100.248634ms +- id: 134 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics/0de02967-d8f8-4b02-b672-5ced6c100d95 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2ce5fd76-1bf3-4443-b1b0-9552a3ec982e + status: 200 OK + code: 200 + duration: 97.852879ms +- id: 135 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2355 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"node_id\": \"38\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2355" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ff91794a-d698-496f-85c4-87343801a373 + status: 200 OK + code: 200 + duration: 158.84962ms +- id: 136 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2355 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"node_id\": \"38\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2355" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c61352f0-f176-4816-94f8-286c0ee9c9b9 + status: 200 OK + code: 200 + duration: 150.137003ms +- id: 137 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 968ff104-0c18-4cfb-8aa9-d99f27a0f073 + status: 404 Not Found + code: 404 + duration: 38.806708ms +- id: 138 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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-30T15:45:49.393737Z\", \"updated_at\":\"2025-10-30T15:45:49.393737Z\", \"references\":[{\"id\":\"b212c03b-8585-4ce9-8b51-bec675ab74fb\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"6bf9f46c-fa08-45c4-8118-71938310077a\", \"created_at\":\"2025-10-30T15:45:49.393737Z\", \"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: + - Thu, 30 Oct 2025 15:46:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2887ef6e-5644-4f57-ad1c-9e3a5dfcbb83 + status: 200 OK + code: 200 + duration: 77.232722ms +- id: 139 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fd22a4a4-2222-4c40-b578-a40197dab822 + status: 200 OK + code: 200 + duration: 103.76442ms +- id: 140 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:38 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ce4cb3a1-a465-41c7-9a4b-2e78d7bed53d + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 110.145163ms +- id: 141 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 0de02967-d8f8-4b02-b672-5ced6c100d95 + 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=0de02967-d8f8-4b02-b672-5ced6c100d95&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1074 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"53f0f026-d31f-4d46-8739-fd82dab5d015\", \"address\":\"fd5f:519c:6d46:682e:f9d8:9a56:9388:a822/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:46:32.094998Z\", \"updated_at\":\"2025-10-30T15:46:32.094998Z\", \"source\":{\"subnet_id\":\"afaa604b-80dc-44a8-87fd-90c5fa4eaf7e\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"mac_address\":\"02:00:00:13:8B:84\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"address\":\"172.18.24.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:46:31.949463Z\", \"updated_at\":\"2025-10-30T15:46:31.949463Z\", \"source\":{\"subnet_id\":\"74d5a39c-9e14-4677-b029-d458aaab6523\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"mac_address\":\"02:00:00:13:8B:84\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1074" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ebf758b2-6a4a-480a-8929-c9d79df1dd73 + status: 200 OK + code: 200 + duration: 27.579143ms +- id: 142 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:38 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9cbbcec7-687b-46c1-bb59-c152d3bfaec0 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 104.534455ms +- id: 143 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/8a03ce15-7bee-4c1c-9d2e-8e561ccf299e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 426 + body: "{\"id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"name\":\"TestAccServer_PrivateNetwork\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:38.387796Z\", \"updated_at\":\"2025-10-30T15:43:38.387796Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ae7eac6a-5fd7-44ba-b142-3979a0ec54c7 + status: 200 OK + code: 200 + duration: 32.321931ms +- id: 144 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/2bf97591-aa13-4511-b92d-e79144f5f5ac + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1097 + body: "{\"id\":\"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"name\":\"private_network_instance_02\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:46:30.020545Z\", \"updated_at\":\"2025-10-30T15:46:30.020545Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"74d5a39c-9e14-4677-b029-d458aaab6523\", \"created_at\":\"2025-10-30T15:46:30.020545Z\", \"updated_at\":\"2025-10-30T15:46:30.020545Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}, {\"id\":\"afaa604b-80dc-44a8-87fd-90c5fa4eaf7e\", \"created_at\":\"2025-10-30T15:46:30.020545Z\", \"updated_at\":\"2025-10-30T15:46:30.020545Z\", \"subnet\":\"fd5f:519c:6d46:682e::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}], \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1097" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a8e582de-1dab-45ab-86b6-5ea6080a52d3 + status: 200 OK + code: 200 + duration: 25.772614ms +- id: 145 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/31f84cb3-96ab-4190-95c6-7f04a9456778 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1094 + body: "{\"id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"name\":\"private_network_instance\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"507a0445-6c8a-485b-a1bc-9f46b11437fe\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"subnet\":\"172.17.108.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}, {\"id\":\"12e47a9c-0858-4c3c-879e-4ad4c633dff1\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"subnet\":\"fd5f:519c:6d46:cdb::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}], \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1094" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d0af112d-c7c6-411d-a7dc-66d9203a78ef + status: 200 OK + code: 200 + duration: 26.335811ms +- id: 146 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2401 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"node_id\": \"38\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2401" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5b1a8dca-7f48-4644-999a-845a9934fea1 + status: 200 OK + code: 200 + duration: 145.930201ms +- id: 147 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 66e3fecb-ece0-4912-9753-078a3ca130e0 + status: 404 Not Found + code: 404 + duration: 39.979257ms +- id: 148 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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-30T15:45:49.393737Z\", \"updated_at\":\"2025-10-30T15:45:49.393737Z\", \"references\":[{\"id\":\"b212c03b-8585-4ce9-8b51-bec675ab74fb\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"6bf9f46c-fa08-45c4-8118-71938310077a\", \"created_at\":\"2025-10-30T15:45:49.393737Z\", \"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: + - Thu, 30 Oct 2025 15:46:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2a06b8c0-540a-41c2-a2e6-e332d5b09c65 + status: 200 OK + code: 200 + duration: 96.777111ms +- id: 149 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 841ada02-69eb-4a2b-b202-56a22d3397dc + status: 200 OK + code: 200 + duration: 89.336991ms +- id: 150 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:39 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 903c8a38-04fe-4acc-8c4d-4bd29442c44f + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 103.090587ms +- id: 151 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 0de02967-d8f8-4b02-b672-5ced6c100d95 + 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=0de02967-d8f8-4b02-b672-5ced6c100d95&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1074 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"53f0f026-d31f-4d46-8739-fd82dab5d015\", \"address\":\"fd5f:519c:6d46:682e:f9d8:9a56:9388:a822/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:46:32.094998Z\", \"updated_at\":\"2025-10-30T15:46:32.094998Z\", \"source\":{\"subnet_id\":\"afaa604b-80dc-44a8-87fd-90c5fa4eaf7e\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"mac_address\":\"02:00:00:13:8B:84\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"address\":\"172.18.24.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:46:31.949463Z\", \"updated_at\":\"2025-10-30T15:46:31.949463Z\", \"source\":{\"subnet_id\":\"74d5a39c-9e14-4677-b029-d458aaab6523\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"mac_address\":\"02:00:00:13:8B:84\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1074" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a954e784-bc77-4aec-832b-94316bc3a674 + status: 200 OK + code: 200 + duration: 26.112912ms +- id: 152 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/8a03ce15-7bee-4c1c-9d2e-8e561ccf299e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 426 + body: "{\"id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"name\":\"TestAccServer_PrivateNetwork\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:38.387796Z\", \"updated_at\":\"2025-10-30T15:43:38.387796Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dc1f2ad5-15fa-43fd-96e0-81768f86d765 + status: 200 OK + code: 200 + duration: 29.74144ms +- id: 153 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/31f84cb3-96ab-4190-95c6-7f04a9456778 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1094 + body: "{\"id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"name\":\"private_network_instance\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"507a0445-6c8a-485b-a1bc-9f46b11437fe\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"subnet\":\"172.17.108.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}, {\"id\":\"12e47a9c-0858-4c3c-879e-4ad4c633dff1\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"subnet\":\"fd5f:519c:6d46:cdb::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}], \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1094" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b2b52a3d-7045-432b-8756-fe65b55dfa9f + status: 200 OK + code: 200 + duration: 29.358783ms +- id: 154 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/2bf97591-aa13-4511-b92d-e79144f5f5ac + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1097 + body: "{\"id\":\"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"name\":\"private_network_instance_02\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:46:30.020545Z\", \"updated_at\":\"2025-10-30T15:46:30.020545Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"74d5a39c-9e14-4677-b029-d458aaab6523\", \"created_at\":\"2025-10-30T15:46:30.020545Z\", \"updated_at\":\"2025-10-30T15:46:30.020545Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}, {\"id\":\"afaa604b-80dc-44a8-87fd-90c5fa4eaf7e\", \"created_at\":\"2025-10-30T15:46:30.020545Z\", \"updated_at\":\"2025-10-30T15:46:30.020545Z\", \"subnet\":\"fd5f:519c:6d46:682e::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}], \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1097" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 58fccb3c-08a3-439a-bbdd-b2a8fb915b51 + status: 200 OK + code: 200 + duration: 29.706736ms +- id: 155 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2355 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"node_id\": \"38\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2355" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 186734be-5645-4fdf-b8e8-4571bfd2e004 + status: 200 OK + code: 200 + duration: 141.349857ms +- id: 156 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 177b16b8-36a8-47e4-9e9e-d3cf5a9c4920 + status: 404 Not Found + code: 404 + duration: 36.783643ms +- id: 157 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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-30T15:45:49.393737Z\", \"updated_at\":\"2025-10-30T15:45:49.393737Z\", \"references\":[{\"id\":\"b212c03b-8585-4ce9-8b51-bec675ab74fb\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"6bf9f46c-fa08-45c4-8118-71938310077a\", \"created_at\":\"2025-10-30T15:45:49.393737Z\", \"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: + - Thu, 30 Oct 2025 15:46:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1b60d426-0dcd-4cd4-989f-66886f4446ff + status: 200 OK + code: 200 + duration: 83.466518ms +- id: 158 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 92b01824-d270-45fc-9efd-be8d7bef8127 + status: 200 OK + code: 200 + duration: 112.771259ms +- id: 159 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:39 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bac3e717-add6-4559-8e38-b007af8ac6d3 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 101.759308ms +- id: 160 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 0de02967-d8f8-4b02-b672-5ced6c100d95 + 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=0de02967-d8f8-4b02-b672-5ced6c100d95&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1074 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"53f0f026-d31f-4d46-8739-fd82dab5d015\", \"address\":\"fd5f:519c:6d46:682e:f9d8:9a56:9388:a822/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:46:32.094998Z\", \"updated_at\":\"2025-10-30T15:46:32.094998Z\", \"source\":{\"subnet_id\":\"afaa604b-80dc-44a8-87fd-90c5fa4eaf7e\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"mac_address\":\"02:00:00:13:8B:84\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"address\":\"172.18.24.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:46:31.949463Z\", \"updated_at\":\"2025-10-30T15:46:31.949463Z\", \"source\":{\"subnet_id\":\"74d5a39c-9e14-4677-b029-d458aaab6523\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"mac_address\":\"02:00:00:13:8B:84\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1074" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 17b6a591-083d-47fb-a856-1886adfe540c + status: 200 OK + code: 200 + duration: 25.438317ms +- id: 161 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2355 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"node_id\": \"38\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2355" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - efae8433-8678-4105-ae25-0915c34506cd + status: 200 OK + code: 200 + duration: 128.161283ms +- id: 162 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 478 + body: "{\"private_nics\": [{\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}]}" + headers: + Content-Length: + - "478" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:40 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8c5405cc-8907-43a6-907f-30b6748ccf08 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 122.891086ms +- id: 163 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2401 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"node_id\": \"38\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2401" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 446b209a-2b0d-415c-8d57-943779367474 + status: 200 OK + code: 200 + duration: 136.413877ms +- id: 164 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 61 + host: api.scaleway.com + body: "{\"private_network_id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:17:db\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:46:40.435303+00:00\", \"modification_date\": \"2025-10-30T15:46:40.678957+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"98e8a31e-0f92-47ff-9fef-a0d66a122d57\", \"9d2005f6-1a12-438f-bea5-3b1f9776475a\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0f477242-c5f2-4eef-99ff-6eae30c03d64 + status: 201 Created + code: 201 + duration: 661.426464ms +- id: 165 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics/a86ef764-68df-4a2f-b69f-b4f361c7c4cd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 473 + body: "{\"private_nic\": {\"id\": \"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:17:db\", \"state\": \"syncing\", \"creation_date\": \"2025-10-30T15:46:40.435303+00:00\", \"modification_date\": \"2025-10-30T15:46:40.678957+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"98e8a31e-0f92-47ff-9fef-a0d66a122d57\", \"9d2005f6-1a12-438f-bea5-3b1f9776475a\"]}}" + headers: + Content-Length: + - "473" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2c8944f7-aac1-41c3-ae64-7286365dbb9e + status: 200 OK + code: 200 + duration: 113.263071ms +- id: 166 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics/a86ef764-68df-4a2f-b69f-b4f361c7c4cd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:17:db\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:40.435303+00:00\", \"modification_date\": \"2025-10-30T15:46:41.838242+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"98e8a31e-0f92-47ff-9fef-a0d66a122d57\", \"9d2005f6-1a12-438f-bea5-3b1f9776475a\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 19966bed-2eea-4686-b856-1a53e92c1eb2 + status: 200 OK + code: 200 + duration: 106.411287ms +- id: 167 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics/a86ef764-68df-4a2f-b69f-b4f361c7c4cd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:17:db\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:40.435303+00:00\", \"modification_date\": \"2025-10-30T15:46:41.838242+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"98e8a31e-0f92-47ff-9fef-a0d66a122d57\", \"9d2005f6-1a12-438f-bea5-3b1f9776475a\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f32f2d3f-d8cd-49c6-ad70-7b884a82e7cb + status: 200 OK + code: 200 + duration: 94.026019ms +- id: 168 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2815 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"node_id\": \"38\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}, {\"id\": \"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:17:db\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:40.435303+00:00\", \"modification_date\": \"2025-10-30T15:46:41.838242+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"98e8a31e-0f92-47ff-9fef-a0d66a122d57\", \"9d2005f6-1a12-438f-bea5-3b1f9776475a\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2815" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 069d2fa5-acf0-439c-8704-2558dbe57492 + status: 200 OK + code: 200 + duration: 145.279972ms +- id: 169 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2861 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"node_id\": \"38\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}, {\"id\": \"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:17:db\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:40.435303+00:00\", \"modification_date\": \"2025-10-30T15:46:41.838242+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"98e8a31e-0f92-47ff-9fef-a0d66a122d57\", \"9d2005f6-1a12-438f-bea5-3b1f9776475a\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2861" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f03abd62-28bd-4360-ac67-4de3cba4d654 + status: 200 OK + code: 200 + duration: 138.668679ms +- id: 170 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f460b0ab-13e3-41aa-8d20-1ac76437706a + status: 404 Not Found + code: 404 + duration: 34.809719ms +- id: 171 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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-30T15:45:49.393737Z\", \"updated_at\":\"2025-10-30T15:45:49.393737Z\", \"references\":[{\"id\":\"b212c03b-8585-4ce9-8b51-bec675ab74fb\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"6bf9f46c-fa08-45c4-8118-71938310077a\", \"created_at\":\"2025-10-30T15:45:49.393737Z\", \"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: + - Thu, 30 Oct 2025 15:46:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 91793cd5-a4c5-4c09-8c24-5b84576d3152 + status: 200 OK + code: 200 + duration: 81.675779ms +- id: 172 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1b296b92-8ec0-4178-a075-ce537f9f9c37 + status: 200 OK + code: 200 + duration: 101.84558ms +- id: 173 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 938 + body: "{\"private_nics\": [{\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}, {\"id\": \"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:17:db\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:40.435303+00:00\", \"modification_date\": \"2025-10-30T15:46:41.838242+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"98e8a31e-0f92-47ff-9fef-a0d66a122d57\", \"9d2005f6-1a12-438f-bea5-3b1f9776475a\"]}]}" + headers: + Content-Length: + - "938" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:47 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2a7cd29d-568f-4d26-b9ab-0cc4e5d053b6 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 115.632768ms +- id: 174 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 0de02967-d8f8-4b02-b672-5ced6c100d95 + 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=0de02967-d8f8-4b02-b672-5ced6c100d95&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1074 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"53f0f026-d31f-4d46-8739-fd82dab5d015\", \"address\":\"fd5f:519c:6d46:682e:f9d8:9a56:9388:a822/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:46:32.094998Z\", \"updated_at\":\"2025-10-30T15:46:32.094998Z\", \"source\":{\"subnet_id\":\"afaa604b-80dc-44a8-87fd-90c5fa4eaf7e\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"mac_address\":\"02:00:00:13:8B:84\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"address\":\"172.18.24.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:46:31.949463Z\", \"updated_at\":\"2025-10-30T15:46:31.949463Z\", \"source\":{\"subnet_id\":\"74d5a39c-9e14-4677-b029-d458aaab6523\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"mac_address\":\"02:00:00:13:8B:84\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1074" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e579c79a-70f2-46c4-b09f-2f31e512217c + status: 200 OK + code: 200 + duration: 24.213138ms +- id: 175 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - a86ef764-68df-4a2f-b69f-b4f361c7c4cd + 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=a86ef764-68df-4a2f-b69f-b4f361c7c4cd&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1074 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"9d2005f6-1a12-438f-bea5-3b1f9776475a\", \"address\":\"fd5f:519c:6d46:cdb:81b0:4893:8e99:8501/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:46:40.927304Z\", \"updated_at\":\"2025-10-30T15:46:40.927304Z\", \"source\":{\"subnet_id\":\"12e47a9c-0858-4c3c-879e-4ad4c633dff1\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\", \"mac_address\":\"02:00:00:11:17:DB\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"98e8a31e-0f92-47ff-9fef-a0d66a122d57\", \"address\":\"172.17.108.3/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:46:40.753811Z\", \"updated_at\":\"2025-10-30T15:46:40.753811Z\", \"source\":{\"subnet_id\":\"507a0445-6c8a-485b-a1bc-9f46b11437fe\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\", \"mac_address\":\"02:00:00:11:17:DB\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1074" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1d283dd6-8a69-44c9-a2d0-804bea2e1ff0 + status: 200 OK + code: 200 + duration: 29.584876ms +- id: 176 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 938 + body: "{\"private_nics\": [{\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}, {\"id\": \"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:17:db\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:40.435303+00:00\", \"modification_date\": \"2025-10-30T15:46:41.838242+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"98e8a31e-0f92-47ff-9fef-a0d66a122d57\", \"9d2005f6-1a12-438f-bea5-3b1f9776475a\"]}]}" + headers: + Content-Length: + - "938" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:47 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0dad334c-79bb-4fa4-b9e8-99cbf9677416 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 106.448608ms +- id: 177 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/8a03ce15-7bee-4c1c-9d2e-8e561ccf299e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 426 + body: "{\"id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"name\":\"TestAccServer_PrivateNetwork\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:38.387796Z\", \"updated_at\":\"2025-10-30T15:43:38.387796Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a536ac5f-7f99-45fc-ba3c-370e42cd2db0 + status: 200 OK + code: 200 + duration: 28.186253ms +- id: 178 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/2bf97591-aa13-4511-b92d-e79144f5f5ac + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1097 + body: "{\"id\":\"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"name\":\"private_network_instance_02\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:46:30.020545Z\", \"updated_at\":\"2025-10-30T15:46:30.020545Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"74d5a39c-9e14-4677-b029-d458aaab6523\", \"created_at\":\"2025-10-30T15:46:30.020545Z\", \"updated_at\":\"2025-10-30T15:46:30.020545Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}, {\"id\":\"afaa604b-80dc-44a8-87fd-90c5fa4eaf7e\", \"created_at\":\"2025-10-30T15:46:30.020545Z\", \"updated_at\":\"2025-10-30T15:46:30.020545Z\", \"subnet\":\"fd5f:519c:6d46:682e::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}], \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1097" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4420395d-e93d-4f28-8138-165f66afe731 + status: 200 OK + code: 200 + duration: 24.904716ms +- id: 179 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/31f84cb3-96ab-4190-95c6-7f04a9456778 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1094 + body: "{\"id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"name\":\"private_network_instance\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"507a0445-6c8a-485b-a1bc-9f46b11437fe\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"subnet\":\"172.17.108.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}, {\"id\":\"12e47a9c-0858-4c3c-879e-4ad4c633dff1\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"subnet\":\"fd5f:519c:6d46:cdb::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}], \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1094" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6190bceb-dcc5-4e5e-8aa8-7074d607d4ba + status: 200 OK + code: 200 + duration: 40.08634ms +- id: 180 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2861 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"node_id\": \"38\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}, {\"id\": \"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:17:db\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:40.435303+00:00\", \"modification_date\": \"2025-10-30T15:46:41.838242+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"98e8a31e-0f92-47ff-9fef-a0d66a122d57\", \"9d2005f6-1a12-438f-bea5-3b1f9776475a\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2861" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3d49d7be-c531-440b-afc3-1eee5f7918cf + status: 200 OK + code: 200 + duration: 146.254972ms +- id: 181 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e6263876-c352-492f-9b5f-b84741fd555b + status: 404 Not Found + code: 404 + duration: 27.350154ms +- id: 182 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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-30T15:45:49.393737Z\", \"updated_at\":\"2025-10-30T15:45:49.393737Z\", \"references\":[{\"id\":\"b212c03b-8585-4ce9-8b51-bec675ab74fb\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"6bf9f46c-fa08-45c4-8118-71938310077a\", \"created_at\":\"2025-10-30T15:45:49.393737Z\", \"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: + - Thu, 30 Oct 2025 15:46:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 404ab0d3-fd56-46dd-9d47-7a536b1f1d52 + status: 200 OK + code: 200 + duration: 86.775537ms +- id: 183 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a3bbfbe8-6ed3-4ce9-b745-10491a99c720 + status: 200 OK + code: 200 + duration: 110.033594ms +- id: 184 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 938 + body: "{\"private_nics\": [{\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}, {\"id\": \"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:17:db\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:40.435303+00:00\", \"modification_date\": \"2025-10-30T15:46:41.838242+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"98e8a31e-0f92-47ff-9fef-a0d66a122d57\", \"9d2005f6-1a12-438f-bea5-3b1f9776475a\"]}]}" + headers: + Content-Length: + - "938" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:48 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d1acd401-9ace-482b-8a3b-353f74e675aa + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 107.644942ms +- id: 185 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 0de02967-d8f8-4b02-b672-5ced6c100d95 + 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=0de02967-d8f8-4b02-b672-5ced6c100d95&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1074 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"53f0f026-d31f-4d46-8739-fd82dab5d015\", \"address\":\"fd5f:519c:6d46:682e:f9d8:9a56:9388:a822/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:46:32.094998Z\", \"updated_at\":\"2025-10-30T15:46:32.094998Z\", \"source\":{\"subnet_id\":\"afaa604b-80dc-44a8-87fd-90c5fa4eaf7e\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"mac_address\":\"02:00:00:13:8B:84\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"address\":\"172.18.24.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:46:31.949463Z\", \"updated_at\":\"2025-10-30T15:46:31.949463Z\", \"source\":{\"subnet_id\":\"74d5a39c-9e14-4677-b029-d458aaab6523\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"mac_address\":\"02:00:00:13:8B:84\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1074" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c464358d-019f-4c7c-b9ea-5d693cf6fb93 + status: 200 OK + code: 200 + duration: 25.720456ms +- id: 186 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - a86ef764-68df-4a2f-b69f-b4f361c7c4cd + 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=a86ef764-68df-4a2f-b69f-b4f361c7c4cd&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1074 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"9d2005f6-1a12-438f-bea5-3b1f9776475a\", \"address\":\"fd5f:519c:6d46:cdb:81b0:4893:8e99:8501/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:46:40.927304Z\", \"updated_at\":\"2025-10-30T15:46:40.927304Z\", \"source\":{\"subnet_id\":\"12e47a9c-0858-4c3c-879e-4ad4c633dff1\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\", \"mac_address\":\"02:00:00:11:17:DB\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"98e8a31e-0f92-47ff-9fef-a0d66a122d57\", \"address\":\"172.17.108.3/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:46:40.753811Z\", \"updated_at\":\"2025-10-30T15:46:40.753811Z\", \"source\":{\"subnet_id\":\"507a0445-6c8a-485b-a1bc-9f46b11437fe\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\", \"mac_address\":\"02:00:00:11:17:DB\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1074" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 69c24dd4-2863-410a-88a7-1086c1a0a875 + status: 200 OK + code: 200 + duration: 29.547587ms +- id: 187 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/8a03ce15-7bee-4c1c-9d2e-8e561ccf299e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 426 + body: "{\"id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"name\":\"TestAccServer_PrivateNetwork\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:38.387796Z\", \"updated_at\":\"2025-10-30T15:43:38.387796Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6a81e286-f6ae-4363-aa7a-23cced56ce9c + status: 200 OK + code: 200 + duration: 38.3916ms +- id: 188 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/2bf97591-aa13-4511-b92d-e79144f5f5ac + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1097 + body: "{\"id\":\"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"name\":\"private_network_instance_02\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:46:30.020545Z\", \"updated_at\":\"2025-10-30T15:46:30.020545Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"74d5a39c-9e14-4677-b029-d458aaab6523\", \"created_at\":\"2025-10-30T15:46:30.020545Z\", \"updated_at\":\"2025-10-30T15:46:30.020545Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}, {\"id\":\"afaa604b-80dc-44a8-87fd-90c5fa4eaf7e\", \"created_at\":\"2025-10-30T15:46:30.020545Z\", \"updated_at\":\"2025-10-30T15:46:30.020545Z\", \"subnet\":\"fd5f:519c:6d46:682e::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}], \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1097" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c8992ec7-ffcd-4c36-acd4-620b8fea1721 + status: 200 OK + code: 200 + duration: 25.239043ms +- id: 189 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/31f84cb3-96ab-4190-95c6-7f04a9456778 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1094 + body: "{\"id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"name\":\"private_network_instance\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"507a0445-6c8a-485b-a1bc-9f46b11437fe\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"subnet\":\"172.17.108.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}, {\"id\":\"12e47a9c-0858-4c3c-879e-4ad4c633dff1\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"subnet\":\"fd5f:519c:6d46:cdb::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}], \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1094" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7b20ddeb-10db-4cbf-9b01-8ddf5414f785 + status: 200 OK + code: 200 + duration: 25.159834ms +- id: 190 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2861 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"node_id\": \"38\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}, {\"id\": \"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:17:db\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:40.435303+00:00\", \"modification_date\": \"2025-10-30T15:46:41.838242+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"98e8a31e-0f92-47ff-9fef-a0d66a122d57\", \"9d2005f6-1a12-438f-bea5-3b1f9776475a\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2861" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 405ea5e5-47eb-41d4-886d-b4c805920a83 + status: 200 OK + code: 200 + duration: 204.692631ms +- id: 191 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dc2fad5a-6176-41e7-bf36-d973196c1f41 + status: 404 Not Found + code: 404 + duration: 31.165101ms +- id: 192 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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-30T15:45:49.393737Z\", \"updated_at\":\"2025-10-30T15:45:49.393737Z\", \"references\":[{\"id\":\"b212c03b-8585-4ce9-8b51-bec675ab74fb\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"6bf9f46c-fa08-45c4-8118-71938310077a\", \"created_at\":\"2025-10-30T15:45:49.393737Z\", \"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: + - Thu, 30 Oct 2025 15:46:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8baaee8b-d001-4af5-835c-60b3bb22bda6 + status: 200 OK + code: 200 + duration: 95.163614ms +- id: 193 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4908cc52-55a7-4e13-9b66-6983ab6c320a + status: 200 OK + code: 200 + duration: 95.871393ms +- id: 194 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 938 + body: "{\"private_nics\": [{\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}, {\"id\": \"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:17:db\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:40.435303+00:00\", \"modification_date\": \"2025-10-30T15:46:41.838242+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"98e8a31e-0f92-47ff-9fef-a0d66a122d57\", \"9d2005f6-1a12-438f-bea5-3b1f9776475a\"]}]}" + headers: + Content-Length: + - "938" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:48 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 59f2e69f-9f65-42f6-8aa2-f3481648d66c + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 116.677369ms +- id: 195 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - 0de02967-d8f8-4b02-b672-5ced6c100d95 + 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=0de02967-d8f8-4b02-b672-5ced6c100d95&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1074 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"53f0f026-d31f-4d46-8739-fd82dab5d015\", \"address\":\"fd5f:519c:6d46:682e:f9d8:9a56:9388:a822/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:46:32.094998Z\", \"updated_at\":\"2025-10-30T15:46:32.094998Z\", \"source\":{\"subnet_id\":\"afaa604b-80dc-44a8-87fd-90c5fa4eaf7e\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"mac_address\":\"02:00:00:13:8B:84\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"address\":\"172.18.24.2/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:46:31.949463Z\", \"updated_at\":\"2025-10-30T15:46:31.949463Z\", \"source\":{\"subnet_id\":\"74d5a39c-9e14-4677-b029-d458aaab6523\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"mac_address\":\"02:00:00:13:8B:84\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1074" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 20118fc5-735e-4431-afbb-7ed92e88d0cc + status: 200 OK + code: 200 + duration: 27.344453ms +- id: 196 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_id: + - a86ef764-68df-4a2f-b69f-b4f361c7c4cd + 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=a86ef764-68df-4a2f-b69f-b4f361c7c4cd&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1074 + body: "{\"total_count\":2, \"ips\":[{\"id\":\"9d2005f6-1a12-438f-bea5-3b1f9776475a\", \"address\":\"fd5f:519c:6d46:cdb:81b0:4893:8e99:8501/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T15:46:40.927304Z\", \"updated_at\":\"2025-10-30T15:46:40.927304Z\", \"source\":{\"subnet_id\":\"12e47a9c-0858-4c3c-879e-4ad4c633dff1\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\", \"mac_address\":\"02:00:00:11:17:DB\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"98e8a31e-0f92-47ff-9fef-a0d66a122d57\", \"address\":\"172.17.108.3/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T15:46:40.753811Z\", \"updated_at\":\"2025-10-30T15:46:40.753811Z\", \"source\":{\"subnet_id\":\"507a0445-6c8a-485b-a1bc-9f46b11437fe\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\", \"mac_address\":\"02:00:00:11:17:DB\", \"name\":\"tf-srv-pensive-vaughan\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" + headers: + Content-Length: + - "1074" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4de85d2c-7cef-47c9-94ca-1ee185b1ea6a + status: 200 OK + code: 200 + duration: 27.89688ms +- id: 197 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2815 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"node_id\": \"38\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}, {\"id\": \"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:17:db\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:40.435303+00:00\", \"modification_date\": \"2025-10-30T15:46:41.838242+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"98e8a31e-0f92-47ff-9fef-a0d66a122d57\", \"9d2005f6-1a12-438f-bea5-3b1f9776475a\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2815" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - be2edc11-eef8-4bbb-a315-71350477dd80 + status: 200 OK + code: 200 + duration: 164.106525ms +- id: 198 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 938 + body: "{\"private_nics\": [{\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}, {\"id\": \"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:17:db\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:40.435303+00:00\", \"modification_date\": \"2025-10-30T15:46:41.838242+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"98e8a31e-0f92-47ff-9fef-a0d66a122d57\", \"9d2005f6-1a12-438f-bea5-3b1f9776475a\"]}]}" + headers: + Content-Length: + - "938" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:49 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ad63580f-e182-4db5-be13-1407d6bdb42f + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 130.154134ms +- id: 199 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2861 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"node_id\": \"38\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}, {\"id\": \"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:17:db\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:40.435303+00:00\", \"modification_date\": \"2025-10-30T15:46:41.838242+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"98e8a31e-0f92-47ff-9fef-a0d66a122d57\", \"9d2005f6-1a12-438f-bea5-3b1f9776475a\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2861" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 85aa5620-9c99-4703-a03d-ff6d53ed42bf + status: 200 OK + code: 200 + duration: 175.18995ms +- id: 200 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics/0de02967-d8f8-4b02-b672-5ced6c100d95 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\", \"private_network_id\": \"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:13:8b:84\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:31.686952+00:00\", \"modification_date\": \"2025-10-30T15:46:33.038928+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"2eb8d27f-4e88-4fed-a8cc-3ca828459319\", \"53f0f026-d31f-4d46-8739-fd82dab5d015\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8067233d-f607-465d-8961-385f0a4c8c85 + status: 200 OK + code: 200 + duration: 106.05508ms +- id: 201 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics/0de02967-d8f8-4b02-b672-5ced6c100d95 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 37154574-887a-4f19-9394-db60b5706eca + status: 204 No Content + code: 204 + duration: 486.594233ms +- id: 202 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics/0de02967-d8f8-4b02-b672-5ced6c100d95 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 148 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_private_nic\", \"resource_id\": \"0de02967-d8f8-4b02-b672-5ced6c100d95\"}" + headers: + Content-Length: + - "148" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bacb4d9c-63c6-44fc-afdf-dbbd99be69b5 + status: 404 Not Found + code: 404 + duration: 150.48595ms +- id: 203 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2355 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"node_id\": \"38\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:17:db\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:40.435303+00:00\", \"modification_date\": \"2025-10-30T15:46:41.838242+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"98e8a31e-0f92-47ff-9fef-a0d66a122d57\", \"9d2005f6-1a12-438f-bea5-3b1f9776475a\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2355" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2bac0859-649d-444f-a42c-798bc57bbdcf + status: 200 OK + code: 200 + duration: 173.716786ms +- id: 204 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics/a86ef764-68df-4a2f-b69f-b4f361c7c4cd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 475 + body: "{\"private_nic\": {\"id\": \"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\", \"private_network_id\": \"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"server_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"mac_address\": \"02:00:00:11:17:db\", \"state\": \"available\", \"creation_date\": \"2025-10-30T15:46:40.435303+00:00\", \"modification_date\": \"2025-10-30T15:46:41.838242+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"98e8a31e-0f92-47ff-9fef-a0d66a122d57\", \"9d2005f6-1a12-438f-bea5-3b1f9776475a\"]}}" + headers: + Content-Length: + - "475" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eb608966-67cd-415a-9ee9-2dea7f9c05e3 + status: 200 OK + code: 200 + duration: 129.679604ms +- id: 205 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics/a86ef764-68df-4a2f-b69f-b4f361c7c4cd + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4ffba989-4454-4aa2-a362-b74860ff8573 + status: 204 No Content + code: 204 + duration: 436.964488ms +- id: 206 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics/a86ef764-68df-4a2f-b69f-b4f361c7c4cd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 148 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_private_nic\", \"resource_id\": \"a86ef764-68df-4a2f-b69f-b4f361c7c4cd\"}" + headers: + Content-Length: + - "148" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a19c6aef-7863-475d-92f3-56a893e56604 + status: 404 Not Found + code: 404 + duration: 112.441472ms +- id: 207 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1897 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"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: + - "1897" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f8e5732f-6a74-4088-bf64-42d11200bf0b + status: 200 OK + code: 200 + duration: 147.839835ms +- id: 208 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1943 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"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: + - "1943" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e60ec440-a755-4cf5-ab88-8250610a1dfd + status: 200 OK + code: 200 + duration: 159.35988ms +- id: 209 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c38d3ef7-c637-4c56-b3ce-ee390d026e2c + status: 404 Not Found + code: 404 + duration: 53.465491ms +- id: 210 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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-30T15:45:49.393737Z\", \"updated_at\":\"2025-10-30T15:45:49.393737Z\", \"references\":[{\"id\":\"b212c03b-8585-4ce9-8b51-bec675ab74fb\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"6bf9f46c-fa08-45c4-8118-71938310077a\", \"created_at\":\"2025-10-30T15:45:49.393737Z\", \"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: + - Thu, 30 Oct 2025 15:46:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 13055921-8fca-402b-8a3c-f8362f61bd88 + status: 200 OK + code: 200 + duration: 94.159631ms +- id: 211 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 48288371-bac6-4f28-8e2a-6af6483afec8 + status: 200 OK + code: 200 + duration: 449.539312ms +- id: 212 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:52 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9a76c366-b6b9-4fb6-9ed0-d63213c0a313 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 90.085067ms +- id: 213 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1897 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"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: + - "1897" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fe9c8772-7ccd-44c8-8ffa-9d0ad1b5586c + status: 200 OK + code: 200 + duration: 140.174565ms +- id: 214 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/8a03ce15-7bee-4c1c-9d2e-8e561ccf299e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 426 + body: "{\"id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"name\":\"TestAccServer_PrivateNetwork\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:43:38.387796Z\", \"updated_at\":\"2025-10-30T15:43:38.387796Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f41f1bd7-07c0-4405-9c0d-43916e158bce + status: 200 OK + code: 200 + duration: 21.727515ms +- id: 215 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/31f84cb3-96ab-4190-95c6-7f04a9456778 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1094 + body: "{\"id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"name\":\"private_network_instance\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"507a0445-6c8a-485b-a1bc-9f46b11437fe\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"subnet\":\"172.17.108.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}, {\"id\":\"12e47a9c-0858-4c3c-879e-4ad4c633dff1\", \"created_at\":\"2025-10-30T15:45:47.031036Z\", \"updated_at\":\"2025-10-30T15:45:47.031036Z\", \"subnet\":\"fd5f:519c:6d46:cdb::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"31f84cb3-96ab-4190-95c6-7f04a9456778\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}], \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1094" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4ff76206-79c1-4814-9dbe-69ffc9bdc9b3 + status: 200 OK + code: 200 + duration: 23.295216ms +- id: 216 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/2bf97591-aa13-4511-b92d-e79144f5f5ac + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1097 + body: "{\"id\":\"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"name\":\"private_network_instance_02\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:46:30.020545Z\", \"updated_at\":\"2025-10-30T15:46:30.020545Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"74d5a39c-9e14-4677-b029-d458aaab6523\", \"created_at\":\"2025-10-30T15:46:30.020545Z\", \"updated_at\":\"2025-10-30T15:46:30.020545Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}, {\"id\":\"afaa604b-80dc-44a8-87fd-90c5fa4eaf7e\", \"created_at\":\"2025-10-30T15:46:30.020545Z\", \"updated_at\":\"2025-10-30T15:46:30.020545Z\", \"subnet\":\"fd5f:519c:6d46:682e::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"2bf97591-aa13-4511-b92d-e79144f5f5ac\", \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\"}], \"vpc_id\":\"8a03ce15-7bee-4c1c-9d2e-8e561ccf299e\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + headers: + Content-Length: + - "1097" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9d424200-e6e8-4c30-9895-d551301ca25d + status: 200 OK + code: 200 + duration: 30.748971ms +- id: 217 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1897 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"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: + - "1897" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c529c200-3584-47a7-9745-926831291a78 + status: 200 OK + code: 200 + duration: 161.781934ms +- id: 218 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5749e6f2-2626-482f-bf35-260611371bbf + status: 404 Not Found + code: 404 + duration: 1.013349339s +- id: 219 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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-30T15:45:49.393737Z\", \"updated_at\":\"2025-10-30T15:45:49.393737Z\", \"references\":[{\"id\":\"b212c03b-8585-4ce9-8b51-bec675ab74fb\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"6bf9f46c-fa08-45c4-8118-71938310077a\", \"created_at\":\"2025-10-30T15:45:49.393737Z\", \"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: + - Thu, 30 Oct 2025 15:46:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 91424a20-a416-446e-9398-0f510dd45d7b + status: 200 OK + code: 200 + duration: 75.521393ms +- id: 220 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7f789abd-1873-48e1-8b0f-855a21877364 + status: 200 OK + code: 200 + duration: 106.201044ms +- id: 221 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:53 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d8bdbfe5-0c09-4dde-8a5c-6c4891fbb600 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 112.388703ms +- id: 222 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1943 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"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: + - "1943" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 20e62a54-711b-411f-b810-33876e76fda4 + status: 200 OK + code: 200 + duration: 161.555389ms +- id: 223 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1897 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:45:53.755497+00:00\", \"bootscript\": 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\": \"1802\", \"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: + - "1897" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 94d8342a-b953-4059-b1ae-fb802e45a89a + status: 200 OK + code: 200 + duration: 136.981924ms +- id: 224 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"1604dbaa-e2ed-4acf-84dd-cb015143eb3b\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/6bf9f46c-fa08-45c4-8118-71938310077a/action\", \"href_result\": \"/servers/6bf9f46c-fa08-45c4-8118-71938310077a\", \"started_at\": \"2025-10-30T15:46:54.705830+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:54 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1604dbaa-e2ed-4acf-84dd-cb015143eb3b + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 56111015-6bcf-4341-aab0-88adc9d314b7 + status: 202 Accepted + code: 202 + duration: 296.980213ms +- id: 225 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1860 + body: "{\"server\": {\"id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\", \"name\": \"tf-srv-pensive-vaughan\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-pensive-vaughan\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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:6d:6f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:45:49.248007+00:00\", \"modification_date\": \"2025-10-30T15:46:54.462225+00:00\", \"bootscript\": 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\": \"1802\", \"node_id\": \"38\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1860" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6a364db4-82b9-4a53-ba99-e3e372bff421 + status: 200 OK + code: 200 + duration: 154.604809ms +- id: 226 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/2bf97591-aa13-4511-b92d-e79144f5f5ac + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3fa9dfba-e112-4162-9471-e95eb1ddb3f2 + status: 204 No Content + code: 204 + duration: 1.508857272s +- id: 227 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/31f84cb3-96ab-4190-95c6-7f04a9456778 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 005b4118-62ba-467b-a070-03de383cc1b3 + status: 204 No Content + code: 204 + duration: 1.684399894s +- id: 228 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-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/8a03ce15-7bee-4c1c-9d2e-8e561ccf299e + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c1dbc3c8-b714-4f71-bf13-20c52bba0a02 + status: 204 No Content + code: 204 + duration: 197.874301ms +- id: 229 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dcbc5efa-1865-4b4f-9ac1-c56601b57264 + status: 404 Not Found + code: 404 + duration: 45.306915ms +- id: 230 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:46:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 38a7fe06-187d-43b9-960c-f19e4bc459fd + status: 404 Not Found + code: 404 + duration: 34.168146ms +- id: 231 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b\", \"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-30T15:45:49.393737Z\", \"updated_at\":\"2025-10-30T15:46:56.404465Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:46:56.404465Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:47:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e28c0082-8d8f-4967-a741-3953774e24cc + status: 200 OK + code: 200 + duration: 109.443999ms +- id: 232 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/942fbc3f-cf6a-43e8-8d0f-2c0fca7d882b + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:47:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b4cf48b3-96ea-414c-9a86-72c7465021a9 + status: 204 No Content + code: 204 + duration: 141.18432ms +- id: 233 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6bf9f46c-fa08-45c4-8118-71938310077a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"6bf9f46c-fa08-45c4-8118-71938310077a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:47:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0c62b4a7-2def-4eaf-b935-cfab1da8eee4 + status: 404 Not Found + code: 404 + duration: 48.464069ms 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 ce57d109d..9fd56a1c4 100644 --- a/internal/services/instance/testdata/server-root-volume-boot.cassette.yaml +++ b/internal/services/instance/testdata/server-root-volume-boot.cassette.yaml @@ -1,2146 +1,1630 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a5d07cd4-3c35-42ab-839a-f567119c232f - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 47.012392ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2202d504-461e-4a88-a2b8-6ef90a5a5fac - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 94.961335ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9da08e1d-05b5-4d40-adf5-d529673f41ed - status: 200 OK - code: 200 - duration: 36.539039ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 301 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1798 - uncompressed: false - 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: - - "1798" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9371e71f-a775-442e-8766-d80f81c1560e - status: 201 Created - code: 201 - duration: 1.700502223s - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1798 - uncompressed: false - 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: - - "1798" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7160a82e-5b8c-4178-b443-ac4cf7f9691f - status: 200 OK - code: 200 - duration: 159.17526ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1844 - uncompressed: false - 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: - - "1844" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6d953766-4622-4f8d-b133-3d643d4dca99 - status: 200 OK - code: 200 - duration: 152.684544ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1798 - uncompressed: false - 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: - - "1798" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1a39b843-cfd3-43fb-84c9-a4fa0295e834 - status: 200 OK - code: 200 - duration: 127.211426ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c - 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": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3fc4cd22-8c31-4250-851e-17de3ac6b225 - status: 404 Not Found - code: 404 - duration: 25.937798ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c7037bd2-9c14-4e13-831e-fa5acabe233b - status: 200 OK - code: 200 - duration: 100.581694ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/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:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - eb667795-68be-4071-a4d5-d5d26d3bc914 - status: 200 OK - code: 200 - duration: 109.087157ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/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:40 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1635a543-d018-48de-93da-5cd9e47ef193 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 109.498707ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1844 - uncompressed: false - 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: - - "1844" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1715bb40-1cbe-4003-a763-a59ba0f79e70 - status: 200 OK - code: 200 - duration: 153.676239ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1844 - uncompressed: false - 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: - - "1844" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a6376a24-8e58-4fe3-83d6-0b82ad201a8d - status: 200 OK - code: 200 - duration: 141.724492ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c - 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": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b7c02165-e493-4033-b7ae-10c75f721530 - status: 404 Not Found - code: 404 - duration: 30.86972ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 67a8e04e-9000-4c53-9287-4a8722aac63a - status: 200 OK - code: 200 - duration: 87.258182ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/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:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c0a502af-b5c9-4bb2-a608-047ffec8f32b - status: 200 OK - code: 200 - duration: 94.09735ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/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:41 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 56a48ed0-0a14-47d5-9f90-7eb5a63449fd - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 101.752714ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1798 - uncompressed: false - 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: - - "1798" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 114ea557-d8c0-4d0c-aa6d-6805e7c63703 - status: 200 OK - code: 200 - duration: 165.44808ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c - 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": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b11e3646-6555-4a39-b958-dcbc8d6ab737 - status: 404 Not Found - code: 404 - duration: 29.338325ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 277bd161-77fe-42e3-8d90-57a10196fce8 - status: 200 OK - code: 200 - duration: 86.281156ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/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:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 605c9ff7-db0a-4b2f-aae0-4bdba7b48a7c - status: 200 OK - code: 200 - duration: 84.005731ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/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:41 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 62ed5e9f-3abb-4fb1-b395-23847e85cb3d - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 98.615628ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1844 - uncompressed: false - 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: - - "1844" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 93dd8896-2927-4fbd-af15-26d2e28f5758 - status: 200 OK - code: 200 - duration: 173.775019ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 112 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1799 - uncompressed: false - 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: - - "1799" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fd48c125-cd73-4143-8834-867af9e24314 - status: 200 OK - code: 200 - duration: 317.842925ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1845 - uncompressed: false - 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: - - "1845" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b965d8de-65b5-4a19-a564-998b5bdf42ce - status: 200 OK - code: 200 - duration: 130.21901ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1885 - uncompressed: false - 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: - - "1885" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d5405749-b830-4acf-adc0-ec1830af1d11 - status: 200 OK - code: 200 - duration: 140.877479ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c - 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": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c33e8841-dd0f-4994-8bed-4c46899cdd3e - status: 404 Not Found - code: 404 - duration: 30.466285ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d6339aa3-5150-43e6-af9a-99ec5181e8b5 - status: 200 OK - code: 200 - duration: 78.692006ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/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:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a9c03e1b-1549-40b7-8e14-af3eb5fe1eb7 - status: 200 OK - code: 200 - duration: 82.458189ms - - 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/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/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:43 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1b009732-aa77-434e-9bea-2aa4e4d5d0c7 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 100.705847ms - - 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/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1845 - uncompressed: false - 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: - - "1845" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a1fcdc0c-4715-4fd9-970b-ee6a2f2c22e0 - status: 200 OK - code: 200 - duration: 117.905107ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1845 - uncompressed: false - 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: - - "1845" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d0eecc3a-1c3c-4ebf-8017-dc650add2648 - status: 200 OK - code: 200 - duration: 146.074506ms - - 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/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c - 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": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e44f791f-253d-40ba-878b-4d78a62f49e6 - status: 404 Not Found - code: 404 - duration: 27.10509ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b7db242d-43d4-4641-82d7-e1b703707b9e - status: 200 OK - code: 200 - duration: 100.986612ms - - 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/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/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:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0c4f2490-18fb-43f9-8881-7acb7b9de36f - status: 200 OK - code: 200 - duration: 113.48434ms - - 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/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/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:43 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ff9e9f6a-7387-4cd5-8d0b-84d7586061a8 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 112.416444ms - - 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/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1885 - uncompressed: false - 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: - - "1885" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f6dd1130-3391-4f77-bc81-9c9ffb4ebbb9 - status: 200 OK - code: 200 - duration: 155.289146ms - - 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/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1845 - uncompressed: false - 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: - - "1845" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dd5a9ba8-66d6-4595-9892-667b9bfdcb70 - status: 200 OK - code: 200 - duration: 146.12438ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bb546a25-87e7-447a-9948-ea95e9f836ca - status: 200 OK - code: 200 - duration: 105.872909ms - - id: 39 - 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/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bee19097-94cf-417d-b88f-1809bdc9cded - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e14517d7-b33d-4e93-8792-86031a22624d - status: 202 Accepted - code: 202 - duration: 244.078583ms - - 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/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1821 - uncompressed: false - 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: - - "1821" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 07cb7c90-73e9-4f23-8774-62bc5a15d061 - status: 200 OK - code: 200 - duration: 157.789431ms - - 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/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2001 - uncompressed: false - 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: - - "2001" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b54ca7dc-9c10-4dbf-85d9-a6ce369f0818 - status: 200 OK - code: 200 - duration: 147.462395ms - - id: 42 - 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/77deaee2-33d4-44f8-8d1b-5ca01bbc4687/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/43a8e107-c5ff-4b20-a0eb-d0125e4a50f0 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3263e045-c233-4a91-ad71-f81b1357fac7 - status: 202 Accepted - code: 202 - duration: 287.1754ms - - 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/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1918 - uncompressed: false - 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: - - "1918" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e51a69cb-1212-4857-adf5-1321c0d16f26 - status: 200 OK - code: 200 - duration: 129.428956ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1918 - uncompressed: false - 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: - - "1918" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3c8f339b-79ee-4fde-9455-599f5a334f08 - status: 200 OK - code: 200 - duration: 141.069544ms - - 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/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1964 - uncompressed: false - 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: - - "1964" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bd071d50-22af-46dd-9acd-6acd2eb1563c - status: 200 OK - code: 200 - duration: 190.343639ms - - 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/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 - 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": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f5ff4d7f-72f8-4af6-81ab-a6805f881b5f - status: 404 Not Found - code: 404 - duration: 46.363543ms - - 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/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c - 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": "3e3a0f1a-3cc3-41b6-a148-2f03370b493c"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6438169e-315e-43f8-9ed5-4c67b8f52ff1 - status: 404 Not Found - code: 404 - duration: 27.674626ms - - id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d1bc4a3f-8845-42bd-8c9c-70d44676929a - status: 200 OK - code: 200 - duration: 88.9805ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3e3a0f1a-3cc3-41b6-a148-2f03370b493c - 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:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 355822a1-01fe-445f-bcee-a273857743e9 - status: 204 No Content - code: 204 - duration: 146.31741ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77deaee2-33d4-44f8-8d1b-5ca01bbc4687 - 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": "77deaee2-33d4-44f8-8d1b-5ca01bbc4687"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c355dd75-d777-4a81-bc3a-6f6ea9997065 - status: 404 Not Found - code: 404 - duration: 70.004418ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:09 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 74a74dac-f171-413e-91bd-43576789d55f + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 36.668861ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:09 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e1caeef9-38d0-4c07-9fb8-2b8605585f3c + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 103.260669ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1cfbfbb6-8674-4e10-a81e-3ef4ed04e734 + status: 200 OK + code: 200 + duration: 37.933614ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 298 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-elated-yalow\",\"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\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1838 + body: "{\"server\": {\"id\": \"eee605c4-9182-4d10-8e98-f051921aa153\", \"name\": \"tf-srv-elated-yalow\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-elated-yalow\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_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\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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:6c:c7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:10.053043+00:00\", \"modification_date\": \"2025-10-30T15:42:10.053043+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1838" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:10 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 167ee2a5-2866-4ce5-a797-a64f7d177455 + status: 201 Created + code: 201 + duration: 1.241627483s +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1792 + body: "{\"server\": {\"id\": \"eee605c4-9182-4d10-8e98-f051921aa153\", \"name\": \"tf-srv-elated-yalow\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-elated-yalow\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_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\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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:6c:c7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:10.053043+00:00\", \"modification_date\": \"2025-10-30T15:42:10.053043+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 36b18c52-0ad5-4185-b5d7-920345dc85d4 + status: 200 OK + code: 200 + duration: 149.133634ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1792 + body: "{\"server\": {\"id\": \"eee605c4-9182-4d10-8e98-f051921aa153\", \"name\": \"tf-srv-elated-yalow\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-elated-yalow\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_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\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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:6c:c7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:10.053043+00:00\", \"modification_date\": \"2025-10-30T15:42:10.053043+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dda6a5ad-aecc-431e-b82f-2563b53a87e8 + status: 200 OK + code: 200 + duration: 145.935665ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1838 + body: "{\"server\": {\"id\": \"eee605c4-9182-4d10-8e98-f051921aa153\", \"name\": \"tf-srv-elated-yalow\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-elated-yalow\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_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\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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:6c:c7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:10.053043+00:00\", \"modification_date\": \"2025-10-30T15:42:10.053043+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1838" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a17de4e8-b5c4-44a8-8b8a-bdbc160562ef + status: 200 OK + code: 200 + duration: 125.256817ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0bc559db-5ec2-4a69-aea9-4224af93816b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a8a0ff6a-22ec-449e-b5dd-ef02cae94050 + status: 404 Not Found + code: 404 + duration: 43.14039ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0bc559db-5ec2-4a69-aea9-4224af93816b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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-30T15:42:10.196244Z\", \"updated_at\":\"2025-10-30T15:42:10.196244Z\", \"references\":[{\"id\":\"06f5608f-6e83-440f-9227-948a9b24efb7\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"eee605c4-9182-4d10-8e98-f051921aa153\", \"created_at\":\"2025-10-30T15:42:10.196244Z\", \"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: + - Thu, 30 Oct 2025 15:42:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1f1eccf6-95c9-48d3-a9fc-62797162ba00 + status: 200 OK + code: 200 + duration: 87.675966ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 40c871be-5a4f-4cb4-af16-9c41e7ebf20f + status: 200 OK + code: 200 + duration: 97.630919ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:11 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fcc517b4-3edb-4c65-984e-cb69fb3382ed + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 113.58751ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1838 + body: "{\"server\": {\"id\": \"eee605c4-9182-4d10-8e98-f051921aa153\", \"name\": \"tf-srv-elated-yalow\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-elated-yalow\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_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\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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:6c:c7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:10.053043+00:00\", \"modification_date\": \"2025-10-30T15:42:10.053043+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1838" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 29830586-d305-4952-95cf-9f132e85f4d9 + status: 200 OK + code: 200 + duration: 157.344225ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1792 + body: "{\"server\": {\"id\": \"eee605c4-9182-4d10-8e98-f051921aa153\", \"name\": \"tf-srv-elated-yalow\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-elated-yalow\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_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\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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:6c:c7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:10.053043+00:00\", \"modification_date\": \"2025-10-30T15:42:10.053043+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 134045d3-1024-40b0-83a5-f96b0aff28f9 + status: 200 OK + code: 200 + duration: 128.454967ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0bc559db-5ec2-4a69-aea9-4224af93816b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 05d050c1-23c2-4a4a-9e9a-9dc2b8fd912b + status: 404 Not Found + code: 404 + duration: 23.486725ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0bc559db-5ec2-4a69-aea9-4224af93816b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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-30T15:42:10.196244Z\", \"updated_at\":\"2025-10-30T15:42:10.196244Z\", \"references\":[{\"id\":\"06f5608f-6e83-440f-9227-948a9b24efb7\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"eee605c4-9182-4d10-8e98-f051921aa153\", \"created_at\":\"2025-10-30T15:42:10.196244Z\", \"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: + - Thu, 30 Oct 2025 15:42:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 77a31bcb-56e3-47f8-9369-2bf357c77543 + status: 200 OK + code: 200 + duration: 107.839228ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d83af0a4-84b3-404c-8c71-3ed11ec22474 + status: 200 OK + code: 200 + duration: 113.412552ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:12 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 29507804-ee54-4456-91ca-63988377f022 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 105.805954ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1792 + body: "{\"server\": {\"id\": \"eee605c4-9182-4d10-8e98-f051921aa153\", \"name\": \"tf-srv-elated-yalow\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-elated-yalow\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_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\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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:6c:c7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:10.053043+00:00\", \"modification_date\": \"2025-10-30T15:42:10.053043+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 68bef6a2-f2e8-419e-8bde-d2a56ebd0b36 + status: 200 OK + code: 200 + duration: 135.890704ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0bc559db-5ec2-4a69-aea9-4224af93816b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 47244d23-c4e4-4f96-9c03-6b7d986e6d26 + status: 404 Not Found + code: 404 + duration: 28.998303ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0bc559db-5ec2-4a69-aea9-4224af93816b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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-30T15:42:10.196244Z\", \"updated_at\":\"2025-10-30T15:42:10.196244Z\", \"references\":[{\"id\":\"06f5608f-6e83-440f-9227-948a9b24efb7\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"eee605c4-9182-4d10-8e98-f051921aa153\", \"created_at\":\"2025-10-30T15:42:10.196244Z\", \"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: + - Thu, 30 Oct 2025 15:42:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 52380e84-ad89-4230-a1af-6e58710da8ec + status: 200 OK + code: 200 + duration: 90.637151ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a4fb1e93-a3bb-451d-b280-13344a6aaadc + status: 200 OK + code: 200 + duration: 103.227067ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:12 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c8e14bed-3194-4850-a9f4-2226db530d44 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 107.00366ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1792 + body: "{\"server\": {\"id\": \"eee605c4-9182-4d10-8e98-f051921aa153\", \"name\": \"tf-srv-elated-yalow\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-elated-yalow\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_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\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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:6c:c7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:10.053043+00:00\", \"modification_date\": \"2025-10-30T15:42:10.053043+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ad2d7ff2-cf5a-41ad-b4e5-8bff88406b6b + status: 200 OK + code: 200 + duration: 141.593582ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 107 + host: api.scaleway.com + body: "{\"volumes\":{\"0\":{\"id\":\"0bc559db-5ec2-4a69-aea9-4224af93816b\",\"boot\":false,\"name\":\"tf-vol-naughty-curran\"}}}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1839 + body: "{\"server\": {\"id\": \"eee605c4-9182-4d10-8e98-f051921aa153\", \"name\": \"tf-srv-elated-yalow\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-elated-yalow\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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:6c:c7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:10.053043+00:00\", \"modification_date\": \"2025-10-30T15:42:13.270713+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1839" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4275787a-a416-4081-b5a9-87b49460dd6e + status: 200 OK + code: 200 + duration: 260.620615ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1793 + body: "{\"server\": {\"id\": \"eee605c4-9182-4d10-8e98-f051921aa153\", \"name\": \"tf-srv-elated-yalow\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-elated-yalow\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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:6c:c7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:10.053043+00:00\", \"modification_date\": \"2025-10-30T15:42:13.270713+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1793" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a361088a-60a6-4907-961b-e59076fd3002 + status: 200 OK + code: 200 + duration: 124.934154ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1793 + body: "{\"server\": {\"id\": \"eee605c4-9182-4d10-8e98-f051921aa153\", \"name\": \"tf-srv-elated-yalow\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-elated-yalow\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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:6c:c7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:10.053043+00:00\", \"modification_date\": \"2025-10-30T15:42:13.270713+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1793" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c9dcac09-829b-4797-b777-79615a3caa0f + status: 200 OK + code: 200 + duration: 132.200843ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0bc559db-5ec2-4a69-aea9-4224af93816b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6bfe47cb-9cea-45b1-aca4-306c4af0ed54 + status: 404 Not Found + code: 404 + duration: 26.546744ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0bc559db-5ec2-4a69-aea9-4224af93816b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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-30T15:42:10.196244Z\", \"updated_at\":\"2025-10-30T15:42:10.196244Z\", \"references\":[{\"id\":\"06f5608f-6e83-440f-9227-948a9b24efb7\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"eee605c4-9182-4d10-8e98-f051921aa153\", \"created_at\":\"2025-10-30T15:42:10.196244Z\", \"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: + - Thu, 30 Oct 2025 15:42:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4bdcea1d-8c1e-48a8-9e94-4a4a70f73ed1 + status: 200 OK + code: 200 + duration: 79.523626ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 016b6556-352a-4e5f-a582-d6093b6ab8ac + status: 200 OK + code: 200 + duration: 94.646371ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:13 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c5b98b4d-3c68-4452-b6c7-66c71e738bbc + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 91.613182ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1793 + body: "{\"server\": {\"id\": \"eee605c4-9182-4d10-8e98-f051921aa153\", \"name\": \"tf-srv-elated-yalow\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-elated-yalow\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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:6c:c7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:10.053043+00:00\", \"modification_date\": \"2025-10-30T15:42:13.270713+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1793" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7ede2f50-ce37-4d04-8bd8-cbb82a838c2e + status: 200 OK + code: 200 + duration: 176.065301ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1793 + body: "{\"server\": {\"id\": \"eee605c4-9182-4d10-8e98-f051921aa153\", \"name\": \"tf-srv-elated-yalow\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-elated-yalow\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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:6c:c7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:10.053043+00:00\", \"modification_date\": \"2025-10-30T15:42:13.270713+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1793" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c62aec10-6c9a-40fb-b231-8e4fc28c8cd0 + status: 200 OK + code: 200 + duration: 148.442459ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0bc559db-5ec2-4a69-aea9-4224af93816b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 75803087-92f0-4677-a488-2e141ce29199 + status: 404 Not Found + code: 404 + duration: 33.595156ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0bc559db-5ec2-4a69-aea9-4224af93816b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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-30T15:42:10.196244Z\", \"updated_at\":\"2025-10-30T15:42:10.196244Z\", \"references\":[{\"id\":\"06f5608f-6e83-440f-9227-948a9b24efb7\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"eee605c4-9182-4d10-8e98-f051921aa153\", \"created_at\":\"2025-10-30T15:42:10.196244Z\", \"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: + - Thu, 30 Oct 2025 15:42:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f44a753a-6c06-4e1a-8293-f9fdbf0e3c33 + status: 200 OK + code: 200 + duration: 93.411345ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b5fb939a-26cd-4880-9d3e-5d517ac609d1 + status: 200 OK + code: 200 + duration: 80.964719ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:14 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 51ab33ed-fd3a-4a1a-9c87-95b1aa9288cd + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 103.771297ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1839 + body: "{\"server\": {\"id\": \"eee605c4-9182-4d10-8e98-f051921aa153\", \"name\": \"tf-srv-elated-yalow\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-elated-yalow\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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:6c:c7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:10.053043+00:00\", \"modification_date\": \"2025-10-30T15:42:13.270713+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1839" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b096ad08-30e1-4d03-af8a-59060c74bf7e + status: 200 OK + code: 200 + duration: 161.258008ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1793 + body: "{\"server\": {\"id\": \"eee605c4-9182-4d10-8e98-f051921aa153\", \"name\": \"tf-srv-elated-yalow\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-elated-yalow\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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:6c:c7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:10.053043+00:00\", \"modification_date\": \"2025-10-30T15:42:13.270713+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1793" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1c96b724-db77-4153-9e09-67fbc01908df + status: 200 OK + code: 200 + duration: 148.787296ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0bc559db-5ec2-4a69-aea9-4224af93816b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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-30T15:42:10.196244Z\", \"updated_at\":\"2025-10-30T15:42:10.196244Z\", \"references\":[{\"id\":\"06f5608f-6e83-440f-9227-948a9b24efb7\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"eee605c4-9182-4d10-8e98-f051921aa153\", \"created_at\":\"2025-10-30T15:42:10.196244Z\", \"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: + - Thu, 30 Oct 2025 15:42:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e3b6742c-cced-49e7-b0dc-8bb8644e3339 + status: 200 OK + code: 200 + duration: 81.908168ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"6d597cd4-cd56-4b80-8686-30cb2d031998\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/eee605c4-9182-4d10-8e98-f051921aa153/action\", \"href_result\": \"/servers/eee605c4-9182-4d10-8e98-f051921aa153\", \"started_at\": \"2025-10-30T15:42:15.639204+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:15 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6d597cd4-cd56-4b80-8686-30cb2d031998 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9b1ba5f2-8618-4e0e-bc4e-02fb1d23270b + status: 202 Accepted + code: 202 + duration: 249.37921ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1815 + body: "{\"server\": {\"id\": \"eee605c4-9182-4d10-8e98-f051921aa153\", \"name\": \"tf-srv-elated-yalow\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-elated-yalow\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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:6c:c7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:10.053043+00:00\", \"modification_date\": \"2025-10-30T15:42:15.457826+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: + - "1815" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bf2f1b88-2abc-4808-9394-9b227a9e0ff1 + status: 200 OK + code: 200 + duration: 147.028187ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1949 + body: "{\"server\": {\"id\": \"eee605c4-9182-4d10-8e98-f051921aa153\", \"name\": \"tf-srv-elated-yalow\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-elated-yalow\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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:6c:c7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:10.053043+00:00\", \"modification_date\": \"2025-10-30T15:42:18.272676+00:00\", \"bootscript\": 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\": \"501\", \"node_id\": \"12\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 33356505-749d-474b-bd3f-2403e4394152 + status: 200 OK + code: 200 + duration: 177.837569ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"66d5d87b-7592-4a64-8553-90e74e4a35df\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/eee605c4-9182-4d10-8e98-f051921aa153/action\", \"href_result\": \"/servers/eee605c4-9182-4d10-8e98-f051921aa153\", \"started_at\": \"2025-10-30T15:42:21.276048+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:21 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/66d5d87b-7592-4a64-8553-90e74e4a35df + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1b4254c5-bdc2-43f8-a560-fd1891b4e3b4 + status: 202 Accepted + code: 202 + duration: 306.066144ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1958 + body: "{\"server\": {\"id\": \"eee605c4-9182-4d10-8e98-f051921aa153\", \"name\": \"tf-srv-elated-yalow\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-elated-yalow\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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:6c:c7\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:10.053043+00:00\", \"modification_date\": \"2025-10-30T15:42:21.030469+00:00\", \"bootscript\": 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\": \"501\", \"node_id\": \"12\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 231bc168-a77c-48fb-8157-ea79c618aadc + status: 200 OK + code: 200 + duration: 137.292767ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"eee605c4-9182-4d10-8e98-f051921aa153\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aa414530-45f9-432a-9532-9aa145ecf2b6 + status: 404 Not Found + code: 404 + duration: 39.806016ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0bc559db-5ec2-4a69-aea9-4224af93816b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"0bc559db-5ec2-4a69-aea9-4224af93816b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 112f7675-4e6b-4cd7-8dd9-ee7db1f6433b + status: 404 Not Found + code: 404 + duration: 33.62341ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0bc559db-5ec2-4a69-aea9-4224af93816b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"0bc559db-5ec2-4a69-aea9-4224af93816b\", \"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-30T15:42:10.196244Z\", \"updated_at\":\"2025-10-30T15:42:22.640081Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:22.640081Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 62fd68d1-7231-4639-a78e-3f3c5839198c + status: 200 OK + code: 200 + duration: 86.339933ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0bc559db-5ec2-4a69-aea9-4224af93816b + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b2a90971-7cfd-4418-8646-5dfaebe9ebde + status: 204 No Content + code: 204 + duration: 157.832005ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eee605c4-9182-4d10-8e98-f051921aa153 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"eee605c4-9182-4d10-8e98-f051921aa153\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5faf2ab3-be34-47ea-9a47-5337dcffaa50 + status: 404 Not Found + code: 404 + duration: 51.993177ms 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 5d17d8652..30e1dbd03 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 @@ -1,3650 +1,2881 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5fb6945a-7104-47a2-b99f-1e2563d5564b - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 45.719488ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d0448e21-6684-4bf1-9fa8-b2ad54a164ff - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 43.244751ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f437f9aa-03a3-4049-bd51-a4c4037c7e7b - status: 200 OK - code: 200 - duration: 41.441199ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 315 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-tests-instance-root-volume-from-external-snapshot","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false,"size":50000000000,"volume_type":"sbs_volume"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1854 - uncompressed: false - 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: - - "1854" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:05 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 427f7f78-83b2-4892-a0f2-455a7c6e32fe - status: 201 Created - code: 201 - duration: 1.111996947s - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1808 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 428612e7-effc-4cf0-a193-09d0c22cf617 - status: 200 OK - code: 200 - duration: 128.12773ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1808 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 04edb49b-87c9-42d0-ae04-728fa6e289ec - status: 200 OK - code: 200 - duration: 133.824811ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 18 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"perf_iops":5000}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c68cfcda-9e05-42ce-bb4b-83dbd9922cef - status: 200 OK - code: 200 - duration: 112.681697ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1854 - uncompressed: false - 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: - - "1854" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f580698c-b878-433b-96ea-0c24dd81fb26 - status: 200 OK - code: 200 - duration: 144.137394ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a9e832cf-45f7-47d4-8266-b4fca5455388 - status: 200 OK - code: 200 - duration: 82.069978ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweron"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:06 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/48f742bc-7597-4c66-b9ad-2850c2a7b564 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 32dd319a-5040-42e7-ac19-284ea42d2c9c - status: 202 Accepted - code: 202 - duration: 447.040476ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1876 - uncompressed: false - 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: - - "1876" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0cf2daf0-99fb-4bda-894c-b934a7e99d27 - status: 200 OK - code: 200 - duration: 138.809752ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2011 - uncompressed: false - 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: - - "2011" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f898ad56-4a74-4984-841c-be01aadaaddc - status: 200 OK - code: 200 - duration: 160.447675ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2011 - uncompressed: false - 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: - - "2011" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ae736e3f-c8ea-4bc3-9f52-7df7e737d43e - status: 200 OK - code: 200 - duration: 139.734344ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca - 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": "5254dc93-fbc2-4095-8997-689bdf3ccfca"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3deae7f2-45c1-423f-a542-3df5ec699b2b - status: 404 Not Found - code: 404 - duration: 25.158042ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 74986503-7132-4b5e-850e-36d58e8111e2 - status: 200 OK - code: 200 - duration: 103.723218ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b/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:54:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d48aac5a-8cfb-4857-ad42-8c779812f7ef - status: 200 OK - code: 200 - duration: 114.713007ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b/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:54:12 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 84e89f27-63af-4894-acad-7705f589ff6d - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 112.736111ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 152 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 479 - uncompressed: false - 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: - - "479" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - eb05d2ec-d9b9-4c81-a142-49f45a295190 - status: 200 OK - code: 200 - duration: 355.528209ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e9ade92e-d2a0-4bc0-ad49-0381beef6a90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 710 - uncompressed: false - 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: - - "710" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 78132dad-f0de-4ad5-b99c-e512e2409083 - status: 200 OK - code: 200 - duration: 235.700788ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e9ade92e-d2a0-4bc0-ad49-0381beef6a90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 480 - uncompressed: false - 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: - - "480" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9093a18b-6484-4fde-9dfe-5c58f55410d9 - status: 200 OK - code: 200 - duration: 538.240392ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e9ade92e-d2a0-4bc0-ad49-0381beef6a90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 480 - uncompressed: false - 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: - - "480" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 26119b33-6711-42d7-a4a0-74b2d15b90f3 - status: 200 OK - code: 200 - duration: 428.5938ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1965 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 34f84736-1c55-4486-a0a6-b2968b3b3c94 - status: 200 OK - code: 200 - duration: 147.076225ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca - 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": "5254dc93-fbc2-4095-8997-689bdf3ccfca"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e2058e1f-4fca-4543-83ef-aa42dbfbd944 - status: 404 Not Found - code: 404 - duration: 113.054126ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e6d01321-94fc-4293-a5b2-7c61c8cd80f6 - status: 200 OK - code: 200 - duration: 99.635213ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b/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:54:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f73caff6-f32f-41e3-a374-62486be1290f - status: 200 OK - code: 200 - duration: 103.748776ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b/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:54:46 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9bc074d4-48ab-44eb-867d-4fc3dcdafab8 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 184.185359ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e9ade92e-d2a0-4bc0-ad49-0381beef6a90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 480 - uncompressed: false - 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: - - "480" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9cdf21ad-7dc0-4556-8cfd-1f68eb72738b - status: 200 OK - code: 200 - duration: 424.873585ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1965 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e1a8aeae-0865-4813-b6a9-fb42178c0dc8 - status: 200 OK - code: 200 - duration: 154.815989ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca - 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": "5254dc93-fbc2-4095-8997-689bdf3ccfca"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8c22cdba-66ee-4311-9799-529421bfe9bd - status: 404 Not Found - code: 404 - duration: 35.709886ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 81865177-e664-4abb-970d-cd9db63a4457 - status: 200 OK - code: 200 - duration: 76.195232ms - - 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/b57275a4-7953-432e-9d54-556db2e0b80b/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:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0f0e6724-3ee6-44df-b2e1-04dcdfb10a03 - status: 200 OK - code: 200 - duration: 85.080146ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b/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:54:47 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 53192183-9fa7-4f4e-bfc8-385a473c8adc - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 109.792367ms - - 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/block/v1alpha1/zones/fr-par-1/snapshots/e9ade92e-d2a0-4bc0-ad49-0381beef6a90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 480 - uncompressed: false - 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: - - "480" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 29a33583-b8c1-4833-b5b4-0b096716f1c7 - status: 200 OK - code: 200 - duration: 294.793933ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 198 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+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: 456 - uncompressed: false - 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: - - "456" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c77a6715-994c-4f53-b04a-0677fcd54d75 - status: 200 OK - code: 200 - duration: 767.864426ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 456 - uncompressed: false - 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: - - "456" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 38924eeb-d7f7-4f40-81ba-991e9e7cbe4b - status: 200 OK - code: 200 - duration: 72.505234ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 457 - uncompressed: false - 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: - - "457" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8f728074-6036-4204-b4d3-d4c5f6571d9a - status: 200 OK - code: 200 - duration: 79.949644ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 457 - uncompressed: false - 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: - - "457" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a9c8e8cd-5abb-45cf-822a-04555517c616 - status: 200 OK - code: 200 - duration: 85.196285ms - - 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/block/v1alpha1/zones/fr-par-1/snapshots/e9ade92e-d2a0-4bc0-ad49-0381beef6a90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 480 - uncompressed: false - 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: - - "480" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a0bfb22d-b85c-4834-9ee2-870196ff4e9b - status: 200 OK - code: 200 - duration: 143.057534ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3c82e3eb-afac-49f1-920a-6093ba008758 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 45.01636ms - - 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: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4c6f8658-9f36-4ba7-8ab0-2c3311862732 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 43.191257ms - - id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 295 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-tests-instance-root-volume-from-external-snapshot-2","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","volumes":{"0":{"id":"82b5413d-0df7-47cc-a307-cf29c868b435","boot":false,"volume_type":"sbs_volume"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1286 - uncompressed: false - 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: - - "1286" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2a3c7686-eca5-4e71-b90b-1e6e087c8c05 - status: 201 Created - code: 201 - duration: 894.079681ms - - 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/2974301b-c0fa-42ae-81f9-d0281f1da648 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1240 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 30d9ae67-5ce1-4c30-90eb-d0d1009dd371 - status: 200 OK - code: 200 - duration: 155.651074ms - - 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/2974301b-c0fa-42ae-81f9-d0281f1da648 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1240 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 848153da-2331-4b2d-b9bb-8093b70480a2 - status: 200 OK - code: 200 - duration: 141.362115ms - - id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - 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: - - "689" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 226d6372-314c-4d13-8411-9b323f7480b6 - status: 200 OK - code: 200 - duration: 79.401258ms - - id: 44 - 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/2974301b-c0fa-42ae-81f9-d0281f1da648/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a54c99c7-f046-4d0f-bdcb-d7025d744511 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0022274d-eefb-4a8f-8be4-4eab3721a280 - status: 202 Accepted - code: 202 - duration: 263.127734ms - - 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/2974301b-c0fa-42ae-81f9-d0281f1da648 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1262 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0683221d-45c9-438e-83e5-a9c55302620e - status: 200 OK - code: 200 - duration: 148.318072ms - - 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/2974301b-c0fa-42ae-81f9-d0281f1da648 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1442 - uncompressed: false - 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: - - "1442" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 040d66e0-0a81-447d-8921-d56fa4c51eba - status: 200 OK - code: 200 - duration: 191.520863ms - - 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/2974301b-c0fa-42ae-81f9-d0281f1da648 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1442 - uncompressed: false - 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: - - "1442" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fabae004-8530-4d93-bb89-ff10dac455f0 - status: 200 OK - code: 200 - duration: 162.283509ms - - 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/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 - 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": "82b5413d-0df7-47cc-a307-cf29c868b435"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cbda85e2-056b-4722-9e06-3f723a4bc43a - status: 404 Not Found - code: 404 - duration: 35.362909ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - 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: - - "689" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b886381a-7832-4078-9a7a-d92f645e2315 - status: 200 OK - code: 200 - duration: 84.792472ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648/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:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ccdb955a-b682-42ad-87fe-227142fc1506 - status: 200 OK - code: 200 - duration: 98.870868ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648/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:55:01 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c4d734dd-266c-448b-915f-ceb318d08751 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 102.038782ms - - 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/b57275a4-7953-432e-9d54-556db2e0b80b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2011 - uncompressed: false - 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: - - "2011" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f0464703-4e9d-4cab-9740-a36b46aadd0d - status: 200 OK - code: 200 - duration: 156.596225ms - - 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/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca - 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": "5254dc93-fbc2-4095-8997-689bdf3ccfca"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1fb28929-0931-4bb4-a766-c8c83d8d2c55 - status: 404 Not Found - code: 404 - duration: 48.015479ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 342ef5fb-dfc2-462e-ac18-a119785037bd - status: 200 OK - code: 200 - duration: 98.430635ms - - 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/b57275a4-7953-432e-9d54-556db2e0b80b/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:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 54d6b59c-6ccc-4d20-8227-86ef5d0e6059 - status: 200 OK - code: 200 - duration: 106.968601ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b/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:55:02 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c6378c6d-5e14-47e0-b0ae-0ca3766820ac - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 113.974953ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e9ade92e-d2a0-4bc0-ad49-0381beef6a90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 480 - uncompressed: false - 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: - - "480" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b280c856-4f5f-4e98-8217-b3e6d6ca5f03 - status: 200 OK - code: 200 - duration: 262.843347ms - - id: 58 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - 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: - - "689" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6fbcbd9b-ddbd-4d82-a521-3ca071cfc10b - status: 200 OK - code: 200 - duration: 77.263463ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e9ade92e-d2a0-4bc0-ad49-0381beef6a90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 480 - uncompressed: false - 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: - - "480" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6628b6c7-0d57-480d-9551-dd4cfea9ccad - status: 200 OK - code: 200 - duration: 140.972669ms - - 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/2974301b-c0fa-42ae-81f9-d0281f1da648 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1442 - uncompressed: false - 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: - - "1442" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2f5af8f4-2b52-46f7-a3d7-7c01c07ad8ff - status: 200 OK - code: 200 - duration: 137.862603ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 - 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": "82b5413d-0df7-47cc-a307-cf29c868b435"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9082a0e7-7143-47e6-aafd-d75e8feeeb52 - status: 404 Not Found - code: 404 - duration: 24.533548ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 689 - uncompressed: false - 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: - - "689" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 061083e5-6e5a-4f75-8520-edc5e7bec1ec - status: 200 OK - code: 200 - duration: 83.087103ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648/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:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0c445b5d-e095-4de8-a88a-c7dbbbe57cbb - status: 200 OK - code: 200 - duration: 93.780369ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648/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:55:03 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 31d8adcd-5df1-4926-8b29-074d919d8975 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 100.385301ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1396 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fb923098-8063-4452-8b95-d8c72e69a853 - status: 200 OK - code: 200 - duration: 131.788074ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1396 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 95079297-8d28-48af-ab87-fab04348ed0c - status: 200 OK - code: 200 - duration: 128.725257ms - - id: 67 - 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/2974301b-c0fa-42ae-81f9-d0281f1da648/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a88c524b-c911-4817-be68-dc73aa2ada70 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2137dcee-ef1d-4edc-ad6a-f752f3ac944c - status: 202 Accepted - code: 202 - duration: 552.792815ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1405 - uncompressed: false - 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: - - "1405" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ef43b710-5380-4691-a702-ed8e40c5fa8f - status: 200 OK - code: 200 - duration: 161.211917ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648 - 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": "2974301b-c0fa-42ae-81f9-d0281f1da648"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 64efdbd4-8863-4b17-b9bd-519df690f3eb - status: 404 Not Found - code: 404 - duration: 37.089027ms - - 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/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 - 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": "82b5413d-0df7-47cc-a307-cf29c868b435"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8a8631f0-d910-4492-aa4d-01be0df1802d - status: 404 Not Found - code: 404 - duration: 26.817109ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 482 - uncompressed: false - 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: - - "482" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4dc3cc7b-e5c5-417c-9e6e-ea4f0ae87321 - status: 200 OK - code: 200 - duration: 100.427151ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 - 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:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f1eef881-21b1-4f84-9a69-66405aec40ba - status: 204 No Content - code: 204 - duration: 160.557675ms - - id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/82b5413d-0df7-47cc-a307-cf29c868b435 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"82b5413d-0df7-47cc-a307-cf29c868b435","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0405705f-9f29-425f-890b-d014ba80a73f - status: 404 Not Found - code: 404 - duration: 76.291337ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e9ade92e-d2a0-4bc0-ad49-0381beef6a90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 480 - uncompressed: false - 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: - - "480" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7c934a55-85c1-4de2-a054-f0fd74205a68 - status: 200 OK - code: 200 - duration: 247.03494ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/e9ade92e-d2a0-4bc0-ad49-0381beef6a90 - 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:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 68afa385-5287-4f03-b677-2f9652346889 - status: 204 No Content - code: 204 - duration: 331.640375ms - - 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/snapshots/e9ade92e-d2a0-4bc0-ad49-0381beef6a90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 129 - uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"e9ade92e-d2a0-4bc0-ad49-0381beef6a90","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 22d26d76-104f-4978-a096-595a227cf2ca - status: 404 Not Found - code: 404 - duration: 82.170551ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1965 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9a44c814-b392-44dd-a1ef-943dd51adbd5 - status: 200 OK - code: 200 - duration: 127.951802ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1965 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 624bc999-15e4-4d36-b67a-80480e1063c1 - status: 200 OK - code: 200 - duration: 149.769983ms - - id: 79 - 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/b57275a4-7953-432e-9d54-556db2e0b80b/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/080946be-2cf0-4ee3-bda6-ec1342420613 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8e356920-d72d-46b2-aaee-cb96fc6299c0 - status: 202 Accepted - code: 202 - duration: 291.569802ms - - 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/b57275a4-7953-432e-9d54-556db2e0b80b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1974 - uncompressed: false - 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: - - "1974" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fae0b753-94ca-4141-ae9e-c8e369db7fdb - status: 200 OK - code: 200 - duration: 115.020792ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b57275a4-7953-432e-9d54-556db2e0b80b - 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": "b57275a4-7953-432e-9d54-556db2e0b80b"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d6ac0e10-e3f5-4a19-8b2b-e716512740ff - status: 404 Not Found - code: 404 - duration: 50.247004ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca - 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": "5254dc93-fbc2-4095-8997-689bdf3ccfca"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7eaac6fb-696f-4582-95b0-c8c3e42fb7e1 - status: 404 Not Found - code: 404 - duration: 23.556962ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 498 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e7bb3ea7-e5e0-44aa-ad9e-9f27583a118a - status: 200 OK - code: 200 - duration: 92.54878ms - - id: 84 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5254dc93-fbc2-4095-8997-689bdf3ccfca - 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:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d2915c23-47aa-4e21-aa2f-df9d5cb7e048 - status: 204 No Content - code: 204 - duration: 150.092007ms - - 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/b57275a4-7953-432e-9d54-556db2e0b80b - 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": "b57275a4-7953-432e-9d54-556db2e0b80b"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 06316e8f-ad27-42f3-b3b5-b46f42e7d647 - status: 404 Not Found - code: 404 - duration: 63.126498ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2974301b-c0fa-42ae-81f9-d0281f1da648 - 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": "2974301b-c0fa-42ae-81f9-d0281f1da648"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 91b2ac04-eecb-4efd-9091-873ee7a880dc - status: 404 Not Found - code: 404 - duration: 43.518412ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ca4e287e-7323-49f0-8c93-81ee289258c1 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 74.560973ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9315c80f-6dec-4b27-a258-339ca7385359 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 75.7861ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/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 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 43ce8e0f-ce5b-4e87-8013-a686a3d8824e + status: 200 OK + code: 200 + duration: 51.846107ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 315 + host: api.scaleway.com + body: "{\"name\":\"tf-tests-instance-root-volume-from-external-snapshot\",\"dynamic_ip_required\":false,\"commercial_type\":\"PLAY2-PICO\",\"image\":\"6d3c053e-c728-4294-b23a-560b62a4d592\",\"volumes\":{\"0\":{\"boot\":false,\"size\":50000000000,\"volume_type\":\"sbs_volume\"}},\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1854 + body: "{\"server\": {\"id\": \"f470840e-427e-4e26-955f-6b9ea2f0f269\", \"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\": \"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ad\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.148664+00:00\", \"modification_date\": \"2025-10-30T15:41:51.148664+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1854" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eaacfaa6-ebb6-4f01-85c6-c85c358b662b + status: 201 Created + code: 201 + duration: 1.190551889s +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1808 + body: "{\"server\": {\"id\": \"f470840e-427e-4e26-955f-6b9ea2f0f269\", \"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\": \"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ad\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.148664+00:00\", \"modification_date\": \"2025-10-30T15:41:51.148664+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 75b38fad-4fb1-4373-b8b7-81ae24056bba + status: 200 OK + code: 200 + duration: 148.30341ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1854 + body: "{\"server\": {\"id\": \"f470840e-427e-4e26-955f-6b9ea2f0f269\", \"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\": \"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ad\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.148664+00:00\", \"modification_date\": \"2025-10-30T15:41:51.148664+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1854" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - af03111a-b5a7-4f43-9c30-317db9bd0ef5 + status: 200 OK + code: 200 + duration: 140.87619ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 18 + host: api.scaleway.com + body: "{\"perf_iops\":5000}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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-30T15:41:51.292051Z\", \"updated_at\":\"2025-10-30T15:41:51.292051Z\", \"references\":[{\"id\":\"6db043a0-b7dc-4f1f-a3b1-557dbf44e8a4\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"f470840e-427e-4e26-955f-6b9ea2f0f269\", \"created_at\":\"2025-10-30T15:41:51.292051Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ab7ca477-6389-4759-a890-e00282374c95 + status: 200 OK + code: 200 + duration: 115.025682ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1808 + body: "{\"server\": {\"id\": \"f470840e-427e-4e26-955f-6b9ea2f0f269\", \"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\": \"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:ad\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.148664+00:00\", \"modification_date\": \"2025-10-30T15:41:51.148664+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3835e8d1-e838-48a6-9352-764c0eac9bd8 + status: 200 OK + code: 200 + duration: 147.163472ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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-30T15:41:51.292051Z\", \"updated_at\":\"2025-10-30T15:41:51.292051Z\", \"references\":[{\"id\":\"6db043a0-b7dc-4f1f-a3b1-557dbf44e8a4\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"f470840e-427e-4e26-955f-6b9ea2f0f269\", \"created_at\":\"2025-10-30T15:41:51.292051Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 12fc0c01-f68e-4eea-8e55-922c28fe2b1b + status: 200 OK + code: 200 + duration: 93.236031ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"e2112a07-c985-44ae-9591-45d82a9cc391\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/f470840e-427e-4e26-955f-6b9ea2f0f269/action\", \"href_result\": \"/servers/f470840e-427e-4e26-955f-6b9ea2f0f269\", \"started_at\": \"2025-10-30T15:41:52.573714+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e2112a07-c985-44ae-9591-45d82a9cc391 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 496776be-03aa-4a25-8ebe-ec2823c47be8 + status: 202 Accepted + code: 202 + duration: 258.267389ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1830 + body: "{\"server\": {\"id\": \"f470840e-427e-4e26-955f-6b9ea2f0f269\", \"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\": \"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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:6c:ad\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.148664+00:00\", \"modification_date\": \"2025-10-30T15:41:52.366169+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: + - "1830" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 082d391d-3f2c-4203-9ccc-34b2627da8d6 + status: 200 OK + code: 200 + duration: 179.533369ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1965 + body: "{\"server\": {\"id\": \"f470840e-427e-4e26-955f-6b9ea2f0f269\", \"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\": \"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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:6c:ad\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.148664+00:00\", \"modification_date\": \"2025-10-30T15:41:55.080556+00:00\", \"bootscript\": 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\": \"1001\", \"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: + - "1965" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fdb1ecec-eb21-40c8-8420-fe1231f97066 + status: 200 OK + code: 200 + duration: 129.940158ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1965 + body: "{\"server\": {\"id\": \"f470840e-427e-4e26-955f-6b9ea2f0f269\", \"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\": \"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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:6c:ad\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.148664+00:00\", \"modification_date\": \"2025-10-30T15:41:55.080556+00:00\", \"bootscript\": 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\": \"1001\", \"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: + - "1965" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 43a5823d-445c-4fe1-b0f1-5ba3edad0d6e + status: 200 OK + code: 200 + duration: 163.337582ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 14d1524d-59d3-4855-90cf-9730d4c3b169 + status: 404 Not Found + code: 404 + duration: 33.726ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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-30T15:41:51.292051Z\", \"updated_at\":\"2025-10-30T15:41:51.292051Z\", \"references\":[{\"id\":\"6db043a0-b7dc-4f1f-a3b1-557dbf44e8a4\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"f470840e-427e-4e26-955f-6b9ea2f0f269\", \"created_at\":\"2025-10-30T15:41:51.292051Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3c15524c-f9ab-4ff7-9f3e-61966ddf4b37 + status: 200 OK + code: 200 + duration: 128.258545ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dbf27fdf-0270-4942-8f9f-cd9800ff4499 + status: 200 OK + code: 200 + duration: 112.008584ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 064978f1-1b66-46d7-963c-52e6b2fda483 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 96.126394ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 149 + host: api.scaleway.com + body: "{\"volume_id\":\"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\",\"name\":\"tf-snapshot-laughing-kare\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 476 + body: "{\"id\":\"a4d5f945-e4bb-4542-b0f2-a7702e6c9954\", \"name\":\"tf-snapshot-laughing-kare\", \"parent_volume\":{\"id\":\"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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-30T15:41:58.619610Z\", \"updated_at\":\"2025-10-30T15:41:58.619610Z\", \"references\":[], \"status\":\"creating\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "476" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 382ea6ad-aff9-46de-9a19-c62775446964 + status: 200 OK + code: 200 + duration: 481.437042ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/a4d5f945-e4bb-4542-b0f2-a7702e6c9954 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 707 + body: "{\"id\":\"a4d5f945-e4bb-4542-b0f2-a7702e6c9954\", \"name\":\"tf-snapshot-laughing-kare\", \"parent_volume\":{\"id\":\"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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-30T15:41:58.619610Z\", \"updated_at\":\"2025-10-30T15:41:58.619610Z\", \"references\":[{\"id\":\"eeec2282-79c1-4b4c-b1b1-90784e66a577\", \"product_resource_type\":\"internal\", \"product_resource_id\":\"00000000-0000-0000-0000-000000000000\", \"created_at\":\"2025-10-30T15:41:58.707810Z\", \"type\":\"unknown_type\", \"status\":\"attached\"}], \"status\":\"creating\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "707" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eee3b678-de1c-40e2-9666-b5219e1a9b76 + status: 200 OK + code: 200 + duration: 248.230897ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/a4d5f945-e4bb-4542-b0f2-a7702e6c9954 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 477 + body: "{\"id\":\"a4d5f945-e4bb-4542-b0f2-a7702e6c9954\", \"name\":\"tf-snapshot-laughing-kare\", \"parent_volume\":{\"id\":\"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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-30T15:41:58.619610Z\", \"updated_at\":\"2025-10-30T15:41:58.619610Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "477" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4c1ce1c1-3976-4841-961e-28772054a4ac + status: 200 OK + code: 200 + duration: 262.930758ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/a4d5f945-e4bb-4542-b0f2-a7702e6c9954 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 477 + body: "{\"id\":\"a4d5f945-e4bb-4542-b0f2-a7702e6c9954\", \"name\":\"tf-snapshot-laughing-kare\", \"parent_volume\":{\"id\":\"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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-30T15:41:58.619610Z\", \"updated_at\":\"2025-10-30T15:41:58.619610Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "477" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - faca9683-2a33-4ca3-bde8-8e2504aac4fa + status: 200 OK + code: 200 + duration: 236.214133ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2011 + body: "{\"server\": {\"id\": \"f470840e-427e-4e26-955f-6b9ea2f0f269\", \"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\": \"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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:6c:ad\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.148664+00:00\", \"modification_date\": \"2025-10-30T15:41:55.080556+00:00\", \"bootscript\": 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\": \"1001\", \"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, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2011" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b88987da-1db7-46d9-876e-9ae52ce44ddc + status: 200 OK + code: 200 + duration: 187.430467ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b83800e0-2e9e-42d1-894c-4799859ea9a2 + status: 404 Not Found + code: 404 + duration: 27.070689ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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-30T15:41:51.292051Z\", \"updated_at\":\"2025-10-30T15:41:51.292051Z\", \"references\":[{\"id\":\"6db043a0-b7dc-4f1f-a3b1-557dbf44e8a4\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"f470840e-427e-4e26-955f-6b9ea2f0f269\", \"created_at\":\"2025-10-30T15:41:51.292051Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c9fb2f5a-46c0-4b60-bd8d-0ba1304f459e + status: 200 OK + code: 200 + duration: 82.119568ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - de08f989-e279-414e-82c3-a5ba8d6a1c2a + status: 200 OK + code: 200 + duration: 103.21636ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:31 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 25494356-2c36-4d6d-b186-c0319fd7ee74 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 106.698602ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/a4d5f945-e4bb-4542-b0f2-a7702e6c9954 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 477 + body: "{\"id\":\"a4d5f945-e4bb-4542-b0f2-a7702e6c9954\", \"name\":\"tf-snapshot-laughing-kare\", \"parent_volume\":{\"id\":\"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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-30T15:41:58.619610Z\", \"updated_at\":\"2025-10-30T15:41:58.619610Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "477" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8647fba9-dae0-4eb0-b5ec-8a09971cb714 + status: 200 OK + code: 200 + duration: 191.455607ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2011 + body: "{\"server\": {\"id\": \"f470840e-427e-4e26-955f-6b9ea2f0f269\", \"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\": \"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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:6c:ad\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.148664+00:00\", \"modification_date\": \"2025-10-30T15:41:55.080556+00:00\", \"bootscript\": 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\": \"1001\", \"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, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2011" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0dde6ad0-c67f-4717-a292-043ed5a9fd93 + status: 200 OK + code: 200 + duration: 152.388757ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 69bd4c41-f14d-4e27-b96e-f481c969c41b + status: 404 Not Found + code: 404 + duration: 28.322737ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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-30T15:41:51.292051Z\", \"updated_at\":\"2025-10-30T15:41:51.292051Z\", \"references\":[{\"id\":\"6db043a0-b7dc-4f1f-a3b1-557dbf44e8a4\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"f470840e-427e-4e26-955f-6b9ea2f0f269\", \"created_at\":\"2025-10-30T15:41:51.292051Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 04771ce7-4018-4eb6-a97a-33ec0d9ed211 + status: 200 OK + code: 200 + duration: 85.812595ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5d74cf14-c3be-4777-8d6f-eb6c1cbeb442 + status: 200 OK + code: 200 + duration: 117.457775ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e0ac8caa-f386-4a2d-880a-9324924c090b + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 103.388553ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/a4d5f945-e4bb-4542-b0f2-a7702e6c9954 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 477 + body: "{\"id\":\"a4d5f945-e4bb-4542-b0f2-a7702e6c9954\", \"name\":\"tf-snapshot-laughing-kare\", \"parent_volume\":{\"id\":\"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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-30T15:41:58.619610Z\", \"updated_at\":\"2025-10-30T15:41:58.619610Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "477" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b0a89d93-3f90-4001-a795-0f6db0a37dca + status: 200 OK + code: 200 + duration: 500.928038ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 205 + host: api.scaleway.com + body: "{\"name\":\"tf-volume-infallible-ardinghelli\",\"perf_iops\":5000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"from_snapshot\":{\"size\":null,\"snapshot_id\":\"a4d5f945-e4bb-4542-b0f2-a7702e6c9954\"},\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+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 + content_length: 463 + body: "{\"id\":\"c78e1778-434a-452a-ab16-4b27ddd4d981\", \"name\":\"tf-volume-infallible-ardinghelli\", \"type\":\"sbs_5k\", \"size\":50000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:33.596897Z\", \"updated_at\":\"2025-10-30T15:42:33.596897Z\", \"references\":[], \"parent_snapshot_id\":\"a4d5f945-e4bb-4542-b0f2-a7702e6c9954\", \"status\":\"creating\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "463" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 567a0a62-7cb2-4c78-9032-e68eac21317d + status: 200 OK + code: 200 + duration: 571.765814ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c78e1778-434a-452a-ab16-4b27ddd4d981 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"id\":\"c78e1778-434a-452a-ab16-4b27ddd4d981\", \"name\":\"tf-volume-infallible-ardinghelli\", \"type\":\"sbs_5k\", \"size\":50000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:33.596897Z\", \"updated_at\":\"2025-10-30T15:42:33.596897Z\", \"references\":[], \"parent_snapshot_id\":\"a4d5f945-e4bb-4542-b0f2-a7702e6c9954\", \"status\":\"creating\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "463" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9fb3bf33-6578-4deb-80fc-a679580c747d + status: 200 OK + code: 200 + duration: 117.298896ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c78e1778-434a-452a-ab16-4b27ddd4d981 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 464 + body: "{\"id\":\"c78e1778-434a-452a-ab16-4b27ddd4d981\", \"name\":\"tf-volume-infallible-ardinghelli\", \"type\":\"sbs_5k\", \"size\":50000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:33.596897Z\", \"updated_at\":\"2025-10-30T15:42:33.596897Z\", \"references\":[], \"parent_snapshot_id\":\"a4d5f945-e4bb-4542-b0f2-a7702e6c9954\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "464" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 18d42768-e845-4365-9339-b3c443474ec0 + status: 200 OK + code: 200 + duration: 81.993122ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c78e1778-434a-452a-ab16-4b27ddd4d981 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 464 + body: "{\"id\":\"c78e1778-434a-452a-ab16-4b27ddd4d981\", \"name\":\"tf-volume-infallible-ardinghelli\", \"type\":\"sbs_5k\", \"size\":50000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:33.596897Z\", \"updated_at\":\"2025-10-30T15:42:33.596897Z\", \"references\":[], \"parent_snapshot_id\":\"a4d5f945-e4bb-4542-b0f2-a7702e6c9954\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "464" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bc51bff9-6106-4ab3-9908-bc644f2af2a2 + status: 200 OK + code: 200 + duration: 90.088457ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/a4d5f945-e4bb-4542-b0f2-a7702e6c9954 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 477 + body: "{\"id\":\"a4d5f945-e4bb-4542-b0f2-a7702e6c9954\", \"name\":\"tf-snapshot-laughing-kare\", \"parent_volume\":{\"id\":\"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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-30T15:41:58.619610Z\", \"updated_at\":\"2025-10-30T15:41:58.619610Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "477" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a1908291-9885-4f10-bc7d-a12a4db7d56c + status: 200 OK + code: 200 + duration: 250.279201ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 22b0b5e0-7ba0-4f91-b642-9a64405dbe52 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 36.066052ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 224bc988-0728-482b-8a48-66f798364815 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 64.307246ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 295 + host: api.scaleway.com + body: "{\"name\":\"tf-tests-instance-root-volume-from-external-snapshot-2\",\"dynamic_ip_required\":false,\"commercial_type\":\"PLAY2-PICO\",\"volumes\":{\"0\":{\"id\":\"c78e1778-434a-452a-ab16-4b27ddd4d981\",\"boot\":false,\"volume_type\":\"sbs_volume\"}},\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1240 + body: "{\"server\": {\"id\": \"eb89def8-9d1d-4379-9073-934c888249cb\", \"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\": \"c78e1778-434a-452a-ab16-4b27ddd4d981\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:df\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:40.157802+00:00\", \"modification_date\": \"2025-10-30T15:42:40.157802+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eb89def8-9d1d-4379-9073-934c888249cb + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6b6b1620-2c98-48f0-b068-d43f0b764d33 + status: 201 Created + code: 201 + duration: 788.380846ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eb89def8-9d1d-4379-9073-934c888249cb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1286 + body: "{\"server\": {\"id\": \"eb89def8-9d1d-4379-9073-934c888249cb\", \"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\": \"c78e1778-434a-452a-ab16-4b27ddd4d981\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:df\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:40.157802+00:00\", \"modification_date\": \"2025-10-30T15:42:40.157802+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1286" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f455c545-423e-4a0b-a3ee-226a2950efd6 + status: 200 OK + code: 200 + duration: 107.251952ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eb89def8-9d1d-4379-9073-934c888249cb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1286 + body: "{\"server\": {\"id\": \"eb89def8-9d1d-4379-9073-934c888249cb\", \"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\": \"c78e1778-434a-452a-ab16-4b27ddd4d981\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:df\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:40.157802+00:00\", \"modification_date\": \"2025-10-30T15:42:40.157802+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1286" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b0a5a0bf-0f87-411f-bfc5-db32902de792 + status: 200 OK + code: 200 + duration: 176.104345ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c78e1778-434a-452a-ab16-4b27ddd4d981 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 696 + body: "{\"id\":\"c78e1778-434a-452a-ab16-4b27ddd4d981\", \"name\":\"tf-volume-infallible-ardinghelli\", \"type\":\"sbs_5k\", \"size\":50000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:33.596897Z\", \"updated_at\":\"2025-10-30T15:42:40.168895Z\", \"references\":[{\"id\":\"b7e4b4b9-733c-4405-b03b-ccf60f48ded3\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"eb89def8-9d1d-4379-9073-934c888249cb\", \"created_at\":\"2025-10-30T15:42:40.168895Z\", \"type\":\"exclusive\", \"status\":\"attached\"}], \"parent_snapshot_id\":\"a4d5f945-e4bb-4542-b0f2-a7702e6c9954\", \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "696" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a727cf8c-45b4-49b5-9924-4f17e35329f4 + status: 200 OK + code: 200 + duration: 88.175739ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eb89def8-9d1d-4379-9073-934c888249cb/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"7b3ee1ec-6fe5-460e-8ba3-66ce3d999206\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/eb89def8-9d1d-4379-9073-934c888249cb/action\", \"href_result\": \"/servers/eb89def8-9d1d-4379-9073-934c888249cb\", \"started_at\": \"2025-10-30T15:42:41.013360+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7b3ee1ec-6fe5-460e-8ba3-66ce3d999206 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9ce2e8b9-c10c-41ea-b052-9c5e9ae8a113 + status: 202 Accepted + code: 202 + duration: 250.119611ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eb89def8-9d1d-4379-9073-934c888249cb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1262 + body: "{\"server\": {\"id\": \"eb89def8-9d1d-4379-9073-934c888249cb\", \"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\": \"c78e1778-434a-452a-ab16-4b27ddd4d981\", \"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:6c:df\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:40.157802+00:00\", \"modification_date\": \"2025-10-30T15:42:40.820427+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e7293ad3-3324-45d1-b80b-875067da00bb + status: 200 OK + code: 200 + duration: 193.835806ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eb89def8-9d1d-4379-9073-934c888249cb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1396 + body: "{\"server\": {\"id\": \"eb89def8-9d1d-4379-9073-934c888249cb\", \"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\": \"c78e1778-434a-452a-ab16-4b27ddd4d981\", \"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:6c:df\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:40.157802+00:00\", \"modification_date\": \"2025-10-30T15:42:44.105176+00:00\", \"bootscript\": 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\": \"501\", \"node_id\": \"112\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aea716c7-bdfe-4c16-b847-8966dfbac5ae + status: 200 OK + code: 200 + duration: 127.243464ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eb89def8-9d1d-4379-9073-934c888249cb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1396 + body: "{\"server\": {\"id\": \"eb89def8-9d1d-4379-9073-934c888249cb\", \"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\": \"c78e1778-434a-452a-ab16-4b27ddd4d981\", \"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:6c:df\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:40.157802+00:00\", \"modification_date\": \"2025-10-30T15:42:44.105176+00:00\", \"bootscript\": 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\": \"501\", \"node_id\": \"112\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f189ef15-a2ff-4c34-8daa-62e6dad7a40c + status: 200 OK + code: 200 + duration: 147.521531ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c78e1778-434a-452a-ab16-4b27ddd4d981 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"c78e1778-434a-452a-ab16-4b27ddd4d981\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f64ce4c4-f9b5-4244-9d13-dbfe4e525eef + status: 404 Not Found + code: 404 + duration: 55.354394ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c78e1778-434a-452a-ab16-4b27ddd4d981 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 696 + body: "{\"id\":\"c78e1778-434a-452a-ab16-4b27ddd4d981\", \"name\":\"tf-volume-infallible-ardinghelli\", \"type\":\"sbs_5k\", \"size\":50000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:33.596897Z\", \"updated_at\":\"2025-10-30T15:42:40.168895Z\", \"references\":[{\"id\":\"b7e4b4b9-733c-4405-b03b-ccf60f48ded3\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"eb89def8-9d1d-4379-9073-934c888249cb\", \"created_at\":\"2025-10-30T15:42:40.168895Z\", \"type\":\"exclusive\", \"status\":\"attached\"}], \"parent_snapshot_id\":\"a4d5f945-e4bb-4542-b0f2-a7702e6c9954\", \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "696" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c911ec45-2d10-40ec-8309-bea4236ddb27 + status: 200 OK + code: 200 + duration: 91.721852ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eb89def8-9d1d-4379-9073-934c888249cb/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 43f79f67-e7de-4fc6-bd00-8e5c44c953d5 + status: 200 OK + code: 200 + duration: 108.117757ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eb89def8-9d1d-4379-9073-934c888249cb/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d85d05d7-ceaf-477f-b78d-6fd8663636bb + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 106.815745ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1965 + body: "{\"server\": {\"id\": \"f470840e-427e-4e26-955f-6b9ea2f0f269\", \"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\": \"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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:6c:ad\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.148664+00:00\", \"modification_date\": \"2025-10-30T15:41:55.080556+00:00\", \"bootscript\": 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\": \"1001\", \"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: + - "1965" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4142609d-56a1-4ca7-b58e-4a7a5a6e9f56 + status: 200 OK + code: 200 + duration: 145.934084ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 65ce25f4-9e93-4f8c-b1a1-c15b7d732576 + status: 404 Not Found + code: 404 + duration: 29.812152ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: "{\"id\":\"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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-30T15:41:51.292051Z\", \"updated_at\":\"2025-10-30T15:41:51.292051Z\", \"references\":[{\"id\":\"6db043a0-b7dc-4f1f-a3b1-557dbf44e8a4\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"f470840e-427e-4e26-955f-6b9ea2f0f269\", \"created_at\":\"2025-10-30T15:41:51.292051Z\", \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e5fee5d2-1887-4aee-98ea-18ed87d3e1c1 + status: 200 OK + code: 200 + duration: 107.989006ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 327ef188-6b9e-4d59-a796-354504eef3f2 + status: 200 OK + code: 200 + duration: 121.591321ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6a3e9877-a13f-472a-a2b2-d05c48e59c41 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 94.597977ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/a4d5f945-e4bb-4542-b0f2-a7702e6c9954 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 477 + body: "{\"id\":\"a4d5f945-e4bb-4542-b0f2-a7702e6c9954\", \"name\":\"tf-snapshot-laughing-kare\", \"parent_volume\":{\"id\":\"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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-30T15:41:58.619610Z\", \"updated_at\":\"2025-10-30T15:41:58.619610Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "477" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fee351a6-bc0a-42c9-9038-57baf189f7d7 + status: 200 OK + code: 200 + duration: 317.799149ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c78e1778-434a-452a-ab16-4b27ddd4d981 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 696 + body: "{\"id\":\"c78e1778-434a-452a-ab16-4b27ddd4d981\", \"name\":\"tf-volume-infallible-ardinghelli\", \"type\":\"sbs_5k\", \"size\":50000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:33.596897Z\", \"updated_at\":\"2025-10-30T15:42:40.168895Z\", \"references\":[{\"id\":\"b7e4b4b9-733c-4405-b03b-ccf60f48ded3\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"eb89def8-9d1d-4379-9073-934c888249cb\", \"created_at\":\"2025-10-30T15:42:40.168895Z\", \"type\":\"exclusive\", \"status\":\"attached\"}], \"parent_snapshot_id\":\"a4d5f945-e4bb-4542-b0f2-a7702e6c9954\", \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "696" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 732de7d0-921d-41b9-8280-cfdd772f3b9c + status: 200 OK + code: 200 + duration: 68.113047ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/a4d5f945-e4bb-4542-b0f2-a7702e6c9954 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 477 + body: "{\"id\":\"a4d5f945-e4bb-4542-b0f2-a7702e6c9954\", \"name\":\"tf-snapshot-laughing-kare\", \"parent_volume\":{\"id\":\"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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-30T15:41:58.619610Z\", \"updated_at\":\"2025-10-30T15:41:58.619610Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "477" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6e694dbb-531d-4344-8244-abc47a544a46 + status: 200 OK + code: 200 + duration: 302.45164ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eb89def8-9d1d-4379-9073-934c888249cb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1442 + body: "{\"server\": {\"id\": \"eb89def8-9d1d-4379-9073-934c888249cb\", \"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\": \"c78e1778-434a-452a-ab16-4b27ddd4d981\", \"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:6c:df\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:40.157802+00:00\", \"modification_date\": \"2025-10-30T15:42:44.105176+00:00\", \"bootscript\": 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\": \"501\", \"node_id\": \"112\"}, \"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: + - "1442" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1f87d472-f020-4ee2-bb64-ab793139dcff + status: 200 OK + code: 200 + duration: 142.502276ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c78e1778-434a-452a-ab16-4b27ddd4d981 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"c78e1778-434a-452a-ab16-4b27ddd4d981\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4e2315cd-38e5-40d8-8571-2b17ce0a42f8 + status: 404 Not Found + code: 404 + duration: 33.236555ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c78e1778-434a-452a-ab16-4b27ddd4d981 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 696 + body: "{\"id\":\"c78e1778-434a-452a-ab16-4b27ddd4d981\", \"name\":\"tf-volume-infallible-ardinghelli\", \"type\":\"sbs_5k\", \"size\":50000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:33.596897Z\", \"updated_at\":\"2025-10-30T15:42:40.168895Z\", \"references\":[{\"id\":\"b7e4b4b9-733c-4405-b03b-ccf60f48ded3\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"eb89def8-9d1d-4379-9073-934c888249cb\", \"created_at\":\"2025-10-30T15:42:40.168895Z\", \"type\":\"exclusive\", \"status\":\"attached\"}], \"parent_snapshot_id\":\"a4d5f945-e4bb-4542-b0f2-a7702e6c9954\", \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "696" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9eb31ed5-1273-4c07-98c9-77bc5e154d95 + status: 200 OK + code: 200 + duration: 78.539344ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eb89def8-9d1d-4379-9073-934c888249cb/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f6de57bc-f7ed-4760-b26f-c606b9351fad + status: 200 OK + code: 200 + duration: 82.387854ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eb89def8-9d1d-4379-9073-934c888249cb/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b217e603-8e81-4781-8197-dd8511b23c1f + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 113.804224ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eb89def8-9d1d-4379-9073-934c888249cb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1396 + body: "{\"server\": {\"id\": \"eb89def8-9d1d-4379-9073-934c888249cb\", \"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\": \"c78e1778-434a-452a-ab16-4b27ddd4d981\", \"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:6c:df\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:40.157802+00:00\", \"modification_date\": \"2025-10-30T15:42:44.105176+00:00\", \"bootscript\": 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\": \"501\", \"node_id\": \"112\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 032783d4-7ff7-4742-a0b7-156ec6402fc5 + status: 200 OK + code: 200 + duration: 127.173483ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eb89def8-9d1d-4379-9073-934c888249cb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1396 + body: "{\"server\": {\"id\": \"eb89def8-9d1d-4379-9073-934c888249cb\", \"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\": \"c78e1778-434a-452a-ab16-4b27ddd4d981\", \"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:6c:df\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:40.157802+00:00\", \"modification_date\": \"2025-10-30T15:42:44.105176+00:00\", \"bootscript\": 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\": \"501\", \"node_id\": \"112\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d54f451e-1b7f-404c-9fa7-78065624373d + status: 200 OK + code: 200 + duration: 150.698431ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eb89def8-9d1d-4379-9073-934c888249cb/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"28ec2d2e-3190-4f5a-8d09-7f3367e62af1\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/eb89def8-9d1d-4379-9073-934c888249cb/action\", \"href_result\": \"/servers/eb89def8-9d1d-4379-9073-934c888249cb\", \"started_at\": \"2025-10-30T15:42:49.563562+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/28ec2d2e-3190-4f5a-8d09-7f3367e62af1 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 846ce5d6-8964-4b13-9b20-bc2dc98a3c27 + status: 202 Accepted + code: 202 + duration: 313.382835ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eb89def8-9d1d-4379-9073-934c888249cb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1359 + body: "{\"server\": {\"id\": \"eb89def8-9d1d-4379-9073-934c888249cb\", \"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\": \"c78e1778-434a-452a-ab16-4b27ddd4d981\", \"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:6c:df\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:40.157802+00:00\", \"modification_date\": \"2025-10-30T15:42:49.312977+00:00\", \"bootscript\": 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\": \"501\", \"node_id\": \"112\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1359" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1b9ea830-50a9-40a7-a858-6337029b284a + status: 200 OK + code: 200 + duration: 131.179226ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eb89def8-9d1d-4379-9073-934c888249cb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"eb89def8-9d1d-4379-9073-934c888249cb\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a9ac5830-5582-495f-91a4-3b04c6e57e6e + status: 404 Not Found + code: 404 + duration: 50.481604ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c78e1778-434a-452a-ab16-4b27ddd4d981 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"c78e1778-434a-452a-ab16-4b27ddd4d981\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0cf25a2d-b895-4cf1-8d82-7c0e840b95ef + status: 404 Not Found + code: 404 + duration: 34.176809ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c78e1778-434a-452a-ab16-4b27ddd4d981 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 489 + body: "{\"id\":\"c78e1778-434a-452a-ab16-4b27ddd4d981\", \"name\":\"tf-volume-infallible-ardinghelli\", \"type\":\"sbs_5k\", \"size\":50000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:33.596897Z\", \"updated_at\":\"2025-10-30T15:42:51.351781Z\", \"references\":[], \"parent_snapshot_id\":\"a4d5f945-e4bb-4542-b0f2-a7702e6c9954\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:51.351781Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "489" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7ed086e4-9f7b-421b-8f65-2416f390833d + status: 200 OK + code: 200 + duration: 77.078134ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c78e1778-434a-452a-ab16-4b27ddd4d981 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 45f5b14a-f582-4a07-9b4a-7148aaed4fcc + status: 204 No Content + code: 204 + duration: 155.819299ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c78e1778-434a-452a-ab16-4b27ddd4d981 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"c78e1778-434a-452a-ab16-4b27ddd4d981\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - adb46b80-050f-4c96-9b85-5bf06d7c7f94 + status: 404 Not Found + code: 404 + duration: 87.467523ms +- id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/a4d5f945-e4bb-4542-b0f2-a7702e6c9954 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 477 + body: "{\"id\":\"a4d5f945-e4bb-4542-b0f2-a7702e6c9954\", \"name\":\"tf-snapshot-laughing-kare\", \"parent_volume\":{\"id\":\"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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-30T15:41:58.619610Z\", \"updated_at\":\"2025-10-30T15:41:58.619610Z\", \"references\":[], \"status\":\"available\", \"tags\":[], \"class\":\"sbs\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "477" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 72b6a988-39b6-4340-b644-6dc2ddc7af94 + status: 200 OK + code: 200 + duration: 262.044208ms +- id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/a4d5f945-e4bb-4542-b0f2-a7702e6c9954 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a15ac294-41a5-41db-8072-4fb13f0d02de + status: 204 No Content + code: 204 + duration: 330.054412ms +- id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/a4d5f945-e4bb-4542-b0f2-a7702e6c9954 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 129 + body: "{\"message\":\"resource is not found\",\"resource\":\"snapshot\",\"resource_id\":\"a4d5f945-e4bb-4542-b0f2-a7702e6c9954\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "129" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 47733cb6-a321-4d75-bc9d-a867343d31d6 + status: 404 Not Found + code: 404 + duration: 86.611928ms +- id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1965 + body: "{\"server\": {\"id\": \"f470840e-427e-4e26-955f-6b9ea2f0f269\", \"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\": \"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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:6c:ad\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.148664+00:00\", \"modification_date\": \"2025-10-30T15:41:55.080556+00:00\", \"bootscript\": 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\": \"1001\", \"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: + - "1965" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 332b6bf2-67f9-4e9e-a0c5-b0264688eaf3 + status: 200 OK + code: 200 + duration: 181.41438ms +- id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2011 + body: "{\"server\": {\"id\": \"f470840e-427e-4e26-955f-6b9ea2f0f269\", \"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\": \"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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:6c:ad\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.148664+00:00\", \"modification_date\": \"2025-10-30T15:41:55.080556+00:00\", \"bootscript\": 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\": \"1001\", \"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, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2011" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 671ebbfa-daef-45ca-8785-9b189abadbbe + status: 200 OK + code: 200 + duration: 144.570038ms +- id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"30033add-501e-4fb3-9f3f-37dd5560e075\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/f470840e-427e-4e26-955f-6b9ea2f0f269/action\", \"href_result\": \"/servers/f470840e-427e-4e26-955f-6b9ea2f0f269\", \"started_at\": \"2025-10-30T15:42:56.394482+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/30033add-501e-4fb3-9f3f-37dd5560e075 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2588802a-0ed7-4c80-a41d-0e12e4197c94 + status: 202 Accepted + code: 202 + duration: 271.56133ms +- id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1974 + body: "{\"server\": {\"id\": \"f470840e-427e-4e26-955f-6b9ea2f0f269\", \"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\": \"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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:6c:ad\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:51.148664+00:00\", \"modification_date\": \"2025-10-30T15:42:56.184203+00:00\", \"bootscript\": 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\": \"1001\", \"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: + - "1974" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4d1be251-ae76-46d1-888d-2d52ab073719 + status: 200 OK + code: 200 + duration: 132.119964ms +- id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"f470840e-427e-4e26-955f-6b9ea2f0f269\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 15cdef45-27c4-4829-af8e-d5c32a557e7e + status: 404 Not Found + code: 404 + duration: 47.32829ms +- id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3d0b3854-21d2-4200-a38e-75e20b8e754e + status: 404 Not Found + code: 404 + duration: 28.865156ms +- id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 498 + body: "{\"id\":\"bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7\", \"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-30T15:41:51.292051Z\", \"updated_at\":\"2025-10-30T15:42:58.204772Z\", \"references\":[], \"parent_snapshot_id\":\"36b4ce54-c67a-4f68-ab74-839515834352\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:58.204772Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "498" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c1ab02e6-3cc2-4d18-9f9f-43431b1e77fb + status: 200 OK + code: 200 + duration: 94.907581ms +- id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bcbb83a5-1fe0-4ba1-afb1-4be8e4674cd7 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 830ca36c-1d3e-4230-9123-a309ad2aa98a + status: 204 No Content + code: 204 + duration: 173.785102ms +- id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f470840e-427e-4e26-955f-6b9ea2f0f269 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"f470840e-427e-4e26-955f-6b9ea2f0f269\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1ef0016a-b0d4-43de-87e7-4cb0249d0833 + status: 404 Not Found + code: 404 + duration: 54.855379ms +- id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/eb89def8-9d1d-4379-9073-934c888249cb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"eb89def8-9d1d-4379-9073-934c888249cb\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 198df66e-0ea9-433e-82a5-fbde55edc010 + status: 404 Not Found + code: 404 + duration: 59.036853ms diff --git a/internal/services/instance/testdata/server-root-volume1.cassette.yaml b/internal/services/instance/testdata/server-root-volume1.cassette.yaml index 5c11c4814..7333ad609 100644 --- a/internal/services/instance/testdata/server-root-volume1.cassette.yaml +++ b/internal/services/instance/testdata/server-root-volume1.cassette.yaml @@ -1,2629 +1,1987 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f16c41bb-6f3b-45c3-8c43-ef3946c39cc0 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 81.822088ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 96cd619c-5b55-4255-9b72-5677aa137d2f - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 38.821096ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d4900b2f-03d9-4f85-ba45-4f3ae4094967 - status: 200 OK - code: 200 - duration: 45.351536ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 340 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2256 - uncompressed: false - 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: - - "2256" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 80fbc2f6-3e24-4659-884f-2061c3cdfe1c - status: 201 Created - code: 201 - duration: 733.341734ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2210 - uncompressed: false - 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: - - "2210" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c1863738-79e0-4682-8487-47d5df922e63 - status: 200 OK - code: 200 - duration: 120.457987ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2210 - uncompressed: false - 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: - - "2210" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7aeaf4b5-ba02-4656-bce7-e504f9cbef97 - status: 200 OK - code: 200 - duration: 116.117562ms - - id: 6 - 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/49e5c3fc-8128-456a-8881-61308485317a/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9d90fa38-ce88-46e0-80a6-823ff406dde0 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1af4425c-cad5-4fdf-8d60-2ec00871e4e8 - status: 202 Accepted - code: 202 - duration: 668.712043ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2232 - uncompressed: false - 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: - - "2232" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 566d985e-d23e-4295-819a-73d6d66fa6ed - status: 200 OK - code: 200 - duration: 149.748033ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2381 - uncompressed: false - 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: - - "2381" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c13f0f04-fd1b-4305-ba1c-a41e49d36efc - status: 200 OK - code: 200 - duration: 136.846372ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2335 - uncompressed: false - 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: - - "2335" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7b83f3e7-214e-45ac-aaec-9e3e85f84ee8 - status: 200 OK - code: 200 - duration: 132.102905ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2366 - uncompressed: false - 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: - - "2366" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ae1a6e73-62e4-4feb-ad70-e6906f601e09 - status: 200 OK - code: 200 - duration: 152.249347ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2452 - uncompressed: false - 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: - - "2452" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0b1c6397-b69c-4437-af62-3f4903dddab4 - status: 200 OK - code: 200 - duration: 130.412547ms - - 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/e26cc147-ba6c-499a-923b-a2f40c7ace18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 519 - uncompressed: false - 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: - - "519" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d4c474fd-b91d-451d-b8a0-c5f3d64398ac - status: 200 OK - code: 200 - duration: 102.207879ms - - 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/49e5c3fc-8128-456a-8881-61308485317a/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: - - bc46b5a4-93bc-44b7-ad9c-0df9a86e46b7 - status: 200 OK - code: 200 - duration: 124.735993ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a/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: - - 06e2cddd-d42a-480f-84c3-554e407184a5 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 85.214224ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2412 - uncompressed: false - 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: - - "2412" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 96c0e580-62e4-4f03-ad51-fcd900c3ab05 - status: 200 OK - code: 200 - duration: 128.870354ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2366 - uncompressed: false - 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: - - "2366" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ee288277-9b5a-4c4e-8e26-a3f542b045c7 - status: 200 OK - code: 200 - duration: 123.080518ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e26cc147-ba6c-499a-923b-a2f40c7ace18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 519 - uncompressed: false - 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: - - "519" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aaa2809e-93fc-4d3e-9713-32af0ad95bc0 - status: 200 OK - code: 200 - duration: 89.52769ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a/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:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f2dbb783-65c3-4e82-8f25-5f392ec39a2b - status: 200 OK - code: 200 - duration: 93.528171ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a/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:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 672b22cd-e651-4523-81c2-bef7a4b3300b - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 97.607768ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2412 - uncompressed: false - 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: - - "2412" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 68edfdae-6016-4d76-8e6a-5cfc87cd2a39 - status: 200 OK - code: 200 - duration: 147.153641ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e26cc147-ba6c-499a-923b-a2f40c7ace18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 519 - uncompressed: false - 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: - - "519" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 942d3d2f-b0c4-4253-b30b-96556bf843c0 - status: 200 OK - code: 200 - duration: 96.749795ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a/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:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0a656be5-cf66-4d57-9262-90d680961b4c - status: 200 OK - code: 200 - duration: 93.821348ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a/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:56 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 513ebca5-49a1-46ad-85b5-5fb661dee27d - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 111.358771ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2412 - uncompressed: false - 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: - - "2412" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1f8cf6c1-6cc7-4801-b1a9-3e19a7726909 - status: 200 OK - code: 200 - duration: 126.506835ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2412 - uncompressed: false - 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: - - "2412" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6eff8075-d323-4a1e-9780-1c7aaa733ece - status: 200 OK - code: 200 - duration: 133.353146ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2366 - uncompressed: false - 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: - - "2366" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b88990ac-0f8c-4b70-bc57-e7b01b4a7fcc - status: 200 OK - code: 200 - duration: 139.770125ms - - id: 27 - 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/49e5c3fc-8128-456a-8881-61308485317a/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": "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: - - "353" - Content-Type: - - application/json - Date: - - 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;edge03) - X-Request-Id: - - 4bdac640-fe85-4303-88e2-43d4b83f5608 - status: 202 Accepted - code: 202 - duration: 252.970599ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49e5c3fc-8128-456a-8881-61308485317a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2375 - uncompressed: false - 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: - - "2375" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c46d5050-e69c-4fa4-97a4-a49222d0359b - status: 200 OK - code: 200 - duration: 120.388625ms - - 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/49e5c3fc-8128-456a-8881-61308485317a - 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": "49e5c3fc-8128-456a-8881-61308485317a"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 422c7268-e690-4c4f-b27f-07d27c68eb64 - status: 404 Not Found - code: 404 - duration: 51.611454ms - - 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/volumes/e26cc147-ba6c-499a-923b-a2f40c7ace18 - 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": "e26cc147-ba6c-499a-923b-a2f40c7ace18"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 902877ed-56c6-4f65-ad05-613a0a69218b - status: 404 Not Found - code: 404 - duration: 29.493709ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/e26cc147-ba6c-499a-923b-a2f40c7ace18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"e26cc147-ba6c-499a-923b-a2f40c7ace18","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d6a0a213-8326-4927-b311-e0b882a7fb22 - status: 404 Not Found - code: 404 - duration: 24.720073ms - - 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: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 33dd6c53-8d21-465e-aedb-ec73e08e7aa5 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 39.657713ms - - 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: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cf8d660e-0d0d-4977-8eb5-3e9dadfd41da - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 39.043776ms - - 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: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a1072828-f8dd-4fb5-a1b5-b3da1ba42be6 - status: 200 OK - code: 200 - duration: 38.342985ms - - id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 343 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2265 - 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": "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: - - "2265" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e3c39804-1ccc-42c8-9c9b-d0e087d53668 - status: 201 Created - code: 201 - duration: 795.748459ms - - 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/cb095c5c-fa96-4b64-b901-ba6c2dcac256 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2219 - 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": "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: - - "2219" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 65b56cea-d5e1-4e7d-ae77-d1fe52f82b94 - status: 200 OK - code: 200 - duration: 126.01108ms - - 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/cb095c5c-fa96-4b64-b901-ba6c2dcac256 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2265 - 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": "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: - - "2265" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 085e9a36-2e07-402d-99fc-f21a49f2bc35 - status: 200 OK - code: 200 - duration: 130.654123ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweron"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/53e2ba44-d644-4521-8e6c-9e66323ea13c - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6c9565cb-d64c-462f-83a0-47ca8efe4389 - status: 202 Accepted - code: 202 - duration: 278.687711ms - - 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/cb095c5c-fa96-4b64-b901-ba6c2dcac256 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2287 - 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": "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: - - "2287" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5cde922d-f4d8-45af-9f69-b9c5d0515d4f - status: 200 OK - code: 200 - duration: 139.70713ms - - 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/cb095c5c-fa96-4b64-b901-ba6c2dcac256 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2344 - 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": "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: - - "2344" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0b4ab59d-1f4e-439d-8471-4d303a86774a - status: 200 OK - code: 200 - duration: 137.605312ms - - 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/cb095c5c-fa96-4b64-b901-ba6c2dcac256 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2390 - 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": "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: - - "2390" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 25becef2-4779-433f-8341-6d8d09d473c1 - status: 200 OK - code: 200 - duration: 129.464803ms - - 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/cb095c5c-fa96-4b64-b901-ba6c2dcac256 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2421 - 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": "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: - - "2421" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 61349544-4ed0-441b-b6f2-10bede63ace3 - status: 200 OK - code: 200 - duration: 164.933816ms - - 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/cb095c5c-fa96-4b64-b901-ba6c2dcac256 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2421 - 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": "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: - - "2421" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 06f1ae1d-4307-40cb-b85f-c408351b38ce - status: 200 OK - code: 200 - duration: 118.212464ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/38298ba6-ed4e-4dfe-a447-178e6b552ff4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 522 - uncompressed: false - 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: - - "522" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2b5c048a-3fe8-4b36-ad33-fcc9d228dc1c - status: 200 OK - code: 200 - duration: 109.833896ms - - 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/cb095c5c-fa96-4b64-b901-ba6c2dcac256/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:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4430d2db-74e8-403b-a6aa-d161e5526159 - status: 200 OK - code: 200 - duration: 90.531514ms - - 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/cb095c5c-fa96-4b64-b901-ba6c2dcac256/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:54:20 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ef7bd470-e0f4-4b81-81b9-1be2bdc77bc3 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 102.398203ms - - 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/cb095c5c-fa96-4b64-b901-ba6c2dcac256 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2421 - 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": "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: - - "2421" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a5e20fb2-fb2c-4fe7-988d-1f2d71874e49 - status: 200 OK - code: 200 - duration: 119.430912ms - - 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/cb095c5c-fa96-4b64-b901-ba6c2dcac256 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2421 - 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": "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: - - "2421" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6dbe8322-f6d4-42f0-97c6-c4e0e32e37c4 - status: 200 OK - code: 200 - duration: 147.562415ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/38298ba6-ed4e-4dfe-a447-178e6b552ff4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 522 - uncompressed: false - 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: - - "522" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 81939e7d-77e5-42c0-bfd7-d393b975c4fe - status: 200 OK - code: 200 - duration: 103.153465ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256/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:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c341f1e6-0b7d-4135-907c-cc26cc52ee45 - status: 200 OK - code: 200 - duration: 85.342711ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256/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:54:21 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6baa6dda-ab01-4181-8a85-d4ca591f8b8d - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 106.237152ms - - 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/cb095c5c-fa96-4b64-b901-ba6c2dcac256 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2375 - 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": "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: - - "2375" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ebfb1646-5093-44ed-b25d-66f8c623afeb - status: 200 OK - code: 200 - duration: 124.518365ms - - 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/cb095c5c-fa96-4b64-b901-ba6c2dcac256 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2375 - 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": "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: - - "2375" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5d1d7bef-aa39-4b2c-8ab9-0a1d79cd4930 - status: 200 OK - code: 200 - duration: 130.70294ms - - id: 54 - 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/cb095c5c-fa96-4b64-b901-ba6c2dcac256/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:22 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/feebc4a0-03c5-43e6-8038-945b056fabeb - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3b846c7b-4c13-4984-a926-d8c7ee5081a4 - status: 202 Accepted - code: 202 - 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 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+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: 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:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3eaf3821-ede2-4453-b95f-41d0838c54da - status: 200 OK - code: 200 - duration: 142.265984ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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 - 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": "cb095c5c-fa96-4b64-b901-ba6c2dcac256"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 69f89f81-be35-413c-95b6-f1610dd8b5ba - status: 404 Not Found - code: 404 - duration: 102.565991ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/38298ba6-ed4e-4dfe-a447-178e6b552ff4 - 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": "38298ba6-ed4e-4dfe-a447-178e6b552ff4"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 525df881-f861-4300-9244-11b33a546fa8 - status: 404 Not Found - code: 404 - duration: 37.963129ms - - id: 60 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/38298ba6-ed4e-4dfe-a447-178e6b552ff4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"38298ba6-ed4e-4dfe-a447-178e6b552ff4","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6bd1da8f-d06d-4798-affe-0ee0325ea753 - status: 404 Not Found - code: 404 - duration: 180.533586ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb095c5c-fa96-4b64-b901-ba6c2dcac256 - 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": "cb095c5c-fa96-4b64-b901-ba6c2dcac256"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7f89fded-1e52-4bd0-a01e-86d25723c6f0 - status: 404 Not Found - code: 404 - duration: 45.431003ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b6de758c-180d-4a51-97f8-3535d7767738 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 67.735501ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bb06fe5a-5eeb-430f-b58d-c649207f7b21 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 38.012579ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3057e0da-f41a-43e2-8e89-3ce4fe61930d + status: 200 OK + code: 200 + duration: 46.101131ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 340 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-serene-dirac\",\"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\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2210 + body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-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-serene-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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+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:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2210" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 635c2703-8ac0-44a3-b390-8d35b1786ae0 + status: 201 Created + code: 201 + duration: 838.282741ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2210 + body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-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-serene-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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+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:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2210" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fe0492aa-a3aa-4da1-9085-53a6c2b6480a + status: 200 OK + code: 200 + duration: 170.746787ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2210 + body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-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-serene-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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+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:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2210" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 18607faf-dd06-40de-a658-d05fcaa23f1c + status: 200 OK + code: 200 + duration: 130.083175ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"c20456c1-2c03-41a5-9bc6-77de59f8f363\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb/action\", \"href_result\": \"/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"started_at\": \"2025-10-30T15:41:50.644740+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c20456c1-2c03-41a5-9bc6-77de59f8f363 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - acb6c686-c72f-4856-8ba1-34728c61fbcb + status: 202 Accepted + code: 202 + duration: 274.374349ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2232 + body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-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-serene-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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+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:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:50.423257+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: + - "2232" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 97902567-5718-4ead-b734-c1ead5f1884a + status: 200 OK + code: 200 + duration: 141.571212ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2336 + body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-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-serene-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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+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:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:50.423257+00:00\", \"bootscript\": 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\": \"1901\", \"node_id\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2336" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aa419dbc-b462-408b-88c2-18e42746c53f + status: 200 OK + code: 200 + duration: 132.938652ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2413 + body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-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-serene-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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+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:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:58.279275+00:00\", \"bootscript\": 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\": \"1901\", \"node_id\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2413" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 00cb0d1f-8707-4cc6-a704-b557a9249107 + status: 200 OK + code: 200 + duration: 142.713088ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2367 + body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-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-serene-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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+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:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:58.279275+00:00\", \"bootscript\": 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\": \"1901\", \"node_id\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2367" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 58ac5d92-f970-470c-8c1a-48f69399c252 + status: 200 OK + code: 200 + duration: 139.358586ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0bccd1e4-2ac7-4f19-9891-65e16b00f0c2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 519 + body: "{\"volume\": {\"id\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "519" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ec011201-423f-4634-89ca-2804dfa376e7 + status: 200 OK + code: 200 + duration: 102.933594ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4bca0f70-a682-49b6-afa8-030409977e57 + status: 200 OK + code: 200 + duration: 93.764645ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a932c182-a7c2-4411-84ad-d716269aa631 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 103.558315ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2413 + body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-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-serene-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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+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:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:58.279275+00:00\", \"bootscript\": 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\": \"1901\", \"node_id\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2413" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c53f7bf5-f835-4ae0-9bbf-a553244bccbd + status: 200 OK + code: 200 + duration: 122.511615ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2413 + body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-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-serene-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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+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:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:58.279275+00:00\", \"bootscript\": 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\": \"1901\", \"node_id\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2413" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6dbad346-afc1-42b1-9037-a931103cff3f + status: 200 OK + code: 200 + duration: 153.262636ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0bccd1e4-2ac7-4f19-9891-65e16b00f0c2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 519 + body: "{\"volume\": {\"id\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "519" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 47d648c6-81ad-495f-a5bb-ab78140cfb10 + status: 200 OK + code: 200 + duration: 103.037127ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 05058994-39f1-4dc1-ac13-0d4af1207c7d + status: 200 OK + code: 200 + duration: 95.36104ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 181805b3-403d-4adf-86c6-e4dfeca66183 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 109.896284ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2367 + body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-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-serene-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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+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:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:58.279275+00:00\", \"bootscript\": 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\": \"1901\", \"node_id\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2367" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5084166d-7e14-4e2a-88ba-45faef7aa1b3 + status: 200 OK + code: 200 + duration: 138.647342ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0bccd1e4-2ac7-4f19-9891-65e16b00f0c2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 519 + body: "{\"volume\": {\"id\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "519" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 06266cec-b80d-410b-b812-e7ded5dc54c4 + status: 200 OK + code: 200 + duration: 132.096976ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 47074928-57bc-4ace-b469-d9d0230c0a7e + status: 200 OK + code: 200 + duration: 84.123171ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ba0c9a93-0622-47cf-a359-cfa889b476bb + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 114.178716ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2413 + body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-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-serene-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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+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:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:58.279275+00:00\", \"bootscript\": 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\": \"1901\", \"node_id\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2413" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 968c5169-d4db-4e73-a3cd-e3cca48b8c0f + status: 200 OK + code: 200 + duration: 126.033673ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2367 + body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-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-serene-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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+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:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:58.279275+00:00\", \"bootscript\": 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\": \"1901\", \"node_id\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2367" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - feda1958-65c9-4ae8-83c2-f9e7ea217ff4 + status: 200 OK + code: 200 + duration: 157.217324ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2367 + body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-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-serene-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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+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:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:58.279275+00:00\", \"bootscript\": 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\": \"1901\", \"node_id\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2367" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 363c0781-5077-4a7d-a0c0-7280092de4fb + status: 200 OK + code: 200 + duration: 141.520231ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"bf3c7cee-59d6-456e-b541-37cce55abc75\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb/action\", \"href_result\": \"/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"started_at\": \"2025-10-30T15:42:03.750199+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bf3c7cee-59d6-456e-b541-37cce55abc75 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a5348935-de2c-4431-af5c-62e87702f4f1 + status: 202 Accepted + code: 202 + duration: 280.370174ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2376 + body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-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-serene-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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+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:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:42:03.524243+00:00\", \"bootscript\": 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\": \"1901\", \"node_id\": \"11\"}, \"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: + - "2376" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c1e90033-f0ae-4518-8e92-f0ca4cbaeef4 + status: 200 OK + code: 200 + duration: 127.948755ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d479ece7-7711-4899-ae43-45b6a375da37 + status: 404 Not Found + code: 404 + duration: 54.892443ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0bccd1e4-2ac7-4f19-9891-65e16b00f0c2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 09875cc8-ec21-4d70-af5d-535575b369dc + status: 404 Not Found + code: 404 + duration: 28.665649ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0bccd1e4-2ac7-4f19-9891-65e16b00f0c2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e67163c3-b4d6-4376-bac2-fc299be784a8 + status: 404 Not Found + code: 404 + duration: 19.470702ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:09 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - be18e2c1-e2d6-4b8d-9cc8-8a73583e50c2 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 45.793887ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:09 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e7c2e778-de31-4436-9fd7-a5345c387376 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 42.439325ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 04f63bf2-c9c9-4490-92c6-1d6a80b600cf + status: 200 OK + code: 200 + duration: 40.515616ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 340 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-sweet-swartz\",\"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\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2256 + body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+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:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2256" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:09 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ef232ede-7815-48d9-8af7-c72e743901bf + status: 201 Created + code: 201 + duration: 732.207961ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2256 + body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+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:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2256" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 24c93137-448b-4fd2-adcb-32fb947fc76a + status: 200 OK + code: 200 + duration: 126.451077ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2256 + body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+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:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2256" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3d993917-3754-4cb3-83da-ddb455c91118 + status: 200 OK + code: 200 + duration: 141.219199ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"0205e9d6-54d1-4c14-9025-e54fcf90498c\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/54189155-96c0-4ba7-938d-68a728e8edd3/action\", \"href_result\": \"/servers/54189155-96c0-4ba7-938d-68a728e8edd3\", \"started_at\": \"2025-10-30T15:42:10.401994+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:10 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0205e9d6-54d1-4c14-9025-e54fcf90498c + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 60971e91-a9a0-4e16-a000-80c37058454b + status: 202 Accepted + code: 202 + duration: 283.727856ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2278 + body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+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:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:10.182529+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: + - "2278" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0bdd2a50-7710-468c-a223-490e996c261e + status: 200 OK + code: 200 + duration: 162.301133ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2335 + body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+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:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:10.182529+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"42\", \"hypervisor_id\": \"202\", \"node_id\": \"43\"}, \"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: + - Thu, 30 Oct 2025 15:42:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 14cdc0ff-a559-47cc-a170-df4fa82d3d87 + status: 200 OK + code: 200 + duration: 150.548128ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2381 + body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+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:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:10.182529+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"42\", \"hypervisor_id\": \"202\", \"node_id\": \"43\"}, \"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: + - Thu, 30 Oct 2025 15:42:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5ee3bf40-b92d-430d-a519-ade3ece3c171 + status: 200 OK + code: 200 + duration: 118.28833ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2412 + body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+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:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:22.129488+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"42\", \"hypervisor_id\": \"202\", \"node_id\": \"43\"}, \"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: + - "2412" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7362154c-fd3d-4d00-aca9-acbe33383ceb + status: 200 OK + code: 200 + duration: 138.735814ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2366 + body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+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:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:22.129488+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"42\", \"hypervisor_id\": \"202\", \"node_id\": \"43\"}, \"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: + - "2366" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b90f7579-e4cc-46af-8ce2-4dbb62697241 + status: 200 OK + code: 200 + duration: 173.051904ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/29883276-331f-4364-8fa3-7f6f43c276dc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 519 + body: "{\"volume\": {\"id\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "519" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f8e23cce-ba5f-4c03-9318-72c1077195f4 + status: 200 OK + code: 200 + duration: 119.813552ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8d43c0ab-ac09-4eda-a8cb-82df099a554c + status: 200 OK + code: 200 + duration: 106.398518ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:26 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7fe38917-29c4-4732-8aeb-d88073ba144b + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 97.928099ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2366 + body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+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:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:22.129488+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"42\", \"hypervisor_id\": \"202\", \"node_id\": \"43\"}, \"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: + - "2366" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ab63a01e-1a4a-4b15-bcb2-1bc7df7da9a5 + status: 200 OK + code: 200 + duration: 129.954374ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2412 + body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+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:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:22.129488+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"42\", \"hypervisor_id\": \"202\", \"node_id\": \"43\"}, \"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: + - "2412" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e4c12f71-cb9c-4ef3-bca9-13df2e7c21c4 + status: 200 OK + code: 200 + duration: 147.648904ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/29883276-331f-4364-8fa3-7f6f43c276dc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 519 + body: "{\"volume\": {\"id\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "519" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f83b7a4d-035f-4479-b85c-2e9b70d2ead1 + status: 200 OK + code: 200 + duration: 96.176395ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5b1a5db9-0be7-4bb2-ae8f-e35d6a31e33f + status: 200 OK + code: 200 + duration: 98.564424ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:27 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ed59fbc9-3e26-448d-b504-630b32b2105f + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 98.68526ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2366 + body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+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:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:22.129488+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"42\", \"hypervisor_id\": \"202\", \"node_id\": \"43\"}, \"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: + - "2366" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - be0dc833-bf61-4287-922c-f835dfda3f27 + status: 200 OK + code: 200 + duration: 130.748032ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2412 + body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+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:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:22.129488+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"42\", \"hypervisor_id\": \"202\", \"node_id\": \"43\"}, \"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: + - "2412" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a5086c9e-219d-4a03-8721-dc3e55335c8f + status: 200 OK + code: 200 + duration: 124.716058ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"b4183103-52a3-452b-b295-9ea432e87c0a\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/54189155-96c0-4ba7-938d-68a728e8edd3/action\", \"href_result\": \"/servers/54189155-96c0-4ba7-938d-68a728e8edd3\", \"started_at\": \"2025-10-30T15:42:28.104816+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:28 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b4183103-52a3-452b-b295-9ea432e87c0a + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aa363019-7cdd-40c3-b129-748a572471dd + status: 202 Accepted + code: 202 + duration: 342.922902ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2329 + body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+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:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:27.834557+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"42\", \"hypervisor_id\": \"202\", \"node_id\": \"43\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2329" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bdb8f58f-4358-4235-a9dc-60216d009924 + status: 200 OK + code: 200 + duration: 129.27565ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 23e3b9b9-f98a-48b0-8531-066f42328fb2 + status: 404 Not Found + code: 404 + duration: 49.919027ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/29883276-331f-4364-8fa3-7f6f43c276dc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"29883276-331f-4364-8fa3-7f6f43c276dc\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6585edc6-fdcd-4373-ae8c-a5903cb6b599 + status: 404 Not Found + code: 404 + duration: 29.27288ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/29883276-331f-4364-8fa3-7f6f43c276dc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"29883276-331f-4364-8fa3-7f6f43c276dc\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 55fac387-ee46-403b-a497-6a77ada6d640 + status: 404 Not Found + code: 404 + duration: 19.59191ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e8b29226-95ce-4f8c-8c47-529eaf423b33 + status: 404 Not Found + code: 404 + duration: 49.644171ms diff --git a/internal/services/instance/testdata/server-state1.cassette.yaml b/internal/services/instance/testdata/server-state1.cassette.yaml index e3a664d25..218590cdd 100644 --- a/internal/services/instance/testdata/server-state1.cassette.yaml +++ b/internal/services/instance/testdata/server-state1.cassette.yaml @@ -1,4821 +1,3173 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ea56ffda-88d5-4543-91a0-0a00d16339a9 - status: 200 OK - code: 200 - duration: 58.870531ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 80dabe63-33a2-4e48-8a1e-73cb0b8b00d3 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 45.350679ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c647c9e6-e19b-4074-a2c5-f740841a53ac - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 40.443241ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 297 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2216 - 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: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: - - "2216" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2a78d08c-42e3-4fb3-9a0c-3a1d9a1fc97a - status: 201 Created - code: 201 - duration: 1.056202247s - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2216 - 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: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: - - "2216" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b4a4c2b1-7883-4364-b04a-7dac10d52645 - status: 200 OK - code: 200 - duration: 138.259234ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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: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: - - "2262" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c792547a-1b1b-400a-8d66-582aa0350714 - status: 200 OK - code: 200 - duration: 137.39042ms - - id: 6 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c535ab2c-dab3-4e04-a5aa-27d0586befdd - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4630682f-13e3-49a1-9414-aa1a4c520348 - status: 202 Accepted - code: 202 - duration: 258.461791ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: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: - - "2238" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 956ae990-3c62-4bd4-9ee5-82e07f10ad35 - status: 200 OK - code: 200 - duration: 123.709896ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: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: - - "2387" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a7fde88a-925c-4e1a-bd3e-8f3091cb7f1d - status: 200 OK - code: 200 - duration: 133.017824ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: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: - - "2387" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f7f6ed59-5244-435a-94e7-a65049866393 - status: 200 OK - code: 200 - duration: 172.485253ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2418 - 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: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: - - "2418" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cdddf6cf-3d4a-432d-8348-4642ad89a5bc - status: 200 OK - code: 200 - duration: 114.882162ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2418 - 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: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: - - "2418" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8842d0cb-5230-454c-885f-6b9960560a41 - status: 200 OK - code: 200 - duration: 127.401824ms - - 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/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 - 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:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8c36bb68-a071-4d1b-a8fe-4fdc44397e1f - status: 200 OK - code: 200 - duration: 97.659985ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 20 - uncompressed: false - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:44 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1c9a5234-4eb8-4301-b437-6a6e775ec2f2 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 99.526444ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2372 - 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: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: - - "2372" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 52c5442a-d019-4b92-b736-22584fb657ca - status: 200 OK - code: 200 - duration: 133.900649ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1fd98bf4-f752-4fdc-8c96-0a2784305823 - status: 200 OK - code: 200 - duration: 40.218293ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e8fd1f22-15fe-42c1-8093-40f8d0ebb56d - status: 200 OK - code: 200 - duration: 40.897302ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 2372 - 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: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: - - "2372" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5a85f88c-265d-427c-9347-5d0cf8aa5cea - status: 200 OK - code: 200 - duration: 133.240504ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/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:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7e170d3e-fed1-4190-b05d-98ada895e72c - status: 200 OK - code: 200 - duration: 93.814894ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/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:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 73ba35a2-89ee-4cf1-a6a4-bf9a1e979001 - status: 200 OK - code: 200 - duration: 98.620812ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 20 - uncompressed: false - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:45 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fb1ccc06-b317-4519-b6ac-b835ae4aa3c2 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 90.545188ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0923d6cd-e823-48f3-bdc8-db61d1cfcfd4 - status: 200 OK - code: 200 - duration: 45.689103ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2372 - 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: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: - - "2372" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bca8a10c-c55f-477f-ac85-0c904bbe5e32 - status: 200 OK - code: 200 - duration: 138.679496ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/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:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a116d4cb-a8aa-45c0-928e-63f14eeaf407 - status: 200 OK - code: 200 - duration: 113.22828ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/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:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6cd4c9db-1fff-461b-89c4-1e4a5bf48f29 - status: 200 OK - code: 200 - duration: 105.499767ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 20 - uncompressed: false - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:46 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5e1a0377-e191-4b42-bb6d-cb42be356f0b - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 102.569997ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2372 - 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: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: - - "2372" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 23a1f466-1e23-4506-877d-fdf8d45f77f5 - status: 200 OK - code: 200 - duration: 122.902672ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2418 - 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: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: - - "2418" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1bf5b5b4-a3ab-47a8-9a32-900864661ad0 - status: 200 OK - code: 200 - duration: 139.154735ms - - id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 26 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"stop_in_place"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:47 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c4876a07-b25f-4bb2-b56d-851204908858 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 26c922ab-90cf-4c59-a943-b09d956985f5 - status: 202 Accepted - code: 202 - duration: 254.719093ms - - 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/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": "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: - - "2387" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3cbfe5d8-546a-405e-b154-a157eb3deabd - status: 200 OK - code: 200 - duration: 131.513956ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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": "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: - - "2387" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5fe999b7-9e94-4e6a-b7fe-72e17e5def9f - status: 200 OK - code: 200 - duration: 130.648689ms - - 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/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": "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: - - "2387" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 83f4bf35-7226-4668-8a9b-fbad0b4a7464 - status: 200 OK - code: 200 - duration: 121.627461ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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": "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: - - "2387" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 77b1cd3c-0f3f-4f34-a025-0d1216f850c0 - status: 200 OK - code: 200 - duration: 124.359281ms - - 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/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": "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: - - "2341" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cd95fad6-4472-4c94-b66e-7f4c26b37fc2 - status: 200 OK - code: 200 - duration: 130.331291ms - - 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/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": "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: - - "2387" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f5c94064-3381-49a8-aa23-86de9b6ae83b - status: 200 OK - code: 200 - duration: 131.409518ms - - 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/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": "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: - - "2341" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b8acf777-89c9-4dbd-a75f-3d6f6a4f0309 - status: 200 OK - code: 200 - duration: 142.69168ms - - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2377 - 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 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: - - "2377" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c598444e-26e2-4eed-9674-2acc4ae1f591 - status: 200 OK - code: 200 - duration: 135.605549ms - - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2377 - 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 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: - - "2377" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9ba91e8f-1476-4352-a50a-121eb2500e67 - status: 200 OK - code: 200 - duration: 136.627831ms - - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2377 - 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 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: - - "2377" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7f163821-723d-47cb-8ead-cecf40295d29 - status: 200 OK - code: 200 - duration: 123.640953ms - - 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/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:56:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1afa7c49-41ec-411b-8886-c21fe1172133 - status: 200 OK - code: 200 - duration: 111.92421ms - - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/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:56:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 62737a47-e3be-458d-8fcf-f2cdc10c6a36 - status: 200 OK - code: 200 - duration: 89.283728ms - - 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/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: 20 - uncompressed: false - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:23 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - af95976a-2c00-4a95-acae-f24177517f1d - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 115.356619ms - - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2377 - 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 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: - - "2377" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d8c0d50e-3aef-44a4-8738-5a8372bb6c51 - status: 200 OK - code: 200 - duration: 132.696559ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 417151d4-25d1-4041-a31c-0b7497b0e211 - status: 200 OK - code: 200 - duration: 58.201168ms - - 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: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0d354e26-d42d-4ade-b11d-c66c259647db - status: 200 OK - code: 200 - duration: 99.204021ms - - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2377 - 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 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: - - "2377" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7f60eca7-3d92-40d9-8c0c-9c6a5a06955b - status: 200 OK - code: 200 - duration: 117.038866ms - - 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/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:56:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 839fa786-82c5-4333-af38-5ba70f89082c - status: 200 OK - code: 200 - duration: 106.024748ms - - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/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:56:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 91c68159-86b7-4aa4-9ffc-fc4269ed0080 - status: 200 OK - code: 200 - duration: 107.675705ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 20 - uncompressed: false - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:24 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c903cb0c-4eb3-4c58-bf10-b1bdcca90dc3 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 110.101702ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f8aea9ae-662e-422b-986c-5c65f1c70dca - status: 200 OK - code: 200 - duration: 58.657141ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2423 - 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 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: - - "2423" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ed95e439-0bda-4087-8a94-92093927bf76 - status: 200 OK - code: 200 - duration: 142.815924ms - - 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/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:56:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fae1d992-075a-41fa-b4b4-bfc2579d29b9 - status: 200 OK - code: 200 - duration: 110.315341ms - - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/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:56:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 925192cd-2f0c-4d48-9e8a-f9277b73653d - status: 200 OK - code: 200 - duration: 106.658363ms - - 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/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: 20 - uncompressed: false - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:25 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3a4ca1e5-215d-40e2-a6e1-4c6462b2c8d0 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 122.57529ms - - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2377 - 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 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: - - "2377" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 32fc3a92-7e9c-4373-940c-dd0190a29684 - status: 200 OK - code: 200 - duration: 129.426573ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2377 - 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 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: - - "2377" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1b78ae94-5420-46b6-a1ea-58a0bc04e550 - status: 200 OK - code: 200 - duration: 129.581171ms - - id: 57 - 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: 360 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:26 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3f623079-e41b-41b2-9907-18291e2c8355 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f88076e3-5f38-4cb2-aceb-31d17921035b - status: 202 Accepted - code: 202 - duration: 293.882241ms - - 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/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": "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: - - "2341" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 082217f7-7e29-4a2b-8e47-0df3fcf9622b - status: 200 OK - code: 200 - duration: 159.590367ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2418 - 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: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: - - "2418" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2e36c465-d82d-4a90-8920-2b7d1c269b4c - status: 200 OK - code: 200 - duration: 126.348729ms - - id: 60 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 21 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweroff"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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: 352 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:31 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1d0c33e7-3241-45b0-ba69-3524befbb584 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fd1ecf38-45c8-4b59-b553-a9ff375f4ad4 - status: 202 Accepted - code: 202 - duration: 218.13003ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2332 - 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": "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: - - "2332" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0eda6da4-6d98-482a-bf83-5f092afaa772 - status: 200 OK - code: 200 - duration: 140.411069ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2378 - 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": "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: - - "2378" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d3ae64be-d49f-4edd-9959-2839961b137e - status: 200 OK - code: 200 - duration: 125.347869ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2378 - 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": "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: - - "2378" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6ddf9e78-c347-4f89-9619-22baa6df2731 - status: 200 OK - code: 200 - duration: 154.169393ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2378 - 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": "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: - - "2378" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b4e9f430-ab5d-4bd6-aef6-31cdc27a0ce1 - status: 200 OK - code: 200 - duration: 142.251134ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2378 - 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": "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: - - "2378" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f31ff084-ee1b-4434-8936-f46ad2f88411 - status: 200 OK - code: 200 - duration: 135.852719ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2378 - 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": "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: - - "2378" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fcaaf86b-cc01-48ca-8f2c-078f5be39dc7 - status: 200 OK - code: 200 - duration: 135.479944ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2418 - 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": "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: - - "2418" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8a969277-7bb5-4aee-a4d9-4b5f26751e4a - status: 200 OK - code: 200 - duration: 125.968649ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2378 - 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": "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: - - "2378" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2318aa47-f116-48e6-b505-0b28eff01825 - status: 200 OK - code: 200 - duration: 148.503585ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2332 - 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": "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: - - "2332" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 108c33c0-f783-4ecc-a853-e04d8d3bb65a - status: 200 OK - code: 200 - duration: 122.634644ms - - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2332 - 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": "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: - - "2332" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 212b32df-828f-48a0-96e8-520d47aeed81 - status: 200 OK - code: 200 - duration: 149.012481ms - - 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/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:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 38767806-a4df-4e17-96f3-b7e43fa2d6bf - status: 200 OK - code: 200 - duration: 145.670541ms - - 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/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:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 049fed7c-6762-4c5e-aa9c-5e2067a1b054 - status: 200 OK - code: 200 - duration: 138.750519ms - - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2216 - 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}}' - headers: - Content-Length: - - "2216" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a36c5221-f2e4-4f8f-b8f0-fdad93e166fe - status: 200 OK - code: 200 - duration: 139.892803ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/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:57:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6f30108b-5746-48d8-adbf-e9945e82a7fe - status: 200 OK - code: 200 - duration: 95.026901ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/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:57:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f93ebc62-6774-49ae-9769-d4ad202b1f39 - status: 200 OK - code: 200 - duration: 98.866322ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 20 - uncompressed: false - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:23 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fc8cae58-e95c-484a-a5ff-97f651633790 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 92.566541ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2216 - 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}}' - headers: - Content-Length: - - "2216" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ec5eef2c-f49f-43a4-9d72-b8f136d70fca - status: 200 OK - code: 200 - duration: 152.458577ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 25a5fbf9-eb20-4f25-88e5-7c645dbe7c52 - status: 200 OK - code: 200 - duration: 54.803911ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6abefe28-9397-4a03-b06f-b3f24f0ba7d6 - status: 200 OK - code: 200 - duration: 43.586201ms - - 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/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2216 - 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}}' - headers: - Content-Length: - - "2216" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:57:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7e50d4fd-3119-420d-bd13-1382256a17de - status: 200 OK - code: 200 - duration: 141.029512ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/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:57:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ba976156-432a-428b-a3be-537234fd97e2 - status: 200 OK - code: 200 - duration: 118.638773ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca/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:57:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f1bebb00-71ee-48ce-8316-a2086a7a1e50 - status: 200 OK - code: 200 - duration: 99.117683ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/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: 20 - uncompressed: false - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - 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/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;edge03) - X-Request-Id: - - 1a4e07b3-0ad7-405e-b2d6-62d4834394af - status: 200 OK - code: 200 - duration: 136.550504ms - - 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/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:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d29891b2-ed94-4037-b44a-c3efcbc36499 - status: 200 OK - code: 200 - duration: 147.844018ms - - 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/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:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d2686cee-baf8-4739-8fae-1bb2b1280d8c - status: 200 OK - code: 200 - 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 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+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:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2b03add4-ded7-426c-8eb4-8595faa62933 - status: 200 OK - code: 200 - duration: 139.035748ms - - 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/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/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:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 443bda08-595d-4978-9e79-c233c6be46de - status: 200 OK - code: 200 - duration: 138.601868ms - - 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/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:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 06133ce4-84a4-455f-92cd-190fb25241ce - status: 200 OK - code: 200 - duration: 126.913257ms - - 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/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:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 91d9929d-0676-4075-9714-b43b812d2e33 - status: 200 OK - code: 200 - duration: 137.809178ms - - 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/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:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 73c23bc2-e4c1-44b6-bf12-65c63482e25f - status: 200 OK - code: 200 - 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 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+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: 143 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:59:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1659ee30-efac-4f67-a5d3-f169c4039773 - status: 404 Not Found - code: 404 - duration: 58.227156ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7800a289-6bda-4eed-a037-e7ab087656ea - 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": "7800a289-6bda-4eed-a037-e7ab087656ea"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:59:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5d65e712-5228-4e40-8682-e18dff831967 - status: 404 Not Found - code: 404 - duration: 37.081041ms - - id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7800a289-6bda-4eed-a037-e7ab087656ea - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"7800a289-6bda-4eed-a037-e7ab087656ea","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:59:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 60cbda42-d3b3-421a-9fe1-773b97fb4e82 - status: 404 Not Found - code: 404 - duration: 22.4377ms - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b8e60fa-3fe5-49cc-b179-6c97d04da3ca - 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": "6b8e60fa-3fe5-49cc-b179-6c97d04da3ca"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:59:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 672643b2-e689-4bf3-a09f-2bb52febd00b - status: 404 Not Found - code: 404 - duration: 55.821465ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cf3dcfc9-2152-47e6-85c4-6f0e42780c0c + status: 200 OK + code: 200 + duration: 42.4274ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3261a68c-3a65-47f9-951a-d4c34619eb8a + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 54.81705ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8b68bbe9-fe13-4540-a0c7-4a08dbd8b480 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 52.197476ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 295 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-relaxed-diffie\",\"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\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2210 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2210" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ef7de07f-2aac-442c-913d-7d008baae822 + status: 201 Created + code: 201 + duration: 744.839796ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2210 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2210" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c9ea6eb2-ab27-4dc5-b75f-d1159c458c0a + status: 200 OK + code: 200 + duration: 122.907997ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2210 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2210" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5033eb76-53bc-4118-ba71-9b54f90e2785 + status: 200 OK + code: 200 + duration: 109.004769ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"f1ff0bf0-d8ee-475f-a920-ecf7a0afaebc\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/action\", \"href_result\": \"/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"started_at\": \"2025-10-30T15:41:53.222077+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f1ff0bf0-d8ee-475f-a920-ecf7a0afaebc + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a93eb70d-8ce3-4e6e-a229-829fad286e80 + status: 202 Accepted + code: 202 + duration: 235.064649ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2278 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:53.038348+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: + - "2278" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0306ab6c-d005-4105-8f52-8b529a26a4d8 + status: 200 OK + code: 200 + duration: 141.158038ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2335 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:53.038348+00:00\", \"bootscript\": 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\": \"801\", \"node_id\": \"30\"}, \"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: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 00e27d4d-b314-4dae-8b50-e3ba86259e16 + status: 200 OK + code: 200 + duration: 160.995089ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2335 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:53.038348+00:00\", \"bootscript\": 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\": \"801\", \"node_id\": \"30\"}, \"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: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5811825d-445e-4061-9889-25af707b425e + status: 200 OK + code: 200 + duration: 141.34899ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2366 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:04.797631+00:00\", \"bootscript\": 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\": \"801\", \"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: + - "2366" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 90c82e1f-8803-44a4-aa39-27616713b494 + status: 200 OK + code: 200 + duration: 140.127901ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2366 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:04.797631+00:00\", \"bootscript\": 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\": \"801\", \"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: + - "2366" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b5040d99-7cdf-4bd8-a518-b7819c220a2d + status: 200 OK + code: 200 + duration: 123.831854ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4a49173a-020c-4a70-ae46-eeeda1922189 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 521 + body: "{\"volume\": {\"id\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "521" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 83d53443-c8c1-46b9-9cfb-e7da47973724 + status: 200 OK + code: 200 + duration: 83.211662ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b273c781-ce52-4987-bf1b-1988c3964661 + status: 200 OK + code: 200 + duration: 83.289027ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:09 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5f3decdc-a84b-4b7a-b277-108eabf19c1f + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 101.674042ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2366 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:04.797631+00:00\", \"bootscript\": 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\": \"801\", \"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: + - "2366" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 580c4c8d-465f-4a8f-9e80-edf46d8d2042 + status: 200 OK + code: 200 + duration: 133.630053ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b292c928-1ef8-4c40-8562-5ba2a36bdd59 + status: 200 OK + code: 200 + duration: 42.953719ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7ae69422-d748-49df-8cec-69cb60012283 + status: 200 OK + code: 200 + duration: 46.028436ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2366 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:04.797631+00:00\", \"bootscript\": 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\": \"801\", \"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: + - "2366" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3a8d30aa-eefc-453d-ba9e-9145bd2e5eba + status: 200 OK + code: 200 + duration: 128.386298ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4a49173a-020c-4a70-ae46-eeeda1922189 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 521 + body: "{\"volume\": {\"id\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "521" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 545d159a-61df-4292-b1a9-debc89c4c143 + status: 200 OK + code: 200 + duration: 102.656465ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c2b9215b-9774-4451-b6f9-38613b27390f + status: 200 OK + code: 200 + duration: 94.456915ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:10 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dec307eb-585f-4cd4-821e-34062a83c4f2 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 112.588896ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0cec0054-3c66-4037-9cbc-07f59b8911ef + status: 200 OK + code: 200 + duration: 46.389184ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2366 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:04.797631+00:00\", \"bootscript\": 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\": \"801\", \"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: + - "2366" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5ae98590-49db-4ed1-a2ef-d992869c4b2d + status: 200 OK + code: 200 + duration: 118.678578ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4a49173a-020c-4a70-ae46-eeeda1922189 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 521 + body: "{\"volume\": {\"id\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "521" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 83fc14b8-c6ad-42e9-bc67-1d5c3db80d4b + status: 200 OK + code: 200 + duration: 97.699998ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 19f37a62-9ba5-4b42-b536-a354516564f3 + status: 200 OK + code: 200 + duration: 117.505157ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:10 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b996cea8-eba4-474b-906c-593032a9f06a + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 94.614722ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2412 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:04.797631+00:00\", \"bootscript\": 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\": \"801\", \"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: + - "2412" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 56e1d9fd-c022-4919-8d08-301539bd434b + status: 200 OK + code: 200 + duration: 136.422321ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2412 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:04.797631+00:00\", \"bootscript\": 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\": \"801\", \"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: + - "2412" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6cc872f3-d345-4b02-9b40-ce3f903278ed + status: 200 OK + code: 200 + duration: 157.977113ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 26 + host: api.scaleway.com + body: "{\"action\":\"stop_in_place\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"97397e00-eba8-4399-bcac-c926a9afadbc\", \"description\": \"server_stop_in_place\", \"status\": \"pending\", \"href_from\": \"/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/action\", \"href_result\": \"/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"started_at\": \"2025-10-30T15:42:11.362236+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:11 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/97397e00-eba8-4399-bcac-c926a9afadbc + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c46d7642-4940-42b7-b08c-27151429a11f + status: 202 Accepted + code: 202 + duration: 251.307204ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2335 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:11.177722+00:00\", \"bootscript\": 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\": \"801\", \"node_id\": \"30\"}, \"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: + - Thu, 30 Oct 2025 15:42:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 56021a1a-ba90-470e-a340-d29edce13a4a + status: 200 OK + code: 200 + duration: 121.948162ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2335 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:11.177722+00:00\", \"bootscript\": 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\": \"801\", \"node_id\": \"30\"}, \"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: + - Thu, 30 Oct 2025 15:42:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ef45843b-2422-4816-ae5b-47cde5055adb + status: 200 OK + code: 200 + duration: 128.625377ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2335 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:11.177722+00:00\", \"bootscript\": 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\": \"801\", \"node_id\": \"30\"}, \"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: + - Thu, 30 Oct 2025 15:42:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e09b4c10-6db9-43f5-abdc-f7be99cc8c24 + status: 200 OK + code: 200 + duration: 122.835679ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2335 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:11.177722+00:00\", \"bootscript\": 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\": \"801\", \"node_id\": \"30\"}, \"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: + - Thu, 30 Oct 2025 15:42:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f5a6ebac-b379-46fd-8e33-8c3b2ca38aba + status: 200 OK + code: 200 + duration: 138.251416ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2335 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:11.177722+00:00\", \"bootscript\": 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\": \"801\", \"node_id\": \"30\"}, \"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: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 515fe5e0-b595-4a31-8faa-e863857b7500 + status: 200 OK + code: 200 + duration: 137.408667ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2335 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:11.177722+00:00\", \"bootscript\": 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\": \"801\", \"node_id\": \"30\"}, \"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: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 01a72510-ea4f-4f57-9999-31e143a49efa + status: 200 OK + code: 200 + duration: 130.805292ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2335 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:11.177722+00:00\", \"bootscript\": 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\": \"801\", \"node_id\": \"30\"}, \"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: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 06fe4f9c-ec5d-4d28-9131-f3d0782ccf1d + status: 200 OK + code: 200 + duration: 128.912643ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2371 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:44.501935+00:00\", \"bootscript\": 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\": \"801\", \"node_id\": \"30\"}, \"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: + - "2371" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0938729e-1224-41f4-bb88-901ab0e870b7 + status: 200 OK + code: 200 + duration: 187.120061ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2417 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:44.501935+00:00\", \"bootscript\": 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\": \"801\", \"node_id\": \"30\"}, \"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: + - "2417" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f53b69da-66f5-4e24-ad99-5f473e8b04c4 + status: 200 OK + code: 200 + duration: 140.117083ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2371 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:44.501935+00:00\", \"bootscript\": 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\": \"801\", \"node_id\": \"30\"}, \"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: + - "2371" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1e54c837-51ee-464b-82f1-e30a8e0da04b + status: 200 OK + code: 200 + duration: 134.766997ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4a49173a-020c-4a70-ae46-eeeda1922189 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 521 + body: "{\"volume\": {\"id\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "521" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8111004a-e7fa-46f9-803f-e48459774cae + status: 200 OK + code: 200 + duration: 104.930469ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1184b910-d245-4d5e-8c3b-8d39c13fd381 + status: 200 OK + code: 200 + duration: 104.018168ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0187286e-d3d0-4922-a446-71103a24e747 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 145.516972ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2371 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:44.501935+00:00\", \"bootscript\": 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\": \"801\", \"node_id\": \"30\"}, \"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: + - "2371" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 74d962a5-370c-4614-a64a-3c59b826310b + status: 200 OK + code: 200 + duration: 114.586131ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ed3a04fa-7b8a-4ed7-ab94-edb61f79f2c6 + status: 200 OK + code: 200 + duration: 36.417743ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4f587ccc-bc43-42b6-803c-8bcb634d27ae + status: 200 OK + code: 200 + duration: 83.289686ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2371 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:44.501935+00:00\", \"bootscript\": 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\": \"801\", \"node_id\": \"30\"}, \"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: + - "2371" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 717fcc86-9950-4f59-8343-5a48c322ff50 + status: 200 OK + code: 200 + duration: 117.065272ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4a49173a-020c-4a70-ae46-eeeda1922189 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 521 + body: "{\"volume\": {\"id\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "521" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9da8b38a-db1a-4242-ad6a-f131fa54b1bd + status: 200 OK + code: 200 + duration: 122.95508ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 18f93588-03f7-492f-b7cb-1d9e7dc78f68 + status: 200 OK + code: 200 + duration: 108.191136ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ba8b04e3-ac73-4a8d-8682-aa8be8cd119b + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 133.124095ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7a317890-2c9b-4766-a740-7432dab96bbc + status: 200 OK + code: 200 + duration: 60.228587ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2371 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:44.501935+00:00\", \"bootscript\": 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\": \"801\", \"node_id\": \"30\"}, \"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: + - "2371" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fd52daea-0ca2-4a49-8a42-94cbb2583134 + status: 200 OK + code: 200 + duration: 157.694675ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4a49173a-020c-4a70-ae46-eeeda1922189 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 521 + body: "{\"volume\": {\"id\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "521" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ac2ee761-182f-4c22-8eba-063a13aa459c + status: 200 OK + code: 200 + duration: 98.77901ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0397ac98-fb2f-49ca-a3b4-008bfcc3c436 + status: 200 OK + code: 200 + duration: 117.376956ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 46d3203c-3083-4e9f-996b-0c22b0cb0aa6 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 120.729215ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2371 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:44.501935+00:00\", \"bootscript\": 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\": \"801\", \"node_id\": \"30\"}, \"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: + - "2371" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8dc886db-c5b9-4156-9968-259dde46d719 + status: 200 OK + code: 200 + duration: 118.926754ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2371 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:44.501935+00:00\", \"bootscript\": 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\": \"801\", \"node_id\": \"30\"}, \"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: + - "2371" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a02d5518-6f85-4338-b49c-97e6a840a4c9 + status: 200 OK + code: 200 + duration: 134.037979ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 360 + body: "{\"task\": {\"id\": \"5deb3793-4a5e-4f3f-b386-b2e7b108777c\", \"description\": \"server_poweron_in_place\", \"status\": \"pending\", \"href_from\": \"/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/action\", \"href_result\": \"/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"started_at\": \"2025-10-30T15:42:50.360112+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "360" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5deb3793-4a5e-4f3f-b386-b2e7b108777c + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d9b7edb3-2e82-4768-8604-d5933b04b847 + status: 202 Accepted + code: 202 + duration: 223.256076ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2335 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:44.501935+00:00\", \"bootscript\": 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\": \"801\", \"node_id\": \"30\"}, \"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: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7b813a86-aa0e-4418-9065-b23ca5c11409 + status: 200 OK + code: 200 + duration: 131.466546ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2366 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:51.564205+00:00\", \"bootscript\": 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\": \"801\", \"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: + - "2366" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b3653c4a-d55e-45ee-a75e-82f77a6461e8 + status: 200 OK + code: 200 + duration: 176.374096ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 21 + host: api.scaleway.com + body: "{\"action\":\"poweroff\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 352 + body: "{\"task\": {\"id\": \"e362a790-caa7-48f1-aeec-1e277267dea3\", \"description\": \"server_poweroff\", \"status\": \"pending\", \"href_from\": \"/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/action\", \"href_result\": \"/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"started_at\": \"2025-10-30T15:42:56.009211+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "352" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e362a790-caa7-48f1-aeec-1e277267dea3 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 19598ab2-a546-4cb8-8e89-6b0b5f1e3e97 + status: 202 Accepted + code: 202 + duration: 336.843167ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2326 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:55.737975+00:00\", \"bootscript\": 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\": \"801\", \"node_id\": \"30\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2326" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cb124b20-e685-40dd-931f-5ca2391473af + status: 200 OK + code: 200 + duration: 118.338873ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2326 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:55.737975+00:00\", \"bootscript\": 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\": \"801\", \"node_id\": \"30\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2326" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f7790243-eaf3-4245-95fc-163e2862fc86 + status: 200 OK + code: 200 + duration: 153.251023ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2372 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:55.737975+00:00\", \"bootscript\": 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\": \"801\", \"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: + - "2372" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c4e0dcda-afb2-43ab-a816-b082134ff651 + status: 200 OK + code: 200 + duration: 131.848927ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2372 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:55.737975+00:00\", \"bootscript\": 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\": \"801\", \"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: + - "2372" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b8105ae0-c0cf-48cf-a0ec-b87e26972373 + status: 200 OK + code: 200 + duration: 127.71857ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2326 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:55.737975+00:00\", \"bootscript\": 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\": \"801\", \"node_id\": \"30\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2326" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bc0b2d16-c0c1-4aca-ba49-34f5d3920381 + status: 200 OK + code: 200 + duration: 130.239702ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2326 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:55.737975+00:00\", \"bootscript\": 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\": \"801\", \"node_id\": \"30\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2326" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - baf16d7e-9503-4404-b822-7cee1a8eeab5 + status: 200 OK + code: 200 + duration: 112.963004ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2372 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:55.737975+00:00\", \"bootscript\": 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\": \"801\", \"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: + - "2372" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7d18000b-b511-47b6-97fb-3a13012509c1 + status: 200 OK + code: 200 + duration: 136.081452ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2326 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:42:55.737975+00:00\", \"bootscript\": 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\": \"801\", \"node_id\": \"30\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2326" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e7d3940e-ace5-4ab2-a9aa-fa226392e33a + status: 200 OK + code: 200 + duration: 131.738326ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2210 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:43:34.544395+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2210" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - caf3700b-2fae-4c15-8435-793d61a15111 + status: 200 OK + code: 200 + duration: 116.540208ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2210 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:43:34.544395+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2210" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 63d799ff-2c9f-4190-9bb5-c03134d8a87e + status: 200 OK + code: 200 + duration: 117.721905ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2210 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:43:34.544395+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2210" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0f32e7ec-c45c-4acf-b6e9-7fd4a837f822 + status: 200 OK + code: 200 + duration: 165.89934ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4a49173a-020c-4a70-ae46-eeeda1922189 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 521 + body: "{\"volume\": {\"id\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "521" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 505f27e7-a1cc-400c-a468-51e28107c073 + status: 200 OK + code: 200 + duration: 120.104834ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 450a7748-7d2e-4b55-966a-867835fe9458 + status: 200 OK + code: 200 + duration: 91.040312ms +- id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:37 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 846a38a2-971b-45ab-bcc1-2134c2c9a043 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 97.968229ms +- id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2256 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:43:34.544395+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2256" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 766be87c-09df-4d7b-b8e1-d0c5a12fcfcc + status: 200 OK + code: 200 + duration: 141.701358ms +- id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e37e5307-9b36-42a0-9451-ee621a09e02d + status: 200 OK + code: 200 + duration: 57.130621ms +- id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0143de76-bd79-4c74-8b14-0518c8b399f1 + status: 200 OK + code: 200 + duration: 38.58992ms +- id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2210 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:43:34.544395+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2210" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0547b7e1-e15c-4fc8-9181-77444399a684 + status: 200 OK + code: 200 + duration: 121.881928ms +- id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4a49173a-020c-4a70-ae46-eeeda1922189 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 521 + body: "{\"volume\": {\"id\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "521" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 280ef59e-b9ec-4346-8cec-0aee9b96bf1e + status: 200 OK + code: 200 + duration: 101.833329ms +- id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3582f61d-148b-42e9-b5f8-20d06e7dd938 + status: 200 OK + code: 200 + duration: 98.425797ms +- id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:38 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3941b547-c46d-4c7b-8c45-28d79937c1fc + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 98.858248ms +- id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2210 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:43:34.544395+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2210" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 70bfd415-7b6e-407b-aa3a-18562de3be5c + status: 200 OK + code: 200 + duration: 123.325156ms +- id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2256 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:43:34.544395+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2256" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4739de02-d514-4594-adf5-1f9f8c569032 + status: 200 OK + code: 200 + duration: 131.825391ms +- id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"ead6581f-d52f-4e37-bcfa-b21de5f9121a\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/action\", \"href_result\": \"/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"started_at\": \"2025-10-30T15:43:39.446375+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:39 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ead6581f-d52f-4e37-bcfa-b21de5f9121a + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b5d2531d-d9d4-497f-9fc4-605c39ac6196 + status: 202 Accepted + code: 202 + duration: 297.113386ms +- id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2232 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:43:39.220097+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: + - "2232" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6a99fc71-be7f-4bb4-8419-34d51666b0bc + status: 200 OK + code: 200 + duration: 118.818031ms +- id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2336 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:43:39.220097+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1702\", \"node_id\": \"27\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2336" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0cfcca5c-5fc6-4650-a11e-dca7ad2ebfba + status: 200 OK + code: 200 + duration: 146.967217ms +- id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2413 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:43:49.438496+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1702\", \"node_id\": \"27\"}, \"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: + - "2413" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2dde9455-fa8d-4125-bbec-40b932f73430 + status: 200 OK + code: 200 + duration: 134.13179ms +- id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"fa256204-caea-4cf1-8a77-6de58ec2fa70\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264/action\", \"href_result\": \"/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"started_at\": \"2025-10-30T15:43:50.126653+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:50 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fa256204-caea-4cf1-8a77-6de58ec2fa70 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2c5d676e-968a-433e-9723-13ae6a0618ab + status: 202 Accepted + code: 202 + duration: 261.411037ms +- id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2376 + body: "{\"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-relaxed-diffie\", \"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\": \"4a49173a-020c-4a70-ae46-eeeda1922189\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\", \"name\": \"tf-srv-relaxed-diffie\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:41:52.606017+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:6c:b3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:52.606017+00:00\", \"modification_date\": \"2025-10-30T15:43:49.913729+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"17\", \"hypervisor_id\": \"1702\", \"node_id\": \"27\"}, \"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: + - "2376" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 856a4bca-509e-469d-8f1e-fa2b84f56e8e + status: 200 OK + code: 200 + duration: 143.40707ms +- id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 53e13962-8259-480a-9785-1f2380d084ad + status: 404 Not Found + code: 404 + duration: 70.036263ms +- id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4a49173a-020c-4a70-ae46-eeeda1922189 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"4a49173a-020c-4a70-ae46-eeeda1922189\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0546be38-8740-47d1-8a44-994344dff0f7 + status: 404 Not Found + code: 404 + duration: 53.409522ms +- id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4a49173a-020c-4a70-ae46-eeeda1922189 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"4a49173a-020c-4a70-ae46-eeeda1922189\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 63c7d41b-aa13-496d-be99-bd1b7c0f1c16 + status: 404 Not Found + code: 404 + duration: 26.551309ms +- id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c0326bcd-1b30-4db7-8ef4-f58a9f032264 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"c0326bcd-1b30-4db7-8ef4-f58a9f032264\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 60c3e96f-e211-4d5a-bb39-14088d786caa + status: 404 Not Found + code: 404 + duration: 55.421537ms diff --git a/internal/services/instance/testdata/server-state2.cassette.yaml b/internal/services/instance/testdata/server-state2.cassette.yaml index ad5224634..67fdb19eb 100644 --- a/internal/services/instance/testdata/server-state2.cassette.yaml +++ b/internal/services/instance/testdata/server-state2.cassette.yaml @@ -1,2686 +1,2036 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e2951d04-1903-4322-97c8-574771f46cdd - status: 200 OK - code: 200 - duration: 48.367579ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:15 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 58a484b9-9c1f-47bc-a209-ff4c0c74592c - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 42.467546ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:15 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 789588cf-089f-4c4e-a4a9-2db88cf8a897 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 45.998568ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 298 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2219 - 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", "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: - - "2219" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 19792da4-7c91-45f5-8e74-66514d3ea605 - status: 201 Created - code: 201 - duration: 746.01857ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2265 - 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", "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: - - "2265" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0bc16734-4426-40b7-ba51-c50e538a327a - status: 200 OK - code: 200 - duration: 154.930325ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2265 - 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", "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: - - "2265" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 098dcd36-2289-4e2f-ab17-62141c0f2cc8 - status: 200 OK - code: 200 - duration: 129.962905ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2219 - 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", "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: - - "2219" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 996ccbe8-f4b7-469d-8ea2-852bdddc6687 - status: 200 OK - code: 200 - duration: 130.646885ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/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:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a0237ec0-142b-46f0-81f4-bf7016d9b7e2 - status: 200 OK - code: 200 - duration: 118.510239ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/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:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ce15d64a-7f83-4593-847b-9f3b52faf6c0 - status: 200 OK - code: 200 - duration: 109.908072ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/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:55:16 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 24e1fb08-d22e-45d5-8eae-cbb098a7104c - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 89.150695ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2265 - 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", "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: - - "2265" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 031d9a41-15fc-4218-8a68-d2a0c35b2df4 - status: 200 OK - code: 200 - duration: 157.299085ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 22d74902-b205-4647-b54b-2f0a01b029ca - status: 200 OK - code: 200 - duration: 48.647964ms - - 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: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 980cb9f7-9d21-49d0-b75a-80a1741c09ce - status: 200 OK - code: 200 - duration: 51.14857ms - - 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/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2265 - 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", "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: - - "2265" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b3fce6b9-7443-4771-bc3d-6ae1ac670ee5 - status: 200 OK - code: 200 - duration: 126.24342ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/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:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bed67da6-15b5-4943-a859-6a7a05f1e309 - status: 200 OK - code: 200 - duration: 103.528963ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/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:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 046b44aa-ccea-4cd2-88b1-2984b8a79519 - status: 200 OK - code: 200 - duration: 110.472928ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/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:55:17 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b209ed15-6d7e-4254-99f5-105fef2aeecf - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 95.718477ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c7c9e56f-d2dd-42b0-ab21-c1e0aec54013 - status: 200 OK - code: 200 - duration: 54.376085ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/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: 2265 - 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", "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: - - "2265" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 16fbcc3a-8fcf-4806-9878-5aa37447b942 - status: 200 OK - code: 200 - duration: 156.726825ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/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:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 328a0fed-9016-4604-8b7a-2625093437b0 - status: 200 OK - code: 200 - duration: 108.310916ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/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:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 41f23f26-bf07-481d-ab5e-43f9ca3a40f4 - status: 200 OK - code: 200 - duration: 107.769724ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/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:55:18 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e737b578-72ff-478c-a75f-d9516e6ae29d - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 87.839253ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2219 - 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", "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: - - "2219" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 58e9ad64-3036-4d83-ac2c-70e08cd3d135 - status: 200 OK - code: 200 - duration: 135.552459ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2265 - 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", "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: - - "2265" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 87204ee2-8523-4e0a-9227-774df705489a - status: 200 OK - code: 200 - duration: 117.013881ms - - id: 24 - 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/e519bbf5-2c04-4bb8-a360-f28f3078b39e/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a1f0d04d-40a8-44fe-a4d9-9bf81406cd9e - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3b539771-6a66-4427-a57b-10fbea801c7c - status: 202 Accepted - code: 202 - duration: 257.861682ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2287 - 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": "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: - - "2287" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a36757b5-65bb-44aa-b1b6-d6b2ac7e2f29 - status: 200 OK - code: 200 - duration: 128.512895ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2345 - 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": "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: - - "2345" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cf1f6072-095f-4527-b95b-235afedce1d7 - status: 200 OK - code: 200 - duration: 142.662457ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2391 - 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": "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: - - "2391" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 786edfd2-c303-4c13-9827-c5db5eafaeb3 - status: 200 OK - code: 200 - duration: 136.345726ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2376 - 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": "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: - - "2376" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 715975d3-9bbd-4931-abcb-22d3269010b1 - status: 200 OK - code: 200 - duration: 129.70045ms - - id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 26 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"stop_in_place"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ad8b9c68-b7a2-4ae7-aaaf-b21720a02e43 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 96c7b921-3884-4214-a1a4-a6e0988ad8fe - status: 202 Accepted - code: 202 - duration: 242.961328ms - - 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/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2391 - 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": "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: - - "2391" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b8c0bb9d-36e0-4750-bf16-1c4fe1b2d9ac - status: 200 OK - code: 200 - duration: 133.327123ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2391 - 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": "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: - - "2391" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cf317295-4801-4907-aa98-2f995f0eb011 - status: 200 OK - code: 200 - duration: 138.957493ms - - 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/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2345 - 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": "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: - - "2345" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 57d3854e-1e9b-4f91-b800-68665d2d1e8c - status: 200 OK - code: 200 - duration: 148.434789ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2345 - 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": "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: - - "2345" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cb666f8e-661e-4e4d-af84-0ec2315200c7 - status: 200 OK - code: 200 - duration: 135.849675ms - - 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/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2391 - 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": "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: - - "2391" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 345b3a43-6fb3-48db-b9f8-4cfdee4d4a1f - status: 200 OK - code: 200 - duration: 138.643893ms - - 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/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2391 - 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": "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: - - "2391" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 96aa8da2-c201-4591-aee1-e9725cfb3f17 - status: 200 OK - code: 200 - duration: 137.035266ms - - 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/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2391 - 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": "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: - - "2391" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8bec43f4-844f-43f2-9577-cdc96350fe5b - status: 200 OK - code: 200 - duration: 119.211473ms - - 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/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2345 - 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": "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: - - "2345" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3ed5760b-4b10-4baf-b46f-4c8c957da1ac - status: 200 OK - code: 200 - duration: 1.277147663s - - 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/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2345 - 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": "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: - - "2345" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 229e9631-1270-4897-8f71-75b0c5af3f6d - status: 200 OK - code: 200 - duration: 156.908107ms - - 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/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2381 - 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}}' - headers: - Content-Length: - - "2381" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f7f9e142-b3f6-4fd6-b725-3c2a6a27daa3 - status: 200 OK - code: 200 - duration: 149.878642ms - - 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/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2381 - 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}}' - headers: - Content-Length: - - "2381" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b71a52bb-e783-4951-87c1-b6c764b7f047 - status: 200 OK - code: 200 - duration: 133.737875ms - - 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/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 - 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:56:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4e7564fe-c052-4d08-9983-8b39b3b60c38 - status: 200 OK - code: 200 - duration: 102.061245ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/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:56:23 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d8ccc0aa-9584-441f-9fdc-70b7574f038a - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 134.87423ms - - 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/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2381 - 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}}' - headers: - Content-Length: - - "2381" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0c7315c7-aeae-4d51-834c-00c07856b392 - status: 200 OK - code: 200 - duration: 134.91639ms - - 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: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 87faf1aa-d35d-4ace-b13f-0284db4e69e4 - status: 200 OK - code: 200 - duration: 49.013014ms - - 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: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4c795296-c84c-444b-92fc-87a2b6343117 - status: 200 OK - code: 200 - duration: 52.334284ms - - 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/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:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2fc83d23-73b4-4d6c-a66f-703bbcb6d567 - status: 200 OK - code: 200 - duration: 134.277567ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/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:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e46ce9c5-6dcc-4505-b959-938636bffbe0 - status: 200 OK - code: 200 - duration: 92.021849ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/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:56:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 86aa129a-b4e6-4f16-8ed9-b7a54382c45b - status: 200 OK - code: 200 - duration: 104.236693ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e/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:56:24 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c6cf5a04-e99b-4ce6-a2ce-dc8f38b2c4bc - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 94.154608ms - - 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/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:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 48d2351b-53d3-40de-b0ad-108029dcec19 - status: 200 OK - code: 200 - duration: 134.491255ms - - 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/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2381 - 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}}' - headers: - Content-Length: - - "2381" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8d955274-e979-4e50-b767-be2ca8eb59e9 - status: 200 OK - code: 200 - duration: 147.71702ms - - id: 54 - 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/e519bbf5-2c04-4bb8-a360-f28f3078b39e/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 360 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:24 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ea02d8ca-6b5c-472a-9ac5-71095c73ce8e - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 39152baa-136b-4a55-8a49-e331b9a328c0 - status: 202 Accepted - code: 202 - duration: 199.853996ms - - 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/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2391 - 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": "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: - - "2391" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ee80a3c8-66d5-4691-b50e-308d56a59a63 - status: 200 OK - code: 200 - duration: 154.734314ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2422 - 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": "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: - - "2422" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 33cfcd96-13b0-4440-9c38-78681366e3b5 - status: 200 OK - code: 200 - duration: 138.767925ms - - id: 57 - 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/e519bbf5-2c04-4bb8-a360-f28f3078b39e/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:30 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/087b04e0-7029-414d-b884-3e487bea661d - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 82a2e834-948e-4b97-b6bf-1d9c3823ab97 - status: 202 Accepted - code: 202 - duration: 322.905342ms - - 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/e519bbf5-2c04-4bb8-a360-f28f3078b39e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2385 - 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": "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: - - "2385" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 17a3fb82-fa94-40ec-a60b-506214f77e7f - status: 200 OK - code: 200 - duration: 144.968552ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e - 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": "e519bbf5-2c04-4bb8-a360-f28f3078b39e"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 09c426c4-9009-4ae1-b9ba-b48b29969b83 - status: 404 Not Found - code: 404 - duration: 44.521114ms - - 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/volumes/a00d2687-22aa-47a8-8a0b-b5d59892f559 - 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": "a00d2687-22aa-47a8-8a0b-b5d59892f559"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a6ac0bb5-7929-411a-bb21-3d6cb228025a - status: 404 Not Found - code: 404 - duration: 49.738653ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a00d2687-22aa-47a8-8a0b-b5d59892f559 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"a00d2687-22aa-47a8-8a0b-b5d59892f559","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d94a3b0d-f41e-4a90-a6b9-1e8e470d08d4 - status: 404 Not Found - code: 404 - duration: 21.549303ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e519bbf5-2c04-4bb8-a360-f28f3078b39e - 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": "e519bbf5-2c04-4bb8-a360-f28f3078b39e"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:56:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 87337073-1448-4f8c-be16-2da336b7e8cb - status: 404 Not Found - code: 404 - duration: 65.552177ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 49fbb4f9-b619-4f6e-baa7-56c1bebaeffa + status: 200 OK + code: 200 + duration: 112.70618ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7575d46e-d1b8-4cdd-9d47-b77c87dd495f + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 34.549153ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5384dbb2-000f-487a-9b25-ea3ac853e811 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 67.411212ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 297 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-brave-chatterjee\",\"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\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2216 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2216" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6042d38e-3d24-46f7-acd3-86b66be1bb7b + status: 201 Created + code: 201 + duration: 1.024843104s +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2216 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2216" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a8d87a49-081a-4cf7-93d4-fdd635d51ec5 + status: 200 OK + code: 200 + duration: 131.523476ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2216 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2216" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eeaa63eb-8508-4c7d-b7c3-5d7b98b1777b + status: 200 OK + code: 200 + duration: 120.892987ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2216 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2216" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 02e790db-67af-4b7f-a9e1-0af432fb81d5 + status: 200 OK + code: 200 + duration: 125.004078ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2b1f1672-2ebd-48aa-8524-29d445573948 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 523 + body: "{\"volume\": {\"id\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "523" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aabdb3ac-c061-415d-aabc-af481b4c47e3 + status: 200 OK + code: 200 + duration: 96.617423ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7403f3f8-2c90-4ad4-8f0f-2b90751447de + status: 200 OK + code: 200 + duration: 97.206088ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2442d5ba-56db-40e2-90fa-eb41ab069c73 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 101.785787ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2216 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2216" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ee825c93-6169-4420-bd4e-f1352fbfd276 + status: 200 OK + code: 200 + duration: 140.804554ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5e5933ed-d0d9-4fdd-b68a-f3ad6e5acd00 + status: 200 OK + code: 200 + duration: 59.670273ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ca349646-5e08-454c-a320-72a506d41bec + status: 200 OK + code: 200 + duration: 53.59126ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2262 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 067f1643-481a-4c5f-bc4a-2dd2c39c3793 + status: 200 OK + code: 200 + duration: 149.938968ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2b1f1672-2ebd-48aa-8524-29d445573948 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 523 + body: "{\"volume\": {\"id\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "523" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cac05b20-9afb-4321-a896-7bdea85397f5 + status: 200 OK + code: 200 + duration: 119.723153ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - daac127a-c951-4826-af4a-f5325d8d9c00 + status: 200 OK + code: 200 + duration: 112.150629ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e52ed0d3-304c-4465-bace-6705ea0d7779 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 104.994686ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a18fea6f-a0e7-4d50-8552-63f9920434a3 + status: 200 OK + code: 200 + duration: 46.605817ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2216 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2216" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 673f8f24-73f3-48b4-a1ea-e3e705c33dc6 + status: 200 OK + code: 200 + duration: 127.354837ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2b1f1672-2ebd-48aa-8524-29d445573948 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 523 + body: "{\"volume\": {\"id\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "523" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 886edd03-09c4-4bcb-ae77-a81e6892bf11 + status: 200 OK + code: 200 + duration: 95.571261ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e96fcf4a-07a5-44ae-a3af-7182a6b95c5b + status: 200 OK + code: 200 + duration: 101.208825ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c2207213-1e69-45e4-a523-4ca85aec6d72 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 82.069085ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2216 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2216" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aa203bab-cda9-4021-acdf-cc046e6a4cfc + status: 200 OK + code: 200 + duration: 159.471788ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2216 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2216" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 93ba51ff-2670-4b72-910e-424f64ece7b1 + status: 200 OK + code: 200 + duration: 135.249195ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"51ba0cfe-225d-4d06-8635-0bb811eeeffa\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2/action\", \"href_result\": \"/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"started_at\": \"2025-10-30T15:41:50.922999+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:50 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/51ba0cfe-225d-4d06-8635-0bb811eeeffa + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8c15d4aa-9949-4768-8943-d19c50817d31 + status: 202 Accepted + code: 202 + duration: 300.885867ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2238 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:50.708857+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: + - Thu, 30 Oct 2025 15:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3bb8f39c-8668-471f-b355-c658d39ee16d + status: 200 OK + code: 200 + duration: 158.424775ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2341 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:50.708857+00:00\", \"bootscript\": 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}}" + headers: + Content-Length: + - "2341" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 10e888d3-10c8-4d1d-ab21-6c72bb37414a + status: 200 OK + code: 200 + duration: 129.613155ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2372 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:59.949765+00:00\", \"bootscript\": 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: + - "2372" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c09b86f8-38e9-49c5-add0-128555e8e4f3 + status: 200 OK + code: 200 + duration: 150.243022ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 26 + host: api.scaleway.com + body: "{\"action\":\"stop_in_place\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"64c8ab14-5cd4-4207-a33f-a446394098ff\", \"description\": \"server_stop_in_place\", \"status\": \"pending\", \"href_from\": \"/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2/action\", \"href_result\": \"/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"started_at\": \"2025-10-30T15:42:01.636894+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/64c8ab14-5cd4-4207-a33f-a446394098ff + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 35afb56c-2702-4657-80e0-aa1df5123c48 + status: 202 Accepted + code: 202 + duration: 231.632785ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2341 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:42:01.447968+00:00\", \"bootscript\": 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}}" + headers: + Content-Length: + - "2341" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ceadf587-0723-4c5e-a039-18f44286d815 + status: 200 OK + code: 200 + duration: 185.77563ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2341 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:42:01.447968+00:00\", \"bootscript\": 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}}" + headers: + Content-Length: + - "2341" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 188e714a-1a44-4a13-9c46-31d0b7c0573a + status: 200 OK + code: 200 + duration: 122.357278ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2341 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:42:01.447968+00:00\", \"bootscript\": 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}}" + headers: + Content-Length: + - "2341" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9aa872e4-db97-497b-a324-e019ca98fa3a + status: 200 OK + code: 200 + duration: 131.68719ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2341 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:42:01.447968+00:00\", \"bootscript\": 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}}" + headers: + Content-Length: + - "2341" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b16c15aa-f58c-4cb5-bbd8-579ae365b1fc + status: 200 OK + code: 200 + duration: 128.53601ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2341 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:42:01.447968+00:00\", \"bootscript\": 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}}" + headers: + Content-Length: + - "2341" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1d0a0602-9b21-4708-bd13-06eb4127df83 + status: 200 OK + code: 200 + duration: 144.436647ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2341 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:42:01.447968+00:00\", \"bootscript\": 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}}" + headers: + Content-Length: + - "2341" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 51fb4c67-7301-4ca5-943f-9bc742d7e619 + status: 200 OK + code: 200 + duration: 141.55319ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2387 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:42:01.447968+00:00\", \"bootscript\": 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: + - "2387" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ae6c3761-45c0-452a-bf3f-a5881ae2efa3 + status: 200 OK + code: 200 + duration: 154.520997ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2377 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:42:34.386249+00:00\", \"bootscript\": 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\": [\"poweron\", \"poweroff\", \"terminate\", \"reboot\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2377" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 62a1355c-b913-4a3e-bf4f-5a8a9f1b60c3 + status: 200 OK + code: 200 + duration: 128.648306ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2377 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:42:34.386249+00:00\", \"bootscript\": 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\": [\"poweron\", \"poweroff\", \"terminate\", \"reboot\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2377" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 61e5c26d-e812-4eaa-bba1-3217a358e955 + status: 200 OK + code: 200 + duration: 137.614755ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2423 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:42:34.386249+00:00\", \"bootscript\": 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\": [\"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: + - "2423" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aa8f62ef-848a-456a-bf3c-ed6c9b64f0e6 + status: 200 OK + code: 200 + duration: 126.673573ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2b1f1672-2ebd-48aa-8524-29d445573948 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 523 + body: "{\"volume\": {\"id\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "523" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6e6f3600-e919-4e53-aa00-055e58ab9670 + status: 200 OK + code: 200 + duration: 104.67078ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b8906883-1ec6-4b81-aa51-d4f1ef87f1b0 + status: 200 OK + code: 200 + duration: 96.653471ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ea886a3c-fe3e-4f5d-bfdb-5fbaa535659b + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 124.340185ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2423 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:42:34.386249+00:00\", \"bootscript\": 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\": [\"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: + - "2423" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b0b72ccc-14fa-4b21-9c07-3e9ebcd867bf + status: 200 OK + code: 200 + duration: 118.682002ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c19c47ba-5ea3-4197-8caa-1afd50488fa5 + status: 200 OK + code: 200 + duration: 38.070132ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c0fe151f-ed7f-4fee-9625-5c309bb4f255 + status: 200 OK + code: 200 + duration: 214.375303ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2377 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:42:34.386249+00:00\", \"bootscript\": 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\": [\"poweron\", \"poweroff\", \"terminate\", \"reboot\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2377" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8af91a4d-2396-42ff-90a9-5ac71ede6e10 + status: 200 OK + code: 200 + duration: 124.741409ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2b1f1672-2ebd-48aa-8524-29d445573948 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 523 + body: "{\"volume\": {\"id\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "523" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - de5bbf30-f2b3-4e33-90ab-b092a60ed99b + status: 200 OK + code: 200 + duration: 87.469344ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eae40b2b-3676-4859-b75c-17f74cd6a063 + status: 200 OK + code: 200 + duration: 107.601477ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3af05b30-8dd6-495f-b469-88c5efcdb34c + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 118.379244ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2377 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:42:34.386249+00:00\", \"bootscript\": 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\": [\"poweron\", \"poweroff\", \"terminate\", \"reboot\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2377" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a18135e3-4a12-43b6-9845-6cbbfa2180d1 + status: 200 OK + code: 200 + duration: 160.82326ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2377 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:42:34.386249+00:00\", \"bootscript\": 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\": [\"poweron\", \"poweroff\", \"terminate\", \"reboot\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2377" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - de9fdb5f-62d6-4da4-b86b-4a0f3b2e401f + status: 200 OK + code: 200 + duration: 125.097807ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 360 + body: "{\"task\": {\"id\": \"873bf498-a5f1-46d0-afdb-b0a73672a56a\", \"description\": \"server_poweron_in_place\", \"status\": \"pending\", \"href_from\": \"/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2/action\", \"href_result\": \"/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"started_at\": \"2025-10-30T15:42:40.175207+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "360" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/873bf498-a5f1-46d0-afdb-b0a73672a56a + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1b429d50-9d6a-4f08-b4ea-4d42db132741 + status: 202 Accepted + code: 202 + duration: 220.844287ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2387 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:42:34.386249+00:00\", \"bootscript\": 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: + - "2387" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fedec206-118e-4353-ad06-acbfddb2cc4e + status: 200 OK + code: 200 + duration: 134.175696ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2418 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:42:41.164620+00:00\", \"bootscript\": 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: + - "2418" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e09a84fb-8c7d-4527-9061-d8acba401b85 + status: 200 OK + code: 200 + duration: 145.668065ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"6c8a40f6-9f69-49f6-878d-bdf930b4fe27\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2/action\", \"href_result\": \"/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"started_at\": \"2025-10-30T15:42:45.773603+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:45 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6c8a40f6-9f69-49f6-878d-bdf930b4fe27 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aa553ab3-8087-433b-b083-4b9b70025432 + status: 202 Accepted + code: 202 + duration: 306.005264ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2381 + body: "{\"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-brave-chatterjee\", \"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\": \"2b1f1672-2ebd-48aa-8524-29d445573948\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\", \"name\": \"tf-srv-brave-chatterjee\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:41:47.744622+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:6c:9b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.744622+00:00\", \"modification_date\": \"2025-10-30T15:42:45.522032+00:00\", \"bootscript\": 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: + - "2381" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c4a8d452-553e-4081-a24a-d33fe9d50466 + status: 200 OK + code: 200 + duration: 126.989306ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7abee52c-5b96-4944-a812-bbca9aa05904 + status: 404 Not Found + code: 404 + duration: 59.625877ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2b1f1672-2ebd-48aa-8524-29d445573948 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"2b1f1672-2ebd-48aa-8524-29d445573948\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3dfe61e7-652d-4594-a972-33bf1de2a18a + status: 404 Not Found + code: 404 + duration: 25.190824ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2b1f1672-2ebd-48aa-8524-29d445573948 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"2b1f1672-2ebd-48aa-8524-29d445573948\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 62b8b391-49af-4352-a7d5-50fcbd33a710 + status: 404 Not Found + code: 404 + duration: 19.680797ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/72aff440-5ee8-432c-8734-0a7b2d4a1fb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"72aff440-5ee8-432c-8734-0a7b2d4a1fb2\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1c13170b-8751-43a3-894f-69408a2fc94c + status: 404 Not Found + code: 404 + duration: 67.981991ms 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 dd357a9e2..189d24cc1 100644 --- a/internal/services/instance/testdata/server-user-data-basic.cassette.yaml +++ b/internal/services/instance/testdata/server-user-data-basic.cassette.yaml @@ -1,1568 +1,1294 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - de1be450-4b19-4764-bc32-fc3fe04f92f0 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 36.298551ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b3fcf099-b0e6-49bc-b792-ad7e9c99d880 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 37.243228ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c206f3f9-360b-4be0-8669-c7a273c25a43 - status: 200 OK - code: 200 - duration: 52.813962ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 234 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1738 - uncompressed: false - 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: - - "1738" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d25367e6-0fd4-4a39-985e-8372210ddf23 - status: 201 Created - code: 201 - duration: 1.052214787s - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1738 - uncompressed: false - 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: - - "1738" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 57a9539a-e24e-45d9-a9b5-0511ee08ec1e - status: 200 OK - code: 200 - duration: 138.840747ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1784 - uncompressed: false - 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: - - "1784" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e8b7d7dc-f7cb-457b-a958-338680b79415 - status: 200 OK - code: 200 - duration: 160.891457ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d60a2be4-5b40-43ac-8522-0123bb6543fa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7b098e4a-11c4-4b93-9974-b46f5bd98f95 - status: 200 OK - code: 200 - duration: 74.226079ms - - id: 7 - 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/de5b848b-923b-44f8-b7ca-0effb9118643/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/91b68373-c3df-4ea8-888e-b7b3b3b28f9b - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9035b114-add1-4327-ba71-6b4dcd8e5f76 - status: 202 Accepted - code: 202 - duration: 274.858396ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1806 - uncompressed: false - 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: - - "1806" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - daf10036-72f5-4004-af7d-5c6ac843f005 - status: 200 OK - code: 200 - duration: 147.503525ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1894 - uncompressed: false - 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: - - "1894" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ea35e965-72c8-40b6-bcab-1cef780bd5bc - status: 200 OK - code: 200 - duration: 138.730824ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1894 - uncompressed: false - 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: - - "1894" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 628afce8-88fe-4b7b-9db5-b7ce56be85be - status: 200 OK - code: 200 - duration: 141.537231ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d60a2be4-5b40-43ac-8522-0123bb6543fa - 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": "d60a2be4-5b40-43ac-8522-0123bb6543fa"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 131290fb-00fb-4bea-b8ae-f85b7462cd21 - status: 404 Not Found - code: 404 - duration: 29.187486ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/d60a2be4-5b40-43ac-8522-0123bb6543fa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 62e2cf9a-995c-404a-9768-9e33f7fcc8a6 - status: 200 OK - code: 200 - duration: 91.090495ms - - 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/de5b848b-923b-44f8-b7ca-0effb9118643/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:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3c360325-b0a1-43c8-b666-e7d43cfbfa85 - status: 200 OK - code: 200 - duration: 105.223811ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643/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:54:03 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 499b72a8-19e0-46ab-ac6f-d332ccde55ec - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 102.585398ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1894 - uncompressed: false - 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: - - "1894" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b99e2976-2d8b-48fd-aae7-faa1980e332d - status: 200 OK - code: 200 - duration: 126.490517ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 49 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/de5b848b-923b-44f8-b7ca-0effb9118643/user_data/cloud-init - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Type: - - text/plain - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a7af3277-cbe5-4bf5-91bf-4d492b1cdd2e - status: 204 No Content - code: 204 - duration: 134.293046ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8ad44a30-be95-405e-ba6a-1055b440183b - status: 200 OK - code: 200 - duration: 132.443679ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643/user_data/cloud-init - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 49 - uncompressed: false - body: | - #cloud-config - apt-update: true - apt-upgrade: true - headers: - Content-Length: - - "49" - Content-Type: - - text/plain - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - df5c5d98-46b4-49e5-8810-8d3e3f47e63f - status: 200 OK - code: 200 - duration: 97.968445ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1894 - uncompressed: false - 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: - - "1894" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 13504132-f4b8-4294-a9fe-6aff6a06b55d - status: 200 OK - code: 200 - duration: 179.993118ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d60a2be4-5b40-43ac-8522-0123bb6543fa - 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": "d60a2be4-5b40-43ac-8522-0123bb6543fa"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c4ecda69-89ca-4ada-8960-d69e84b7c7d2 - status: 404 Not Found - code: 404 - duration: 33.800421ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d60a2be4-5b40-43ac-8522-0123bb6543fa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8e1435b9-06ef-4876-afe2-f19ece4c5046 - status: 200 OK - code: 200 - duration: 94.308912ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 29 - uncompressed: false - body: '{"user_data": ["cloud-init"]}' - headers: - Content-Length: - - "29" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 76c96685-ee55-44c0-b6c4-833fb5ae5bd4 - status: 200 OK - code: 200 - duration: 107.685074ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643/user_data/cloud-init - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 49 - uncompressed: false - body: | - #cloud-config - apt-update: true - apt-upgrade: true - headers: - Content-Length: - - "49" - Content-Type: - - text/plain - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fc58a894-2cf2-4ede-8215-79e2022d80b1 - status: 200 OK - code: 200 - duration: 95.511251ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643/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:54:04 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4010dbb6-40f1-4b14-9b41-a576e47e9a34 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 93.051191ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1940 - uncompressed: false - 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: - - "1940" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a931cb6a-239b-4006-8e31-761dc6c8c83e - status: 200 OK - code: 200 - duration: 136.714544ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643/user_data/cloud-init - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 49 - uncompressed: false - body: | - #cloud-config - apt-update: true - apt-upgrade: true - headers: - Content-Length: - - "49" - Content-Type: - - text/plain - Date: - - Wed, 29 Oct 2025 22:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 95eb44e1-37cf-4ae1-bb7b-6fd004d15010 - status: 200 OK - code: 200 - duration: 99.547578ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643/user_data/cloud-init - 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:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 78f52829-f6b1-4aa0-9fea-a4e310dd6e52 - status: 204 No Content - code: 204 - duration: 112.31981ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1894 - uncompressed: false - 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: - - "1894" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 04ab4827-b23d-4190-8edf-b26e761d12d7 - status: 200 OK - code: 200 - duration: 152.898245ms - - 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/de5b848b-923b-44f8-b7ca-0effb9118643 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1894 - uncompressed: false - 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: - - "1894" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ed167008-60ac-4e5c-bc80-7951ee7186c4 - status: 200 OK - code: 200 - duration: 177.930642ms - - id: 30 - 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/de5b848b-923b-44f8-b7ca-0effb9118643/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:06 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/678ede22-4513-45cf-bd18-13c965b64993 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2f5f915c-b244-4468-8001-74f2a9335eda - status: 202 Accepted - code: 202 - duration: 279.287804ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/de5b848b-923b-44f8-b7ca-0effb9118643 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1903 - uncompressed: false - 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: - - "1903" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1eb1d327-d12b-4081-8242-b90934a52d5a - status: 200 OK - code: 200 - duration: 173.3678ms - - 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/de5b848b-923b-44f8-b7ca-0effb9118643 - 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": "de5b848b-923b-44f8-b7ca-0effb9118643"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - de1f3396-9e71-42d6-8225-f275092d248a - status: 404 Not Found - code: 404 - duration: 69.947763ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d60a2be4-5b40-43ac-8522-0123bb6543fa - 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": "d60a2be4-5b40-43ac-8522-0123bb6543fa"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a199f36c-d1f7-4e6b-8210-df363953b954 - status: 404 Not Found - code: 404 - duration: 28.844614ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/d60a2be4-5b40-43ac-8522-0123bb6543fa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1078b12e-587d-43c5-8884-3d25802035c2 - status: 200 OK - code: 200 - duration: 86.219427ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/d60a2be4-5b40-43ac-8522-0123bb6543fa - 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:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5bd2184a-581b-4e6a-9d06-8fae0110dfa4 - status: 204 No Content - code: 204 - duration: 171.840448ms - - 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/de5b848b-923b-44f8-b7ca-0effb9118643 - 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": "de5b848b-923b-44f8-b7ca-0effb9118643"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 95539342-cb80-4a20-afe0-2d674305d086 - status: 404 Not Found - code: 404 - duration: 49.364134ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 24cdf2ce-ec72-43ca-aaa2-399edf3fc66a + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 55.717718ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e81166ae-5013-4d80-a802-f15d280ea217 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 48.402658ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8f519e4f-c01e-40c4-bcad-56e417a03894 + status: 200 OK + code: 200 + duration: 50.618304ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 234 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-awesome-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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1738 + body: "{\"server\": {\"id\": \"74b7f724-ac9a-40f1-9576-c3e362abcf83\", \"name\": \"tf-srv-awesome-beaver\", \"arch\": \"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-beaver\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"78a5aaa0-b88c-4d81-bf19-1b6047aafbe2\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.667549+00:00\", \"modification_date\": \"2025-10-30T15:41:47.667549+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:41:48 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 08046544-d2d0-4ec3-a1c3-dbcda4c264dd + status: 201 Created + code: 201 + duration: 1.422630355s +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1738 + body: "{\"server\": {\"id\": \"74b7f724-ac9a-40f1-9576-c3e362abcf83\", \"name\": \"tf-srv-awesome-beaver\", \"arch\": \"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-beaver\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"78a5aaa0-b88c-4d81-bf19-1b6047aafbe2\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.667549+00:00\", \"modification_date\": \"2025-10-30T15:41:47.667549+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 22ab12c7-7e17-47cc-9ee8-8d8ef0b37d46 + status: 200 OK + code: 200 + duration: 145.05673ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1738 + body: "{\"server\": {\"id\": \"74b7f724-ac9a-40f1-9576-c3e362abcf83\", \"name\": \"tf-srv-awesome-beaver\", \"arch\": \"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-beaver\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"78a5aaa0-b88c-4d81-bf19-1b6047aafbe2\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.667549+00:00\", \"modification_date\": \"2025-10-30T15:41:47.667549+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 625b7e42-0b1d-456c-8d1f-a48cd5756254 + status: 200 OK + code: 200 + duration: 135.937916ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/78a5aaa0-b88c-4d81-bf19-1b6047aafbe2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"78a5aaa0-b88c-4d81-bf19-1b6047aafbe2\", \"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-30T15:41:47.844829Z\", \"updated_at\":\"2025-10-30T15:41:47.844829Z\", \"references\":[{\"id\":\"020d0643-5f02-4134-912e-fe9a3c1e2fbb\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"74b7f724-ac9a-40f1-9576-c3e362abcf83\", \"created_at\":\"2025-10-30T15:41:47.844829Z\", \"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: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b42f22ff-1bdf-4a1a-b955-94e0fbdeef5a + status: 200 OK + code: 200 + duration: 85.49955ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"78493b88-ab7a-49a4-90ce-4bcb2e4651d8\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83/action\", \"href_result\": \"/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83\", \"started_at\": \"2025-10-30T15:41:48.898323+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/78493b88-ab7a-49a4-90ce-4bcb2e4651d8 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 99ef2f6e-a075-4aef-ada7-b998c666cf74 + status: 202 Accepted + code: 202 + duration: 236.164298ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1806 + body: "{\"server\": {\"id\": \"74b7f724-ac9a-40f1-9576-c3e362abcf83\", \"name\": \"tf-srv-awesome-beaver\", \"arch\": \"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-beaver\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"78a5aaa0-b88c-4d81-bf19-1b6047aafbe2\", \"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:6c:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.667549+00:00\", \"modification_date\": \"2025-10-30T15:41:48.724402+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: + - "1806" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d32a0428-29c7-4938-9663-9672d4265f63 + status: 200 OK + code: 200 + duration: 142.367546ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1894 + body: "{\"server\": {\"id\": \"74b7f724-ac9a-40f1-9576-c3e362abcf83\", \"name\": \"tf-srv-awesome-beaver\", \"arch\": \"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-beaver\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"78a5aaa0-b88c-4d81-bf19-1b6047aafbe2\", \"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:6c:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.667549+00:00\", \"modification_date\": \"2025-10-30T15:41:51.188407+00:00\", \"bootscript\": 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\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1894" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 06b798e6-38cd-48ca-bbaf-693a0a7da0d4 + status: 200 OK + code: 200 + duration: 153.431681ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1894 + body: "{\"server\": {\"id\": \"74b7f724-ac9a-40f1-9576-c3e362abcf83\", \"name\": \"tf-srv-awesome-beaver\", \"arch\": \"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-beaver\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"78a5aaa0-b88c-4d81-bf19-1b6047aafbe2\", \"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:6c:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.667549+00:00\", \"modification_date\": \"2025-10-30T15:41:51.188407+00:00\", \"bootscript\": 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\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1894" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 94a4be8c-f606-4f89-9a1f-02b48dbaa3a6 + status: 200 OK + code: 200 + duration: 128.141464ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/78a5aaa0-b88c-4d81-bf19-1b6047aafbe2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"78a5aaa0-b88c-4d81-bf19-1b6047aafbe2\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ff8e57b3-d5b4-4b60-a332-11dca4742509 + status: 404 Not Found + code: 404 + duration: 26.393957ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/78a5aaa0-b88c-4d81-bf19-1b6047aafbe2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"78a5aaa0-b88c-4d81-bf19-1b6047aafbe2\", \"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-30T15:41:47.844829Z\", \"updated_at\":\"2025-10-30T15:41:47.844829Z\", \"references\":[{\"id\":\"020d0643-5f02-4134-912e-fe9a3c1e2fbb\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"74b7f724-ac9a-40f1-9576-c3e362abcf83\", \"created_at\":\"2025-10-30T15:41:47.844829Z\", \"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: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1381b863-204b-4672-9d89-66b012203033 + status: 200 OK + code: 200 + duration: 81.507483ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 07868507-b188-4765-b442-a5e68aca2ed6 + status: 200 OK + code: 200 + duration: 95.268945ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - af7b58b8-4315-4a66-9752-a83dda174d84 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 110.560628ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1940 + body: "{\"server\": {\"id\": \"74b7f724-ac9a-40f1-9576-c3e362abcf83\", \"name\": \"tf-srv-awesome-beaver\", \"arch\": \"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-beaver\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"78a5aaa0-b88c-4d81-bf19-1b6047aafbe2\", \"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:6c:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.667549+00:00\", \"modification_date\": \"2025-10-30T15:41:51.188407+00:00\", \"bootscript\": 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\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "1940" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7bdf9d36-ee6a-4cc6-8cf4-a622d2dca847 + status: 200 OK + code: 200 + duration: 129.973159ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 49 + host: api.scaleway.com + body: "#cloud-config\napt-update: true\napt-upgrade: true\n" + 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/74b7f724-ac9a-40f1-9576-c3e362abcf83/user_data/cloud-init + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - text/plain + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5e1a6069-b94e-4958-9cbf-a8c316736e16 + status: 204 No Content + code: 204 + duration: 116.667753ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1894 + body: "{\"server\": {\"id\": \"74b7f724-ac9a-40f1-9576-c3e362abcf83\", \"name\": \"tf-srv-awesome-beaver\", \"arch\": \"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-beaver\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"78a5aaa0-b88c-4d81-bf19-1b6047aafbe2\", \"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:6c:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.667549+00:00\", \"modification_date\": \"2025-10-30T15:41:51.188407+00:00\", \"bootscript\": 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\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1894" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3a5ca63c-989c-42d6-a731-edff5e0ba6f8 + status: 200 OK + code: 200 + duration: 162.892276ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83/user_data/cloud-init + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 49 + body: "#cloud-config\napt-update: true\napt-upgrade: true\n" + headers: + Content-Length: + - "49" + Content-Type: + - text/plain + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6e21c3d1-7d17-4ae4-8372-8ce64c8a5d76 + status: 200 OK + code: 200 + duration: 97.328809ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1894 + body: "{\"server\": {\"id\": \"74b7f724-ac9a-40f1-9576-c3e362abcf83\", \"name\": \"tf-srv-awesome-beaver\", \"arch\": \"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-beaver\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"78a5aaa0-b88c-4d81-bf19-1b6047aafbe2\", \"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:6c:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.667549+00:00\", \"modification_date\": \"2025-10-30T15:41:51.188407+00:00\", \"bootscript\": 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\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1894" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8b2b67bd-a59f-4200-a67c-0d11a013b6f2 + status: 200 OK + code: 200 + duration: 127.485534ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/78a5aaa0-b88c-4d81-bf19-1b6047aafbe2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"78a5aaa0-b88c-4d81-bf19-1b6047aafbe2\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e1abf089-b27c-4593-9ea7-95bef577395a + status: 404 Not Found + code: 404 + duration: 26.713346ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/78a5aaa0-b88c-4d81-bf19-1b6047aafbe2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"78a5aaa0-b88c-4d81-bf19-1b6047aafbe2\", \"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-30T15:41:47.844829Z\", \"updated_at\":\"2025-10-30T15:41:47.844829Z\", \"references\":[{\"id\":\"020d0643-5f02-4134-912e-fe9a3c1e2fbb\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"74b7f724-ac9a-40f1-9576-c3e362abcf83\", \"created_at\":\"2025-10-30T15:41:47.844829Z\", \"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: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bceb0b56-8870-47f8-87fe-6dfc6d550c3a + status: 200 OK + code: 200 + duration: 89.219618ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 29 + body: "{\"user_data\": [\"cloud-init\"]}" + headers: + Content-Length: + - "29" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 795fa9de-8ede-4512-b456-4f55890a75ef + status: 200 OK + code: 200 + duration: 101.56253ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83/user_data/cloud-init + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 49 + body: "#cloud-config\napt-update: true\napt-upgrade: true\n" + headers: + Content-Length: + - "49" + Content-Type: + - text/plain + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9a14e808-5865-4f65-bcd9-1f0c0ff2fe84 + status: 200 OK + code: 200 + duration: 85.553493ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:55 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6c533130-49ca-4934-9061-72cffd3ea5ce + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 81.931308ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1894 + body: "{\"server\": {\"id\": \"74b7f724-ac9a-40f1-9576-c3e362abcf83\", \"name\": \"tf-srv-awesome-beaver\", \"arch\": \"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-beaver\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"78a5aaa0-b88c-4d81-bf19-1b6047aafbe2\", \"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:6c:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.667549+00:00\", \"modification_date\": \"2025-10-30T15:41:51.188407+00:00\", \"bootscript\": 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\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1894" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3f9218e2-5904-4d26-b632-b24e3baa1348 + status: 200 OK + code: 200 + duration: 130.775044ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83/user_data/cloud-init + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 49 + body: "#cloud-config\napt-update: true\napt-upgrade: true\n" + headers: + Content-Length: + - "49" + Content-Type: + - text/plain + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f83b233b-c625-4650-8e37-04802847a88f + status: 200 OK + code: 200 + duration: 88.796745ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83/user_data/cloud-init + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2a4da35a-a586-44aa-b8a5-a71b479bf438 + status: 204 No Content + code: 204 + duration: 137.947467ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1894 + body: "{\"server\": {\"id\": \"74b7f724-ac9a-40f1-9576-c3e362abcf83\", \"name\": \"tf-srv-awesome-beaver\", \"arch\": \"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-beaver\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"78a5aaa0-b88c-4d81-bf19-1b6047aafbe2\", \"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:6c:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.667549+00:00\", \"modification_date\": \"2025-10-30T15:41:51.188407+00:00\", \"bootscript\": 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\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1894" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6e976fde-0d34-40eb-be93-9bd06cca5e88 + status: 200 OK + code: 200 + duration: 121.779701ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1894 + body: "{\"server\": {\"id\": \"74b7f724-ac9a-40f1-9576-c3e362abcf83\", \"name\": \"tf-srv-awesome-beaver\", \"arch\": \"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-beaver\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"78a5aaa0-b88c-4d81-bf19-1b6047aafbe2\", \"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:6c:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.667549+00:00\", \"modification_date\": \"2025-10-30T15:41:51.188407+00:00\", \"bootscript\": 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\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1894" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9c54cc15-2775-4c2d-86d5-0283b120be0f + status: 200 OK + code: 200 + duration: 123.958198ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"afe2b6dd-63ef-45ad-9f28-fdf77eb345c0\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83/action\", \"href_result\": \"/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83\", \"started_at\": \"2025-10-30T15:41:57.022684+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:57 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/afe2b6dd-63ef-45ad-9f28-fdf77eb345c0 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - da6ae519-6ab2-4c44-887c-a369a439d6b3 + status: 202 Accepted + code: 202 + duration: 294.698535ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1857 + body: "{\"server\": {\"id\": \"74b7f724-ac9a-40f1-9576-c3e362abcf83\", \"name\": \"tf-srv-awesome-beaver\", \"arch\": \"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-beaver\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"78a5aaa0-b88c-4d81-bf19-1b6047aafbe2\", \"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:6c:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.667549+00:00\", \"modification_date\": \"2025-10-30T15:41:56.784646+00:00\", \"bootscript\": 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\": \"11\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 66834b3f-93ae-4862-8a45-ce12b9a23432 + status: 200 OK + code: 200 + duration: 139.877257ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1857 + body: "{\"server\": {\"id\": \"74b7f724-ac9a-40f1-9576-c3e362abcf83\", \"name\": \"tf-srv-awesome-beaver\", \"arch\": \"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-beaver\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"78a5aaa0-b88c-4d81-bf19-1b6047aafbe2\", \"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:6c:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.667549+00:00\", \"modification_date\": \"2025-10-30T15:41:56.784646+00:00\", \"bootscript\": 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\": \"11\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 73a89239-5eb4-4be0-aa98-9e10633ae1c6 + status: 200 OK + code: 200 + duration: 183.251586ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1903 + body: "{\"server\": {\"id\": \"74b7f724-ac9a-40f1-9576-c3e362abcf83\", \"name\": \"tf-srv-awesome-beaver\", \"arch\": \"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-beaver\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"78a5aaa0-b88c-4d81-bf19-1b6047aafbe2\", \"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:6c:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.667549+00:00\", \"modification_date\": \"2025-10-30T15:41:56.784646+00:00\", \"bootscript\": 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\": \"11\"}, \"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: + - "1903" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d08f7d19-af50-42ab-b350-445a8233f41d + status: 200 OK + code: 200 + duration: 133.461036ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"74b7f724-ac9a-40f1-9576-c3e362abcf83\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e5279114-0f70-4474-a1f3-9b1be10f8d6e + status: 404 Not Found + code: 404 + duration: 41.273498ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/78a5aaa0-b88c-4d81-bf19-1b6047aafbe2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"78a5aaa0-b88c-4d81-bf19-1b6047aafbe2\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3841e94e-9f32-4c11-b123-42add67bcdc0 + status: 404 Not Found + code: 404 + duration: 29.161329ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/78a5aaa0-b88c-4d81-bf19-1b6047aafbe2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"78a5aaa0-b88c-4d81-bf19-1b6047aafbe2\", \"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-30T15:41:47.844829Z\", \"updated_at\":\"2025-10-30T15:42:08.488653Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:08.488653Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 15fcc6ac-738d-4510-b8e2-076b5ee2d482 + status: 200 OK + code: 200 + duration: 83.75382ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/78a5aaa0-b88c-4d81-bf19-1b6047aafbe2 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fe90f7a2-157a-4610-9e64-3f8acb20f302 + status: 204 No Content + code: 204 + duration: 163.38145ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/74b7f724-ac9a-40f1-9576-c3e362abcf83 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"74b7f724-ac9a-40f1-9576-c3e362abcf83\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8563f65e-f6be-448f-9e70-7a152ddd21e0 + status: 404 Not Found + code: 404 + duration: 44.927321ms 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 d14063e5d..52b222278 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 @@ -1,1608 +1,1265 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f9e21c3f-ba99-4c60-92bb-aac8fd22c131 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 121.186553ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d3d8ea7e-1acb-417c-98d9-5e352d345822 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 53.054825ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 85ca4311-f2ca-40c0-836d-d53dce9b4524 - status: 200 OK - code: 200 - duration: 39.550271ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 237 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-srv-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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1744 - uncompressed: false - 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: - - "1744" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 02bd74f5-2189-47d6-bc48-7df1f0d2de13 - status: 201 Created - code: 201 - duration: 1.386664002s - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1790 - uncompressed: false - 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: - - "1790" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 44ee13d3-02dc-4b91-9f78-890a0d0d2561 - status: 200 OK - code: 200 - duration: 123.270992ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1790 - uncompressed: false - 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: - - "1790" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ed7551f8-9262-46b6-a0e5-1eef021dd085 - status: 200 OK - code: 200 - duration: 151.191355ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/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:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 22b86df5-5b7e-44e6-a700-b7f139394c8e - status: 200 OK - code: 200 - duration: 103.824727ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 49 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/cb369fee-a42e-41cf-a63d-83bfeb719534/user_data/cloud-init - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Type: - - text/plain - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 65ff6fde-bad1-44eb-bf67-0775f0a426f3 - status: 204 No Content - code: 204 - duration: 137.651525ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 3 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/cb369fee-a42e-41cf-a63d-83bfeb719534/user_data/foo - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Type: - - text/plain - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c792c609-f633-4aad-b005-24b49d3e6c82 - status: 204 No Content - code: 204 - duration: 142.394906ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1790 - uncompressed: false - 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: - - "1790" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d8c296fc-8ec0-4484-b4c3-bed3ed33d885 - status: 200 OK - code: 200 - duration: 160.970803ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/37ed5fb2-2a0d-43a8-904a-da5b9f394201 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f59d4c13-6b8c-4c9d-b162-059606454d0e - status: 200 OK - code: 200 - duration: 103.985669ms - - id: 11 - 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/cb369fee-a42e-41cf-a63d-83bfeb719534/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:21 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/39fc97d5-40dd-4d3d-9679-a13e8d362ef6 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - eb3fbad5-127d-4744-9779-815b9484fb6e - status: 202 Accepted - code: 202 - duration: 309.057583ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1812 - uncompressed: false - 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: - - "1812" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c564084f-0235-47be-9195-4921cd0315fe - status: 200 OK - code: 200 - duration: 139.462692ms - - 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/cb369fee-a42e-41cf-a63d-83bfeb719534 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1900 - uncompressed: false - 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: - - "1900" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aeea60b7-6543-4b6c-a6db-80ca592c15c1 - status: 200 OK - code: 200 - duration: 138.196586ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1946 - uncompressed: false - 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: - - "1946" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 39919e9d-87ca-4304-99dc-9ece847ba3d1 - status: 200 OK - code: 200 - duration: 141.514111ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/37ed5fb2-2a0d-43a8-904a-da5b9f394201 - 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": "37ed5fb2-2a0d-43a8-904a-da5b9f394201"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b729127f-0040-42fc-bbd3-f764a79bc220 - status: 404 Not Found - code: 404 - duration: 25.028816ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/37ed5fb2-2a0d-43a8-904a-da5b9f394201 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - df7f4c6f-9551-4142-bda0-145abb88457b - status: 200 OK - code: 200 - duration: 85.570783ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 36 - uncompressed: false - body: '{"user_data": ["cloud-init", "foo"]}' - headers: - Content-Length: - - "36" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 713fd5f4-aae6-43cb-8523-41132a673091 - status: 200 OK - code: 200 - duration: 100.381169ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/user_data/cloud-init - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 49 - uncompressed: false - body: | - #cloud-config - apt_update: true - apt_upgrade: true - headers: - Content-Length: - - "49" - Content-Type: - - text/plain - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 83ebc0c3-bdb9-4df3-9928-14e001ca1a72 - status: 200 OK - code: 200 - duration: 99.181656ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/user_data/foo - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 3 - uncompressed: false - body: bar - headers: - Content-Length: - - "3" - Content-Type: - - text/plain - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2d65ad71-2357-4639-9c20-d0ed26655336 - status: 200 OK - code: 200 - duration: 92.151328ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/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:55:27 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aaaa2c30-b0ee-4c2a-893d-3fe0a5fd5f21 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 96.563019ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1900 - uncompressed: false - 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: - - "1900" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6d454c11-92ab-494a-8448-56ebe5b53ca3 - status: 200 OK - code: 200 - duration: 159.263142ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1946 - uncompressed: false - 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: - - "1946" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 44de715f-a1b3-41e4-90cc-6805a2c8dc29 - status: 200 OK - code: 200 - duration: 143.211435ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/37ed5fb2-2a0d-43a8-904a-da5b9f394201 - 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": "37ed5fb2-2a0d-43a8-904a-da5b9f394201"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0c8b6b0e-445b-4e08-b229-0fd063ba1805 - status: 404 Not Found - code: 404 - duration: 43.074772ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/37ed5fb2-2a0d-43a8-904a-da5b9f394201 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9582fcbc-2ef1-4803-881e-2e03d24df511 - status: 200 OK - code: 200 - duration: 90.641155ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 36 - uncompressed: false - body: '{"user_data": ["cloud-init", "foo"]}' - headers: - Content-Length: - - "36" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bce0ed2a-c12b-4f52-8c56-360e4beed902 - status: 200 OK - code: 200 - duration: 103.66454ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/user_data/cloud-init - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 49 - uncompressed: false - body: | - #cloud-config - apt_update: true - apt_upgrade: true - headers: - Content-Length: - - "49" - Content-Type: - - text/plain - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 00d34ee9-5108-4c1f-ba2e-9597e0c28f76 - status: 200 OK - code: 200 - duration: 90.146741ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/user_data/foo - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 3 - uncompressed: false - body: bar - headers: - Content-Length: - - "3" - Content-Type: - - text/plain - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1c4edd8f-5225-452e-becf-d9183f62f339 - status: 200 OK - code: 200 - duration: 94.343779ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534/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:55:28 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7e263ab4-5416-468f-ad10-fb6f4730eb80 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 89.412548ms - - 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/cb369fee-a42e-41cf-a63d-83bfeb719534 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1946 - uncompressed: false - 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: - - "1946" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3ac42fff-b4fe-4696-b906-886e55be69d6 - status: 200 OK - code: 200 - duration: 136.677336ms - - 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/cb369fee-a42e-41cf-a63d-83bfeb719534 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1946 - uncompressed: false - 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: - - "1946" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0f55011a-526d-4eb5-b174-6ba8673a0da7 - status: 200 OK - code: 200 - duration: 139.996154ms - - id: 31 - 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/cb369fee-a42e-41cf-a63d-83bfeb719534/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:29 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1677049d-0ec1-4309-96bd-8aa59a02a454 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 48840063-1c57-4f13-acc6-eb95f64e674a - status: 202 Accepted - code: 202 - duration: 287.970795ms - - 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/cb369fee-a42e-41cf-a63d-83bfeb719534 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1909 - uncompressed: false - 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: - - "1909" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 749f0e41-dbad-4af5-b3bf-0cf4dbe0cdfd - status: 200 OK - code: 200 - duration: 146.809574ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cb369fee-a42e-41cf-a63d-83bfeb719534 - 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": "cb369fee-a42e-41cf-a63d-83bfeb719534"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ace433fb-9b06-47f8-985e-d90ce42c21a0 - status: 404 Not Found - code: 404 - duration: 47.004031ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/37ed5fb2-2a0d-43a8-904a-da5b9f394201 - 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": "37ed5fb2-2a0d-43a8-904a-da5b9f394201"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 101600d9-f2f6-4e54-97ba-0cc9a4593750 - status: 404 Not Found - code: 404 - duration: 29.936263ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/37ed5fb2-2a0d-43a8-904a-da5b9f394201 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2fb06adc-56e1-4843-ae25-f0f1795f2420 - status: 200 OK - code: 200 - duration: 79.263048ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/37ed5fb2-2a0d-43a8-904a-da5b9f394201 - 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:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f3abf3c3-70ac-4fc9-9e1a-48a7c7eda2ea - status: 204 No Content - code: 204 - duration: 159.48474ms - - 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/cb369fee-a42e-41cf-a63d-83bfeb719534 - 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": "cb369fee-a42e-41cf-a63d-83bfeb719534"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 305c50a9-91fd-48a6-a6c8-6c30ddb22326 - status: 404 Not Found - code: 404 - duration: 41.891962ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7297e1d2-4788-427d-915e-5c4347010001 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 50.472307ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b4056fd0-b364-4a63-b4a5-83d609676fb3 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 44.008833ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ae6813a7-31fa-4d05-8710-8128b90d05f6 + status: 200 OK + code: 200 + duration: 49.971488ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 236 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-suspicious-booth\",\"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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1742 + body: "{\"server\": {\"id\": \"1e3faeb8-05ea-4544-9c7e-35dd4ad68687\", \"name\": \"tf-srv-suspicious-booth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"790b43ac-38c3-47eb-aa79-b1811fcda21b\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:f5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:59.542761+00:00\", \"modification_date\": \"2025-10-30T15:42:59.542761+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cf460c32-f081-4e02-be6c-122c4c67f811 + status: 201 Created + code: 201 + duration: 1.224997574s +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1742 + body: "{\"server\": {\"id\": \"1e3faeb8-05ea-4544-9c7e-35dd4ad68687\", \"name\": \"tf-srv-suspicious-booth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"790b43ac-38c3-47eb-aa79-b1811fcda21b\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:f5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:59.542761+00:00\", \"modification_date\": \"2025-10-30T15:42:59.542761+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 14cef712-9896-453e-8504-ea11c059c05e + status: 200 OK + code: 200 + duration: 186.60008ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1742 + body: "{\"server\": {\"id\": \"1e3faeb8-05ea-4544-9c7e-35dd4ad68687\", \"name\": \"tf-srv-suspicious-booth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"790b43ac-38c3-47eb-aa79-b1811fcda21b\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:f5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:59.542761+00:00\", \"modification_date\": \"2025-10-30T15:42:59.542761+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 75f7f389-0dbf-49b4-a2a6-d3776351c3e9 + status: 200 OK + code: 200 + duration: 163.758654ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f635a33c-3351-4aea-876b-8f009b0344a9 + status: 200 OK + code: 200 + duration: 94.929922ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 49 + host: api.scaleway.com + body: "#cloud-config\napt_update: true\napt_upgrade: true\n" + 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/1e3faeb8-05ea-4544-9c7e-35dd4ad68687/user_data/cloud-init + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - text/plain + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7ec9c98a-9b0a-456f-b955-eb3c50e4bf00 + status: 204 No Content + code: 204 + duration: 122.069421ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 3 + host: api.scaleway.com + body: bar + 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/1e3faeb8-05ea-4544-9c7e-35dd4ad68687/user_data/foo + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - text/plain + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7d739ce9-7034-4162-a8ba-10617d659d53 + status: 204 No Content + code: 204 + duration: 139.887495ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1788 + body: "{\"server\": {\"id\": \"1e3faeb8-05ea-4544-9c7e-35dd4ad68687\", \"name\": \"tf-srv-suspicious-booth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"790b43ac-38c3-47eb-aa79-b1811fcda21b\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:f5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:59.542761+00:00\", \"modification_date\": \"2025-10-30T15:42:59.542761+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "1788" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f78848ce-5645-4ad3-99d5-917739e2e36f + status: 200 OK + code: 200 + duration: 157.00781ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/790b43ac-38c3-47eb-aa79-b1811fcda21b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"790b43ac-38c3-47eb-aa79-b1811fcda21b\", \"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-30T15:42:59.667440Z\", \"updated_at\":\"2025-10-30T15:42:59.667440Z\", \"references\":[{\"id\":\"0142be2c-defb-451b-8962-9b4ba86ebe0e\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"1e3faeb8-05ea-4544-9c7e-35dd4ad68687\", \"created_at\":\"2025-10-30T15:42:59.667440Z\", \"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: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ce082ba2-b1a8-45c4-9b42-4facabdc0467 + status: 200 OK + code: 200 + duration: 84.186229ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"56f3ff5f-cb14-4574-86c1-b2ee2d4aa3cf\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687/action\", \"href_result\": \"/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687\", \"started_at\": \"2025-10-30T15:43:01.340512+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/56f3ff5f-cb14-4574-86c1-b2ee2d4aa3cf + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 72f4343e-9d86-4ef4-b55f-aa877f4dcf9a + status: 202 Accepted + code: 202 + duration: 265.375881ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1764 + body: "{\"server\": {\"id\": \"1e3faeb8-05ea-4544-9c7e-35dd4ad68687\", \"name\": \"tf-srv-suspicious-booth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"790b43ac-38c3-47eb-aa79-b1811fcda21b\", \"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:6c:f5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:59.542761+00:00\", \"modification_date\": \"2025-10-30T15:43:01.127910+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: + - "1764" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b1d1cc80-1578-43c0-aaf6-e8e67da4e8a0 + status: 200 OK + code: 200 + duration: 151.160832ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1899 + body: "{\"server\": {\"id\": \"1e3faeb8-05ea-4544-9c7e-35dd4ad68687\", \"name\": \"tf-srv-suspicious-booth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"790b43ac-38c3-47eb-aa79-b1811fcda21b\", \"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:6c:f5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:59.542761+00:00\", \"modification_date\": \"2025-10-30T15:43:03.788925+00:00\", \"bootscript\": 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\": \"1101\", \"node_id\": \"35\"}, \"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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 22a39919-2a52-4e5c-bd7c-9e4e1c7b8145 + status: 200 OK + code: 200 + duration: 1.848193299s +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"1e3faeb8-05ea-4544-9c7e-35dd4ad68687\", \"name\": \"tf-srv-suspicious-booth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"790b43ac-38c3-47eb-aa79-b1811fcda21b\", \"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:6c:f5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:59.542761+00:00\", \"modification_date\": \"2025-10-30T15:43:03.788925+00:00\", \"bootscript\": 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\": \"1101\", \"node_id\": \"35\"}, \"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: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 082fec0b-5b29-44d1-b2ae-a2e4c5311596 + status: 200 OK + code: 200 + duration: 136.056129ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/790b43ac-38c3-47eb-aa79-b1811fcda21b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"790b43ac-38c3-47eb-aa79-b1811fcda21b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2bac4c79-3675-4c5f-977d-2252ae06d2b0 + status: 404 Not Found + code: 404 + duration: 29.856537ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/790b43ac-38c3-47eb-aa79-b1811fcda21b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"790b43ac-38c3-47eb-aa79-b1811fcda21b\", \"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-30T15:42:59.667440Z\", \"updated_at\":\"2025-10-30T15:42:59.667440Z\", \"references\":[{\"id\":\"0142be2c-defb-451b-8962-9b4ba86ebe0e\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"1e3faeb8-05ea-4544-9c7e-35dd4ad68687\", \"created_at\":\"2025-10-30T15:42:59.667440Z\", \"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: + - Thu, 30 Oct 2025 15:43:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5bf55ca3-1885-41a6-a1f2-9567a1656537 + status: 200 OK + code: 200 + duration: 92.709228ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 36 + body: "{\"user_data\": [\"cloud-init\", \"foo\"]}" + headers: + Content-Length: + - "36" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a4911f19-eed6-4785-8819-508badd0d927 + status: 200 OK + code: 200 + duration: 116.4967ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687/user_data/cloud-init + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 49 + body: "#cloud-config\napt_update: true\napt_upgrade: true\n" + headers: + Content-Length: + - "49" + Content-Type: + - text/plain + Date: + - Thu, 30 Oct 2025 15:43:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7460facc-0967-4be6-bacb-efee40d72491 + status: 200 OK + code: 200 + duration: 107.419521ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687/user_data/foo + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3 + body: bar + headers: + Content-Length: + - "3" + Content-Type: + - text/plain + Date: + - Thu, 30 Oct 2025 15:43:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9917752c-f57c-4325-a5af-b5b6ce2058d8 + status: 200 OK + code: 200 + duration: 102.14071ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:09 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dc7dc400-1f3d-43c1-b107-f4e0f2eed9ac + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 101.345077ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"1e3faeb8-05ea-4544-9c7e-35dd4ad68687\", \"name\": \"tf-srv-suspicious-booth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"790b43ac-38c3-47eb-aa79-b1811fcda21b\", \"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:6c:f5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:59.542761+00:00\", \"modification_date\": \"2025-10-30T15:43:03.788925+00:00\", \"bootscript\": 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\": \"1101\", \"node_id\": \"35\"}, \"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: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 93970538-fb1a-4599-85ce-12f8b053541b + status: 200 OK + code: 200 + duration: 150.060611ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"1e3faeb8-05ea-4544-9c7e-35dd4ad68687\", \"name\": \"tf-srv-suspicious-booth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"790b43ac-38c3-47eb-aa79-b1811fcda21b\", \"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:6c:f5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:59.542761+00:00\", \"modification_date\": \"2025-10-30T15:43:03.788925+00:00\", \"bootscript\": 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\": \"1101\", \"node_id\": \"35\"}, \"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: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3ffb41b5-15ed-4df3-835f-e46ddb84ce25 + status: 200 OK + code: 200 + duration: 154.886513ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/790b43ac-38c3-47eb-aa79-b1811fcda21b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"790b43ac-38c3-47eb-aa79-b1811fcda21b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9b1013b1-df01-4ccd-9a8b-d4bf0ea1460c + status: 404 Not Found + code: 404 + duration: 27.607728ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/790b43ac-38c3-47eb-aa79-b1811fcda21b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"790b43ac-38c3-47eb-aa79-b1811fcda21b\", \"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-30T15:42:59.667440Z\", \"updated_at\":\"2025-10-30T15:42:59.667440Z\", \"references\":[{\"id\":\"0142be2c-defb-451b-8962-9b4ba86ebe0e\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"1e3faeb8-05ea-4544-9c7e-35dd4ad68687\", \"created_at\":\"2025-10-30T15:42:59.667440Z\", \"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: + - Thu, 30 Oct 2025 15:43:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9534a6fe-0fdc-497f-950c-6eedaadeeca3 + status: 200 OK + code: 200 + duration: 111.404768ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 36 + body: "{\"user_data\": [\"cloud-init\", \"foo\"]}" + headers: + Content-Length: + - "36" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 330d207e-ea02-4d09-84de-4a5bbfbfcd90 + status: 200 OK + code: 200 + duration: 98.779445ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687/user_data/cloud-init + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 49 + body: "#cloud-config\napt_update: true\napt_upgrade: true\n" + headers: + Content-Length: + - "49" + Content-Type: + - text/plain + Date: + - Thu, 30 Oct 2025 15:43:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fc9e4567-073a-4e83-81e2-468a01b303ae + status: 200 OK + code: 200 + duration: 102.424092ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687/user_data/foo + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3 + body: bar + headers: + Content-Length: + - "3" + Content-Type: + - text/plain + Date: + - Thu, 30 Oct 2025 15:43:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 52907bec-ea04-4b5c-99bc-10008ca26ba6 + status: 200 OK + code: 200 + duration: 101.119194ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:10 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d31bf2e5-aaa8-4c9c-a11f-59d527896c6f + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 113.758914ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"1e3faeb8-05ea-4544-9c7e-35dd4ad68687\", \"name\": \"tf-srv-suspicious-booth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"790b43ac-38c3-47eb-aa79-b1811fcda21b\", \"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:6c:f5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:59.542761+00:00\", \"modification_date\": \"2025-10-30T15:43:03.788925+00:00\", \"bootscript\": 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\": \"1101\", \"node_id\": \"35\"}, \"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: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8d9710e4-c390-4cbd-a90d-b8e77ec8cf68 + status: 200 OK + code: 200 + duration: 184.298896ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1945 + body: "{\"server\": {\"id\": \"1e3faeb8-05ea-4544-9c7e-35dd4ad68687\", \"name\": \"tf-srv-suspicious-booth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"790b43ac-38c3-47eb-aa79-b1811fcda21b\", \"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:6c:f5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:59.542761+00:00\", \"modification_date\": \"2025-10-30T15:43:03.788925+00:00\", \"bootscript\": 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\": \"1101\", \"node_id\": \"35\"}, \"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: + - "1945" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6daef812-9c08-4f64-ad36-e495aa667d98 + status: 200 OK + code: 200 + duration: 148.491115ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"1d99e562-3ef2-4dbc-be80-80ca0e42118c\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687/action\", \"href_result\": \"/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687\", \"started_at\": \"2025-10-30T15:43:11.264166+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1d99e562-3ef2-4dbc-be80-80ca0e42118c + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8ce32cb6-e008-46ac-a7ae-6921d38f6cf5 + status: 202 Accepted + code: 202 + duration: 613.946429ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1908 + body: "{\"server\": {\"id\": \"1e3faeb8-05ea-4544-9c7e-35dd4ad68687\", \"name\": \"tf-srv-suspicious-booth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-booth\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"790b43ac-38c3-47eb-aa79-b1811fcda21b\", \"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:6c:f5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:59.542761+00:00\", \"modification_date\": \"2025-10-30T15:43:10.716839+00:00\", \"bootscript\": 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\": \"1101\", \"node_id\": \"35\"}, \"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: + - "1908" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0228465b-fcc7-4353-bfdd-4831288a8c6e + status: 200 OK + code: 200 + duration: 126.840153ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"1e3faeb8-05ea-4544-9c7e-35dd4ad68687\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8dc44732-463a-4dc2-88f2-5dea760558eb + status: 404 Not Found + code: 404 + duration: 40.665452ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/790b43ac-38c3-47eb-aa79-b1811fcda21b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"790b43ac-38c3-47eb-aa79-b1811fcda21b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d6e4d519-a370-4bfe-9746-ce903e337ed9 + status: 404 Not Found + code: 404 + duration: 31.211098ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/790b43ac-38c3-47eb-aa79-b1811fcda21b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"790b43ac-38c3-47eb-aa79-b1811fcda21b\", \"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-30T15:42:59.667440Z\", \"updated_at\":\"2025-10-30T15:43:12.808737Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:43:12.808737Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 380f5260-8960-4e3a-8acd-b9dbe19e4031 + status: 200 OK + code: 200 + duration: 78.980957ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/790b43ac-38c3-47eb-aa79-b1811fcda21b + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b6c58bd0-8df0-466f-9ba4-a28cd9bccce1 + status: 204 No Content + code: 204 + duration: 149.62189ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e3faeb8-05ea-4544-9c7e-35dd4ad68687 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"1e3faeb8-05ea-4544-9c7e-35dd4ad68687\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 886f72e5-eaf3-4ed5-afe6-7c126338f6c2 + status: 404 Not Found + code: 404 + duration: 53.94877ms 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 1695fbf73..6b1aa6a12 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 @@ -1,2235 +1,1820 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:09 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 75df988b-0d7e-4ab0-9e0e-76d4cdc3d177 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 59.003307ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:09 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1fa7bfbd-cc09-40c4-a09c-99a196858c7d - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 55.422501ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 16285da3-70fd-4c77-91f2-c16cbc90fdab - status: 200 OK - code: 200 - duration: 54.984482ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 318 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1795 - uncompressed: false - 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: - - "1795" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c65affc4-0d88-43ef-ba34-4c3539e8a8b4 - status: 201 Created - code: 201 - duration: 1.161077408s - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1841 - uncompressed: false - 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: - - "1841" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 206e55f2-9613-4b1b-aca9-80791a0b216e - status: 200 OK - code: 200 - duration: 153.744335ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1795 - uncompressed: false - 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: - - "1795" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d016eaef-7076-441a-8b24-42c3ed23ad1d - status: 200 OK - code: 200 - duration: 164.676429ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6eb2618a-0af0-496f-baf8-f1d1caf61fa7 - status: 200 OK - code: 200 - duration: 71.292799ms - - id: 7 - 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/31f2b0bc-5150-44d8-a081-abecfd2fa64e/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/75ee83ac-34c0-4c34-b780-af79b9925262 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - eede15d7-92ca-40e5-b473-6b61da1d3542 - status: 202 Accepted - code: 202 - duration: 289.081289ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1817 - uncompressed: false - 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: - - "1817" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 81fd1620-e447-4424-a2bc-321bc7237128 - status: 200 OK - code: 200 - duration: 136.727734ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1997 - uncompressed: false - 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: - - "1997" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8c86b8c1-c8bb-48a2-ae8f-a25dd6e8a48d - status: 200 OK - code: 200 - duration: 151.876425ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1951 - uncompressed: false - 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: - - "1951" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d3f9173c-e74f-4292-840b-b6ddb17d2418 - status: 200 OK - code: 200 - duration: 123.420831ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 - 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": "90738c24-3e2f-4a0e-8644-9352fba6e465"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f49de311-870a-461a-9481-81d932be9968 - status: 404 Not Found - code: 404 - duration: 31.355506ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 747640a6-0f79-4e2b-9f5c-2f66a04a77e1 - status: 200 OK - code: 200 - duration: 90.289785ms - - 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/31f2b0bc-5150-44d8-a081-abecfd2fa64e/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:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 53bd90e6-4354-404a-84b0-b3603cb2aa73 - status: 200 OK - code: 200 - duration: 92.156596ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/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:55:16 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 715bb5a5-17d8-4996-9eab-4f1eee28a4ea - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 118.999753ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1997 - uncompressed: false - 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: - - "1997" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9b22b707-0025-4ccc-a50e-6accc90ce780 - status: 200 OK - code: 200 - duration: 135.00759ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1997 - uncompressed: false - 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: - - "1997" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e40d5467-f770-491c-8746-9cfa25bcc63e - status: 200 OK - code: 200 - duration: 162.672795ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 - 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": "90738c24-3e2f-4a0e-8644-9352fba6e465"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f1bd737d-9f79-473d-8ebc-150238142789 - status: 404 Not Found - code: 404 - duration: 28.463248ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0efe573a-7205-410d-97f9-3e4775971de5 - status: 200 OK - code: 200 - duration: 84.366037ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/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:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - da245e01-605c-4f79-9c4f-2fa5aacc6cf0 - status: 200 OK - code: 200 - duration: 92.021654ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/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:55:17 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5d83a49e-e422-4d97-84e6-f9b6713ddc22 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 104.36134ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1997 - uncompressed: false - 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: - - "1997" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 77ba1c89-4175-4857-9ee1-1b017120bbf4 - status: 200 OK - code: 200 - duration: 165.758305ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 - 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": "90738c24-3e2f-4a0e-8644-9352fba6e465"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8b84c694-46ba-44fa-892e-c7c671ae1782 - status: 404 Not Found - code: 404 - duration: 26.664113ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - db1aad83-6857-462c-8232-d115ce712350 - status: 200 OK - code: 200 - duration: 79.604825ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/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:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0cd7cece-3c23-4038-9e89-3194205807ac - status: 200 OK - code: 200 - duration: 85.478157ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/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:55:18 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5f3188b8-468a-49ec-bfe0-8d860022dfa3 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 108.139916ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1997 - uncompressed: false - 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: - - "1997" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d2709726-c7ed-4de7-8572-f295ff8c4c84 - status: 200 OK - code: 200 - duration: 140.343548ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1997 - uncompressed: false - 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: - - "1997" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 129b9306-b225-4c51-afe1-266886159fa1 - status: 200 OK - code: 200 - duration: 142.581393ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e/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:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ac5ed495-cd0a-4d88-b89b-728ccd15c8a7 - status: 200 OK - code: 200 - duration: 103.373643ms - - id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 49 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/31f2b0bc-5150-44d8-a081-abecfd2fa64e/user_data/cloud-init - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Type: - - text/plain - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 96a098b8-c945-4a0d-af55-8f15a3c9206d - status: 204 No Content - code: 204 - duration: 123.928511ms - - 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/31f2b0bc-5150-44d8-a081-abecfd2fa64e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1951 - uncompressed: false - 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: - - "1951" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4f3c2c0a-0606-478d-8a1d-6559eecda660 - status: 200 OK - code: 200 - duration: 152.982223ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1951 - uncompressed: false - 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: - - "1951" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - db45e7f6-0b0e-4f04-99f4-7606fc6ef6cb - status: 200 OK - code: 200 - duration: 139.891544ms - - 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/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 - 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": "90738c24-3e2f-4a0e-8644-9352fba6e465"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e850a027-0b4c-4a9b-a479-b433881bc4bb - status: 404 Not Found - code: 404 - duration: 30.218089ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 25e4af77-22ae-4521-a7b6-11cc8a82372f - status: 200 OK - code: 200 - duration: 103.833043ms - - 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/31f2b0bc-5150-44d8-a081-abecfd2fa64e/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 29 - uncompressed: false - body: '{"user_data": ["cloud-init"]}' - headers: - Content-Length: - - "29" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d496952c-f271-4943-bcb5-8395836cadf6 - status: 200 OK - code: 200 - duration: 132.858391ms - - 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/31f2b0bc-5150-44d8-a081-abecfd2fa64e/user_data/cloud-init - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 49 - uncompressed: false - body: | - #cloud-config - apt_update: true - apt_upgrade: true - headers: - Content-Length: - - "49" - Content-Type: - - text/plain - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a7452ff8-4fc7-4a57-9d14-519f0f6d41bf - status: 200 OK - code: 200 - duration: 101.204086ms - - 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/31f2b0bc-5150-44d8-a081-abecfd2fa64e/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:55:20 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ab0b2b75-0689-4ce6-8b16-732b479d174b - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 116.603424ms - - 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/31f2b0bc-5150-44d8-a081-abecfd2fa64e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1951 - uncompressed: false - 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: - - "1951" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6635a890-5313-424d-ae51-8977b64e1eb9 - status: 200 OK - code: 200 - duration: 131.000968ms - - 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/31f2b0bc-5150-44d8-a081-abecfd2fa64e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1997 - uncompressed: false - 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: - - "1997" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 68ad6ce2-9911-400b-8197-6be1fdd36f68 - status: 200 OK - code: 200 - duration: 163.366703ms - - 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/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 - 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": "90738c24-3e2f-4a0e-8644-9352fba6e465"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 53ed9d4e-5f2a-43d1-834e-996163b42c7a - status: 404 Not Found - code: 404 - duration: 26.251672ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7ca140ad-e540-46e3-ab06-ca32bdec8ba3 - status: 200 OK - code: 200 - duration: 80.172306ms - - 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/31f2b0bc-5150-44d8-a081-abecfd2fa64e/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 29 - uncompressed: false - body: '{"user_data": ["cloud-init"]}' - headers: - Content-Length: - - "29" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e8d7b66f-e263-4dd4-bb51-814023b33a4d - status: 200 OK - code: 200 - duration: 94.973816ms - - 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/31f2b0bc-5150-44d8-a081-abecfd2fa64e/user_data/cloud-init - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 49 - uncompressed: false - body: | - #cloud-config - apt_update: true - apt_upgrade: true - headers: - Content-Length: - - "49" - Content-Type: - - text/plain - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 013c3815-842b-4240-8639-556a7053798d - status: 200 OK - code: 200 - duration: 103.991228ms - - 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/31f2b0bc-5150-44d8-a081-abecfd2fa64e/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:55:21 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b6f849b2-d4d6-4e78-9052-878776ce2ca1 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 108.530147ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31f2b0bc-5150-44d8-a081-abecfd2fa64e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1951 - uncompressed: false - 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: - - "1951" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ceb8b710-1f48-4448-857c-87a6dc999d42 - status: 200 OK - code: 200 - duration: 151.298255ms - - 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/31f2b0bc-5150-44d8-a081-abecfd2fa64e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1951 - uncompressed: false - 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: - - "1951" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - be9cfd5c-976d-4077-9ef9-e6666e102f63 - status: 200 OK - code: 200 - duration: 129.840298ms - - id: 46 - 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/31f2b0bc-5150-44d8-a081-abecfd2fa64e/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:21 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/05b40bef-7782-44ec-a84c-7be9a30f9ed2 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d8705020-351d-443c-bd00-7ac8aaeee5aa - status: 202 Accepted - code: 202 - duration: 292.124718ms - - 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/31f2b0bc-5150-44d8-a081-abecfd2fa64e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1914 - uncompressed: false - 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: - - "1914" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 53920a75-84d2-4bff-91f4-13b445d7d2e2 - status: 200 OK - code: 200 - duration: 126.75626ms - - 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/31f2b0bc-5150-44d8-a081-abecfd2fa64e - 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": "31f2b0bc-5150-44d8-a081-abecfd2fa64e"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1ac197e6-87e3-47fc-8ee9-9b12a7038a88 - status: 404 Not Found - code: 404 - duration: 59.858029ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 - 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": "90738c24-3e2f-4a0e-8644-9352fba6e465"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9351b339-7f48-4a25-87fc-9998707a3f5e - status: 404 Not Found - code: 404 - duration: 27.878675ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 531f416f-5b5c-4a4e-ac16-814d3e10c39e - status: 200 OK - code: 200 - duration: 79.733737ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/90738c24-3e2f-4a0e-8644-9352fba6e465 - 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:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c1561d63-cb3b-477d-890c-864344927063 - status: 204 No Content - code: 204 - duration: 154.426839ms - - 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/31f2b0bc-5150-44d8-a081-abecfd2fa64e - 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": "31f2b0bc-5150-44d8-a081-abecfd2fa64e"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 79b04c74-369a-4e54-ab1f-3226a656f490 - status: 404 Not Found - code: 404 - duration: 59.602591ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 189a7e72-9a6b-4140-acf7-dd57c26d61f5 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 51.249623ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8c819e84-f922-466d-b2a8-593ea6cbc238 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 46.64144ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 186cb121-5b34-42be-9473-c7a21e56de17 + status: 200 OK + code: 200 + duration: 48.638946ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 319 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-hopeful-feynman\",\"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\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1843 + body: "{\"server\": {\"id\": \"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"name\": \"tf-srv-hopeful-feynman\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-feynman\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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:6c:e1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:43.046838+00:00\", \"modification_date\": \"2025-10-30T15:42:43.046838+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:42:43 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c68b1223-488f-4973-a624-4a51b2ff44bb + status: 201 Created + code: 201 + duration: 1.101688461s +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1797 + body: "{\"server\": {\"id\": \"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"name\": \"tf-srv-hopeful-feynman\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-feynman\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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:6c:e1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:43.046838+00:00\", \"modification_date\": \"2025-10-30T15:42:43.046838+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:42:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 82801add-376f-4732-94b0-10e9b1d86de5 + status: 200 OK + code: 200 + duration: 147.846019ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1843 + body: "{\"server\": {\"id\": \"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"name\": \"tf-srv-hopeful-feynman\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-feynman\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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:6c:e1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:43.046838+00:00\", \"modification_date\": \"2025-10-30T15:42:43.046838+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - Thu, 30 Oct 2025 15:42:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b482a0c8-93fb-42b9-b024-d50deb0eb034 + status: 200 OK + code: 200 + duration: 198.105315ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b2657670-4430-4198-8a42-cf6f4bb6017a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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-30T15:42:43.169857Z\", \"updated_at\":\"2025-10-30T15:42:43.169857Z\", \"references\":[{\"id\":\"99fd4f0a-bb2d-4a55-b7a1-a08d731e5c97\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"created_at\":\"2025-10-30T15:42:43.169857Z\", \"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: + - Thu, 30 Oct 2025 15:42:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 35ddc35f-7cd4-40d7-8613-42d22db726a5 + status: 200 OK + code: 200 + duration: 87.731216ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"0cd90b0a-6f37-4a24-8415-14bde3a47a57\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90/action\", \"href_result\": \"/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"started_at\": \"2025-10-30T15:42:44.226006+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:44 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0cd90b0a-6f37-4a24-8415-14bde3a47a57 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3f8fee09-2e5f-4a26-9867-fbb47f4619d5 + status: 202 Accepted + code: 202 + duration: 277.832638ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1819 + body: "{\"server\": {\"id\": \"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"name\": \"tf-srv-hopeful-feynman\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-feynman\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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:6c:e1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:43.046838+00:00\", \"modification_date\": \"2025-10-30T15:42:43.998727+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dc59e82c-01ba-42fb-b13e-9c342cb61cdf + status: 200 OK + code: 200 + duration: 138.94378ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2000 + body: "{\"server\": {\"id\": \"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"name\": \"tf-srv-hopeful-feynman\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-feynman\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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:6c:e1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:43.046838+00:00\", \"modification_date\": \"2025-10-30T15:42:46.945497+00:00\", \"bootscript\": 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\": \"1602\", \"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: + - "2000" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8c60aad4-a16b-4811-b64b-514098f7d46a + status: 200 OK + code: 200 + duration: 174.144231ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2000 + body: "{\"server\": {\"id\": \"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"name\": \"tf-srv-hopeful-feynman\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-feynman\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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:6c:e1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:43.046838+00:00\", \"modification_date\": \"2025-10-30T15:42:46.945497+00:00\", \"bootscript\": 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\": \"1602\", \"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: + - "2000" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c4941cff-03c3-4090-9ce5-5b3c14f147a6 + status: 200 OK + code: 200 + duration: 134.344424ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b2657670-4430-4198-8a42-cf6f4bb6017a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8492bccf-efe1-47d5-8908-cb76eff9d846 + status: 404 Not Found + code: 404 + duration: 30.412919ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b2657670-4430-4198-8a42-cf6f4bb6017a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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-30T15:42:43.169857Z\", \"updated_at\":\"2025-10-30T15:42:43.169857Z\", \"references\":[{\"id\":\"99fd4f0a-bb2d-4a55-b7a1-a08d731e5c97\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"created_at\":\"2025-10-30T15:42:43.169857Z\", \"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: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 85923f93-51a7-467b-8e5e-eb7e3558cfb5 + status: 200 OK + code: 200 + duration: 91.406201ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5f5a4d72-4194-4473-9266-a40f280e2020 + status: 200 OK + code: 200 + duration: 100.62314ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fa86077c-cae2-4e60-a588-5cd7c3088a96 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 113.803183ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2000 + body: "{\"server\": {\"id\": \"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"name\": \"tf-srv-hopeful-feynman\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-feynman\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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:6c:e1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:43.046838+00:00\", \"modification_date\": \"2025-10-30T15:42:46.945497+00:00\", \"bootscript\": 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\": \"1602\", \"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: + - "2000" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8fc8e216-9764-4746-ba69-10ca576dd0ce + status: 200 OK + code: 200 + duration: 161.879164ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2000 + body: "{\"server\": {\"id\": \"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"name\": \"tf-srv-hopeful-feynman\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-feynman\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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:6c:e1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:43.046838+00:00\", \"modification_date\": \"2025-10-30T15:42:46.945497+00:00\", \"bootscript\": 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\": \"1602\", \"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: + - "2000" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0fd62ce4-5c1d-49b8-8ff8-bb85e1ba8079 + status: 200 OK + code: 200 + duration: 156.090145ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b2657670-4430-4198-8a42-cf6f4bb6017a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 45d214a8-1068-42e6-806f-841c661613f4 + status: 404 Not Found + code: 404 + duration: 28.810814ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b2657670-4430-4198-8a42-cf6f4bb6017a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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-30T15:42:43.169857Z\", \"updated_at\":\"2025-10-30T15:42:43.169857Z\", \"references\":[{\"id\":\"99fd4f0a-bb2d-4a55-b7a1-a08d731e5c97\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"created_at\":\"2025-10-30T15:42:43.169857Z\", \"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: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 10393f9f-db78-4d72-9fc2-01de93b758f7 + status: 200 OK + code: 200 + duration: 98.665117ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 78370255-603b-4235-9c73-1c363f844c2c + status: 200 OK + code: 200 + duration: 113.557442ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:50 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 82706337-c9bc-4996-b6e3-7d3b172e503a + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 119.819599ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2000 + body: "{\"server\": {\"id\": \"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"name\": \"tf-srv-hopeful-feynman\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-feynman\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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:6c:e1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:43.046838+00:00\", \"modification_date\": \"2025-10-30T15:42:46.945497+00:00\", \"bootscript\": 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\": \"1602\", \"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: + - "2000" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 57a0ed13-3912-4f9e-87e9-c63f37236e20 + status: 200 OK + code: 200 + duration: 170.983352ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b2657670-4430-4198-8a42-cf6f4bb6017a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9f013180-a5a3-4eae-a9a4-085ee5793802 + status: 404 Not Found + code: 404 + duration: 48.682089ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b2657670-4430-4198-8a42-cf6f4bb6017a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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-30T15:42:43.169857Z\", \"updated_at\":\"2025-10-30T15:42:43.169857Z\", \"references\":[{\"id\":\"99fd4f0a-bb2d-4a55-b7a1-a08d731e5c97\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"created_at\":\"2025-10-30T15:42:43.169857Z\", \"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: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c495e779-eb80-43d3-98fd-8e96291967bd + status: 200 OK + code: 200 + duration: 82.382654ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b3f8dd3f-19e7-45cb-a45c-f0046bbf6e6a + status: 200 OK + code: 200 + duration: 107.593856ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e4c57326-6075-4851-9c48-3e8e7a938c30 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 125.419383ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1954 + body: "{\"server\": {\"id\": \"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"name\": \"tf-srv-hopeful-feynman\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-feynman\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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:6c:e1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:43.046838+00:00\", \"modification_date\": \"2025-10-30T15:42:46.945497+00:00\", \"bootscript\": 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\": \"1602\", \"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: + - "1954" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 479e6698-788c-4a92-a329-29d49983d522 + status: 200 OK + code: 200 + duration: 158.539921ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1954 + body: "{\"server\": {\"id\": \"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"name\": \"tf-srv-hopeful-feynman\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-feynman\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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:6c:e1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:43.046838+00:00\", \"modification_date\": \"2025-10-30T15:42:46.945497+00:00\", \"bootscript\": 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\": \"1602\", \"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: + - "1954" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c8265529-3c29-40ad-bebb-3fd73f7ca763 + status: 200 OK + code: 200 + duration: 148.435237ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 072eb6ee-9848-4d9e-8ee6-855d31fa4863 + status: 200 OK + code: 200 + duration: 141.724919ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 49 + host: api.scaleway.com + body: "#cloud-config\napt_update: true\napt_upgrade: true\n" + 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/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90/user_data/cloud-init + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - text/plain + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d94039fb-c3ff-4641-a055-4838009798f4 + status: 204 No Content + code: 204 + duration: 126.079171ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2000 + body: "{\"server\": {\"id\": \"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"name\": \"tf-srv-hopeful-feynman\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-feynman\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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:6c:e1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:43.046838+00:00\", \"modification_date\": \"2025-10-30T15:42:46.945497+00:00\", \"bootscript\": 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\": \"1602\", \"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: + - "2000" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1cd589da-6d1b-411b-b896-1ef2c42e65fb + status: 200 OK + code: 200 + duration: 153.425558ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2000 + body: "{\"server\": {\"id\": \"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"name\": \"tf-srv-hopeful-feynman\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-feynman\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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:6c:e1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:43.046838+00:00\", \"modification_date\": \"2025-10-30T15:42:46.945497+00:00\", \"bootscript\": 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\": \"1602\", \"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: + - "2000" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3c96f604-35be-4786-aea0-a06f202cc6ae + status: 200 OK + code: 200 + duration: 184.055354ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b2657670-4430-4198-8a42-cf6f4bb6017a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1f578baa-d54c-4504-a288-cc84461fc733 + status: 404 Not Found + code: 404 + duration: 23.876869ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b2657670-4430-4198-8a42-cf6f4bb6017a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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-30T15:42:43.169857Z\", \"updated_at\":\"2025-10-30T15:42:43.169857Z\", \"references\":[{\"id\":\"99fd4f0a-bb2d-4a55-b7a1-a08d731e5c97\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"created_at\":\"2025-10-30T15:42:43.169857Z\", \"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: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0b77f862-8497-4f8f-ba82-3e40f463248f + status: 200 OK + code: 200 + duration: 78.402528ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 29 + body: "{\"user_data\": [\"cloud-init\"]}" + headers: + Content-Length: + - "29" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cbc63acf-bce9-481f-8601-f72c21d36628 + status: 200 OK + code: 200 + duration: 121.615689ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90/user_data/cloud-init + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 49 + body: "#cloud-config\napt_update: true\napt_upgrade: true\n" + headers: + Content-Length: + - "49" + Content-Type: + - text/plain + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 11b8cd7e-0b65-4bb8-8375-75760345b1c1 + status: 200 OK + code: 200 + duration: 117.726233ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d74a47ea-bdf5-42dc-8918-329d7c6a144b + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 112.549121ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1954 + body: "{\"server\": {\"id\": \"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"name\": \"tf-srv-hopeful-feynman\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-feynman\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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:6c:e1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:43.046838+00:00\", \"modification_date\": \"2025-10-30T15:42:46.945497+00:00\", \"bootscript\": 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\": \"1602\", \"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: + - "1954" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3d411657-744a-402a-a8de-76cf6af822e5 + status: 200 OK + code: 200 + duration: 147.272877ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2000 + body: "{\"server\": {\"id\": \"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"name\": \"tf-srv-hopeful-feynman\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-feynman\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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:6c:e1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:43.046838+00:00\", \"modification_date\": \"2025-10-30T15:42:46.945497+00:00\", \"bootscript\": 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\": \"1602\", \"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: + - "2000" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 20a3b8df-ea6b-4d20-9401-6d9246c3d2d9 + status: 200 OK + code: 200 + duration: 161.648973ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b2657670-4430-4198-8a42-cf6f4bb6017a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ac5a80b4-f790-4d4e-a6ec-3aac51c92d33 + status: 404 Not Found + code: 404 + duration: 40.098006ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b2657670-4430-4198-8a42-cf6f4bb6017a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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-30T15:42:43.169857Z\", \"updated_at\":\"2025-10-30T15:42:43.169857Z\", \"references\":[{\"id\":\"99fd4f0a-bb2d-4a55-b7a1-a08d731e5c97\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"created_at\":\"2025-10-30T15:42:43.169857Z\", \"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: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 08dd3bf5-29de-475d-a12a-cfb3971d4128 + status: 200 OK + code: 200 + duration: 89.05952ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 29 + body: "{\"user_data\": [\"cloud-init\"]}" + headers: + Content-Length: + - "29" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2549c2e5-1220-4b97-a36c-8ebda0edf192 + status: 200 OK + code: 200 + duration: 93.096411ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90/user_data/cloud-init + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 49 + body: "#cloud-config\napt_update: true\napt_upgrade: true\n" + headers: + Content-Length: + - "49" + Content-Type: + - text/plain + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a5e108f5-f0b4-4dec-9c06-3370fafc76ac + status: 200 OK + code: 200 + duration: 115.469089ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ac500c46-6238-49b4-acad-c8e3ec85b478 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 109.64284ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1954 + body: "{\"server\": {\"id\": \"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"name\": \"tf-srv-hopeful-feynman\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-feynman\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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:6c:e1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:43.046838+00:00\", \"modification_date\": \"2025-10-30T15:42:46.945497+00:00\", \"bootscript\": 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\": \"1602\", \"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: + - "1954" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 29e13481-5977-438e-ac5e-4c0749a9572a + status: 200 OK + code: 200 + duration: 159.241428ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2000 + body: "{\"server\": {\"id\": \"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"name\": \"tf-srv-hopeful-feynman\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-feynman\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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:6c:e1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:43.046838+00:00\", \"modification_date\": \"2025-10-30T15:42:46.945497+00:00\", \"bootscript\": 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\": \"1602\", \"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: + - "2000" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0de96d07-543f-4d12-9d96-829fc127bce0 + status: 200 OK + code: 200 + duration: 179.487175ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"726d214f-9121-4967-959b-621a73091702\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90/action\", \"href_result\": \"/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"started_at\": \"2025-10-30T15:42:54.927391+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/726d214f-9121-4967-959b-621a73091702 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8e5e480e-5acd-4bf3-a151-74adb80f6ba0 + status: 202 Accepted + code: 202 + duration: 287.441528ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1917 + body: "{\"server\": {\"id\": \"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"name\": \"tf-srv-hopeful-feynman\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-feynman\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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:6c:e1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:43.046838+00:00\", \"modification_date\": \"2025-10-30T15:42:54.707071+00:00\", \"bootscript\": 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\": \"1602\", \"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: + - "1917" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f190040e-1439-4df1-98d0-357ac3007a4f + status: 200 OK + code: 200 + duration: 157.999568ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1963 + body: "{\"server\": {\"id\": \"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"name\": \"tf-srv-hopeful-feynman\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-feynman\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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:6c:e1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:43.046838+00:00\", \"modification_date\": \"2025-10-30T15:42:54.707071+00:00\", \"bootscript\": 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\": \"1602\", \"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: + - "1963" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2dc9ba46-2f9b-450c-ad47-f7771dd99837 + status: 200 OK + code: 200 + duration: 187.479329ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1963 + body: "{\"server\": {\"id\": \"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\", \"name\": \"tf-srv-hopeful-feynman\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-hopeful-feynman\", \"image\": {\"id\": \"8ac1fe52-01dc-4dc1-8578-73ec5d126648\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-09-12T09:19:32.472362+00:00\", \"modification_date\": \"2025-09-12T09:19:32.472362+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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:6c:e1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:43.046838+00:00\", \"modification_date\": \"2025-10-30T15:42:54.707071+00:00\", \"bootscript\": 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\": \"1602\", \"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: + - "1963" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a22454cc-8239-483d-b75b-5201c3a002d3 + status: 200 OK + code: 200 + duration: 168.658646ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0fb0d8c6-9b88-4050-a518-edeac09011c6 + status: 404 Not Found + code: 404 + duration: 51.121997ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b2657670-4430-4198-8a42-cf6f4bb6017a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"b2657670-4430-4198-8a42-cf6f4bb6017a\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - be4335c2-9d63-4f8b-b723-8f33dcae2153 + status: 404 Not Found + code: 404 + duration: 28.431593ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b2657670-4430-4198-8a42-cf6f4bb6017a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"b2657670-4430-4198-8a42-cf6f4bb6017a\", \"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-30T15:42:43.169857Z\", \"updated_at\":\"2025-10-30T15:43:06.321687Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:43:06.321687Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ea74e8a6-ffa4-4cc6-8b2e-c2bb5b8fdb20 + status: 200 OK + code: 200 + duration: 77.626795ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b2657670-4430-4198-8a42-cf6f4bb6017a + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 25976e27-c7a3-4651-9b11-1d89468589e3 + status: 204 No Content + code: 204 + duration: 160.399205ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/574cac2b-fbd6-4ce3-ac86-2d8c49e50d90 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"574cac2b-fbd6-4ce3-ac86-2d8c49e50d90\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9fee4775-daa7-4084-80fb-cd387d4f6655 + status: 404 Not Found + code: 404 + duration: 56.63091ms 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 cb5147865..292715b50 100644 --- a/internal/services/instance/testdata/server-with-placement-group.cassette.yaml +++ b/internal/services/instance/testdata/server-with-placement-group.cassette.yaml @@ -1,4225 +1,3443 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 138 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-pg-nervous-bartik","project":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_type":"max_availability"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 326 - uncompressed: false - 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: - - "326" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7e146eb5-429d-4b11-9e33-1810d762386f - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2539ef25-9239-46e0-ac03-5580ba38d8bc - status: 201 Created - code: 201 - duration: 166.614086ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/7e146eb5-429d-4b11-9e33-1810d762386f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 326 - uncompressed: false - 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: - - "326" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - eb44e956-5eb6-445f-aaab-99a5cc61f721 - status: 200 OK - code: 200 - duration: 153.163323ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ceeb9180-6803-4f58-9755-da8292b39a51 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 35.622123ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2aaa495c-a959-44bf-b2d0-bf6f25f18eec - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 52.731407ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5740fea0-ba0f-4975-b059-d2874941d47f - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 64.630257ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 622da959-f4d4-4f2a-81c0-43163213bcfd - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 41.092221ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d990101c-b2dc-4bea-afd4-2ad603b2e3e2 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 75.642891ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d3f90538-3256-40c1-8b50-63d2745a8a1b - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 102.549797ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b96c1eb0-c628-4c8e-9e44-aa5b56dd60f3 - status: 200 OK - code: 200 - duration: 49.920741ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0b506bc5-bfd5-4ecb-844a-c0d93e22c6c2 - status: 200 OK - code: 200 - duration: 41.945487ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2ed2fb17-0c39-4acf-a163-703b8de0e9f8 - status: 200 OK - code: 200 - duration: 45.134772ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - 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","1"],"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 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2192 - uncompressed: false - 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: - - "2192" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 230b5a00-c85f-47b8-9293-65576202d45d - status: 201 Created - code: 201 - duration: 1.157073459s - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - 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","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 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2192 - uncompressed: false - 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: - - "2192" - Content-Type: - - application/json - Date: - - 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;edge03) - X-Request-Id: - - 0e7264e9-6571-4c61-a773-6bb2444659fa - status: 201 Created - code: 201 - duration: 1.305850671s - - 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/2fd0dcab-df5b-4769-b313-cac80c1a6061 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2192 - uncompressed: false - 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: - - "2192" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 10538ef4-df5b-4161-86ad-b2e22b200208 - status: 200 OK - code: 200 - duration: 159.980221ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 387 - 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","0"],"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 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2146 - uncompressed: false - 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: - - "2146" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a8eb4fc6-b38d-43a9-a182-e79fb646fff6 - status: 201 Created - code: 201 - duration: 1.396555057s - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2146 - uncompressed: false - 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: - - "2146" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 969ee6e1-e27e-48a5-988d-6b885e560b76 - status: 200 OK - code: 200 - duration: 127.352768ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2146 - uncompressed: false - 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: - - "2146" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 97030ae5-b499-414f-89c2-64d884f0332f - status: 200 OK - code: 200 - duration: 160.39196ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2146 - uncompressed: false - 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: - - "2146" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 664bf3e9-f0ec-4169-b4f6-7237a4546f4e - status: 200 OK - code: 200 - duration: 134.500054ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/13960bfb-50a6-4bd9-9e59-c099944c5a9f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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: - - "701" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 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: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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: 2192 - uncompressed: false - 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: - - "2192" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a1a4f4b3-3653-41a2-bb20-834bf242aebd - status: 200 OK - code: 200 - duration: 121.707761ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f6ad7e89-76ec-4f88-a2e1-59549f724be0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 05383be2-7aca-4458-b58e-657628956a27 - status: 200 OK - code: 200 - duration: 75.871489ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2192 - uncompressed: false - 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: - - "2192" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2a9c0fd3-b27c-4fc3-aa82-dab161430059 - status: 200 OK - code: 200 - duration: 140.335675ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54f94f96-c953-44dd-a964-626c96d70bdf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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: - - "701" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e80604a1-bcee-43fe-a30d-3f56e08a115b - status: 200 OK - code: 200 - duration: 91.696551ms - - id: 23 - 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/2fd0dcab-df5b-4769-b313-cac80c1a6061/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0890b3ca-e692-42c2-b82b-d92c6ae26f74 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aa29eef0-9dee-46fa-954d-d685b9fb241b - status: 202 Accepted - code: 202 - duration: 286.492698ms - - id: 24 - 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/db9d0776-54e7-490f-85f8-0f27ccdee8d4/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": "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: - - "357" - Content-Type: - - application/json - Date: - - 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;edge03) - X-Request-Id: - - 39ecd0e2-2ce1-489a-bf9a-ba62d8829a18 - status: 202 Accepted - code: 202 - duration: 266.398442ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2168 - uncompressed: false - 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: - - "2168" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 10d62940-84bd-41a5-b307-52bd8e8874e9 - status: 200 OK - code: 200 - duration: 147.47136ms - - id: 26 - 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/21b6dd3e-a037-4905-9d4f-08fb4836216a/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": "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: - - "357" - Content-Type: - - application/json - Date: - - 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;edge03) - X-Request-Id: - - 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: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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: 2168 - uncompressed: false - 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: - - "2168" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - adddb491-11cb-426b-993a-5239983c4cc1 - status: 200 OK - code: 200 - duration: 146.917975ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2168 - uncompressed: false - 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: - - "2168" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 34fd05d7-0e8a-4619-8251-f8969a3084f9 - status: 200 OK - code: 200 - duration: 170.046936ms - - 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/2fd0dcab-df5b-4769-b313-cac80c1a6061 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2348 - uncompressed: false - 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: - - "2348" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b5dee1c9-aa01-4e08-a41c-71d0df487d62 - status: 200 OK - code: 200 - duration: 164.585836ms - - 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/db9d0776-54e7-490f-85f8-0f27ccdee8d4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2214 - uncompressed: false - 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: - - "2214" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bd3a5ee1-e5a4-42a8-9e32-4f5ad62d2f27 - status: 200 OK - code: 200 - duration: 143.989531ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2348 - uncompressed: false - 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: - - "2348" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6715c31b-9bda-467c-a053-780bde106c2d - status: 200 OK - code: 200 - duration: 144.230802ms - - 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/volumes/13960bfb-50a6-4bd9-9e59-c099944c5a9f - 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": "13960bfb-50a6-4bd9-9e59-c099944c5a9f"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1bf37b3b-34b3-49da-9df6-ed7424562fba - status: 404 Not Found - code: 404 - duration: 23.482933ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2168 - uncompressed: false - 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: - - "2168" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e70dddb0-13a2-4400-b615-207bb7eb4652 - status: 200 OK - code: 200 - duration: 144.133109ms - - 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/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: 701 - uncompressed: false - 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: - - "701" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fd600d53-327b-4e19-8132-7d403a7f5543 - status: 200 OK - code: 200 - duration: 80.086302ms - - 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/2fd0dcab-df5b-4769-b313-cac80c1a6061/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:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0b1278b5-b769-49ac-beb4-d67cf39a6309 - status: 200 OK - code: 200 - duration: 85.000522ms - - 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/2fd0dcab-df5b-4769-b313-cac80c1a6061/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:55:03 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 03178ccd-d5fd-4f0a-b465-89da677e4160 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 102.216205ms - - 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/db9d0776-54e7-490f-85f8-0f27ccdee8d4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2303 - uncompressed: false - 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: - - "2303" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4c99e6fd-88b6-4f0a-a0b7-2e8b9f33feba - status: 200 OK - code: 200 - duration: 132.999431ms - - 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/db9d0776-54e7-490f-85f8-0f27ccdee8d4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2349 - uncompressed: false - 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: - - "2349" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e0d4acc6-ca16-49f4-9f75-703881551f96 - status: 200 OK - code: 200 - duration: 150.990615ms - - 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/21b6dd3e-a037-4905-9d4f-08fb4836216a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2349 - uncompressed: false - 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: - - "2349" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8f0e9ffe-acae-4ddc-8b8b-5c832e9306e0 - status: 200 OK - code: 200 - duration: 155.444784ms - - 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/volumes/f6ad7e89-76ec-4f88-a2e1-59549f724be0 - 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": "f6ad7e89-76ec-4f88-a2e1-59549f724be0"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4c397d37-7bfa-44a9-93d1-2be1f078c4e3 - status: 404 Not Found - code: 404 - duration: 31.749903ms - - 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/block/v1alpha1/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: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 66e191b0-9698-4f43-ad4f-df27a59f845e - status: 200 OK - code: 200 - duration: 94.655907ms - - 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/21b6dd3e-a037-4905-9d4f-08fb4836216a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2303 - uncompressed: false - 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: - - "2303" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b19cc8ee-c4ed-43af-bfe3-2c0b2c3e9f8e - status: 200 OK - code: 200 - duration: 142.49098ms - - 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/volumes/54f94f96-c953-44dd-a964-626c96d70bdf - 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": "54f94f96-c953-44dd-a964-626c96d70bdf"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 599b27c6-8395-45fa-b201-7a9e43c590cc - status: 404 Not Found - code: 404 - duration: 27.997405ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4/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:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a9b808c6-6a3c-4ea3-893a-f1cc43713ca3 - status: 200 OK - code: 200 - duration: 111.863296ms - - id: 45 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54f94f96-c953-44dd-a964-626c96d70bdf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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: - - "701" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 31330043-f458-4691-9fd1-3c759446b2a1 - status: 200 OK - code: 200 - duration: 95.850902ms - - 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/db9d0776-54e7-490f-85f8-0f27ccdee8d4/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:55:08 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 10d32041-28dc-4f50-ad29-0d718ea0992c - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 89.592019ms - - 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/21b6dd3e-a037-4905-9d4f-08fb4836216a/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:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8b93cc36-72de-4dc1-9ea3-5d87f3fcbd90 - status: 200 OK - code: 200 - duration: 97.773959ms - - 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/21b6dd3e-a037-4905-9d4f-08fb4836216a/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:55:09 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 996fb457-72ed-4e1c-876f-b5f8079e5303 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 100.067348ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2303 - uncompressed: false - 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: - - "2303" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5efd9dc7-97ca-44cc-b6f8-d87c9dcf5ee8 - status: 200 OK - code: 200 - duration: 157.407054ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2348 - uncompressed: false - 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: - - "2348" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e73d0b4d-de22-49c4-9104-d8db1caf740a - status: 200 OK - code: 200 - duration: 143.034607ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2349 - uncompressed: false - 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: - - "2349" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e1f9ffd6-5674-4efc-a0d0-4214aa8d96ae - status: 200 OK - code: 200 - duration: 124.183837ms - - 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/placement_groups/7e146eb5-429d-4b11-9e33-1810d762386f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 326 - uncompressed: false - 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: - - "326" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c8dc5a5d-ce10-47cf-b0e5-06d9c0f19383 - status: 200 OK - code: 200 - duration: 95.861663ms - - 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/placement_groups/7e146eb5-429d-4b11-9e33-1810d762386f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 326 - uncompressed: false - 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: - - "326" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 91ac4a6d-a8be-4e6c-9be1-f312496445fa - status: 200 OK - code: 200 - duration: 99.273033ms - - 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/db9d0776-54e7-490f-85f8-0f27ccdee8d4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2349 - uncompressed: false - 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: - - "2349" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ba88125e-6104-495f-b2f2-4472ffcadcff - status: 200 OK - code: 200 - duration: 152.778679ms - - 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/2fd0dcab-df5b-4769-b313-cac80c1a6061 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2348 - uncompressed: false - 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: - - "2348" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5d8bdae7-8e4c-4d49-ae30-1bfea58ab789 - status: 200 OK - code: 200 - duration: 155.398328ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2303 - uncompressed: false - 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: - - "2303" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6173e42a-509c-472a-81a5-7fa9122fab24 - status: 200 OK - code: 200 - duration: 175.326935ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f6ad7e89-76ec-4f88-a2e1-59549f724be0 - 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": "f6ad7e89-76ec-4f88-a2e1-59549f724be0"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4b1328e9-9d01-425c-81b2-de4d84bb4732 - status: 404 Not Found - code: 404 - duration: 24.648203ms - - 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/volumes/13960bfb-50a6-4bd9-9e59-c099944c5a9f - 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": "13960bfb-50a6-4bd9-9e59-c099944c5a9f"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d2fcdac8-631a-405f-8a18-140e1c206602 - status: 404 Not Found - code: 404 - duration: 32.305091ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/54f94f96-c953-44dd-a964-626c96d70bdf - 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": "54f94f96-c953-44dd-a964-626c96d70bdf"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 513bc845-bc94-45cb-8d81-f557006e8f0c - status: 404 Not Found - code: 404 - duration: 30.976086ms - - id: 60 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f6ad7e89-76ec-4f88-a2e1-59549f724be0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4ec85278-f72a-439a-9a99-9c02070d28fa - status: 200 OK - code: 200 - duration: 82.035708ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/13960bfb-50a6-4bd9-9e59-c099944c5a9f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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: - - "701" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d0f390c0-6f70-4021-ab3d-dd37b531e001 - status: 200 OK - code: 200 - duration: 116.139814ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54f94f96-c953-44dd-a964-626c96d70bdf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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: - - "701" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1418e8ea-5478-4da7-9452-0e14f0008e20 - status: 200 OK - code: 200 - duration: 98.327234ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4/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:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a3cb0917-aa4d-4eb9-afec-c929362b0c02 - status: 200 OK - code: 200 - duration: 97.731911ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a/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:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f61b2da1-8d86-4b39-82ef-c86db6b3b2e5 - status: 200 OK - code: 200 - duration: 104.869428ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061/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:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 18ab644c-3ebf-4f47-8a44-cb7b41ae3e24 - status: 200 OK - code: 200 - duration: 109.841596ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4/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:55:10 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bbd905b4-1cf8-4c7e-a954-0f45ed682b7b - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 113.304873ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061/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:55:10 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d9a53ae1-84ee-49a3-b396-c00467d81bf1 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 100.030329ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a/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:55:10 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4df8834f-4c10-4a69-9196-e1368f011281 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 111.893333ms - - id: 69 - 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/21b6dd3e-a037-4905-9d4f-08fb4836216a - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2047 - uncompressed: false - 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: - - "2047" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 593126f3-1a1a-4adb-a5d2-137d8d662d23 - status: 200 OK - code: 200 - duration: 203.772859ms - - id: 70 - 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/2fd0dcab-df5b-4769-b313-cac80c1a6061 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2000 - uncompressed: false - 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: - - "2000" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c403e0a9-860a-48ac-bd44-dd4bfb7ee969 - status: 200 OK - code: 200 - duration: 223.058634ms - - id: 71 - 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/db9d0776-54e7-490f-85f8-0f27ccdee8d4 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2047 - uncompressed: false - 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: - - "2047" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 604136e2-0311-464f-a9cf-7544b21e9a09 - status: 200 OK - code: 200 - duration: 319.898508ms - - 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/21b6dd3e-a037-4905-9d4f-08fb4836216a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2001 - uncompressed: false - 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: - - "2001" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 408913b4-bc03-40c2-914f-cba40825ad8b - status: 200 OK - code: 200 - duration: 153.052261ms - - 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/2fd0dcab-df5b-4769-b313-cac80c1a6061 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2000 - uncompressed: false - 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: - - "2000" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 470937be-f757-4494-879a-211e6d82358d - status: 200 OK - code: 200 - duration: 139.882864ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2047 - uncompressed: false - 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: - - "2047" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5b430a3d-a4b0-4668-898e-8102c66b4ca6 - status: 200 OK - code: 200 - duration: 135.255922ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2046 - uncompressed: false - 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: - - "2046" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e291560f-a2c7-4602-8ae9-aec70cdda14a - status: 200 OK - code: 200 - duration: 131.0142ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2001 - uncompressed: false - 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: - - "2001" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 039e3064-cd57-4dfc-8818-7923c94218e1 - status: 200 OK - code: 200 - duration: 158.347634ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2001 - uncompressed: false - 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: - - "2001" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 87f8020c-c147-4dda-8e02-666ddfa2128f - status: 200 OK - code: 200 - duration: 167.186122ms - - id: 78 - 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/2fd0dcab-df5b-4769-b313-cac80c1a6061/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/eaffcf1f-1a25-411c-bcbe-7141e6dde133 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a881bfda-69ee-422b-b26f-ca8416c5255f - status: 202 Accepted - code: 202 - duration: 284.400085ms - - id: 79 - 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/21b6dd3e-a037-4905-9d4f-08fb4836216a/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ed650bf4-aee6-4f25-8746-77e1422f2737 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 198f8c6d-aa2b-4596-9ed1-e2ee1f937089 - status: 202 Accepted - code: 202 - duration: 293.95352ms - - id: 80 - 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/db9d0776-54e7-490f-85f8-0f27ccdee8d4/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/997921f8-b4a3-46ab-8f2a-6a8d4ebce637 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b40de2bf-cdd9-4cdf-95b8-06409a0859a6 - status: 202 Accepted - code: 202 - duration: 304.544646ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2fd0dcab-df5b-4769-b313-cac80c1a6061 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1963 - uncompressed: false - 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: - - "1963" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 440edc7b-a55e-479b-ba19-76bbdda8d596 - status: 200 OK - code: 200 - duration: 158.041361ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/21b6dd3e-a037-4905-9d4f-08fb4836216a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2010 - uncompressed: false - 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: - - "2010" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f60ea21c-f0c4-42c3-8ba9-dd67f294b4e4 - status: 200 OK - code: 200 - duration: 146.08929ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/db9d0776-54e7-490f-85f8-0f27ccdee8d4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1964 - uncompressed: false - 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: - - "1964" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cf5783b4-8c21-4db1-9bdf-c843ebe4cfbb - status: 200 OK - code: 200 - duration: 148.981829ms - - 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/2fd0dcab-df5b-4769-b313-cac80c1a6061 - 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": "2fd0dcab-df5b-4769-b313-cac80c1a6061"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dc592919-49f5-4e46-a7db-b1a1c3b681ad - status: 404 Not Found - code: 404 - duration: 50.053331ms - - 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/21b6dd3e-a037-4905-9d4f-08fb4836216a - 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": "21b6dd3e-a037-4905-9d4f-08fb4836216a"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 441a5f04-79c8-434e-980d-a41bac9f6340 - status: 404 Not Found - code: 404 - duration: 41.430697ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/13960bfb-50a6-4bd9-9e59-c099944c5a9f - 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": "13960bfb-50a6-4bd9-9e59-c099944c5a9f"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 530c5b93-f6ab-45ba-870f-f925a9eab0be - status: 404 Not Found - code: 404 - duration: 24.019357ms - - 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/volumes/54f94f96-c953-44dd-a964-626c96d70bdf - 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": "54f94f96-c953-44dd-a964-626c96d70bdf"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3cc8e85c-7ba9-4f9c-9254-5bb5b864d10a - status: 404 Not Found - code: 404 - duration: 27.191489ms - - id: 88 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/13960bfb-50a6-4bd9-9e59-c099944c5a9f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 56d57202-b619-49fa-93f4-03ed8a87d21f - status: 200 OK - code: 200 - duration: 75.850884ms - - 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/db9d0776-54e7-490f-85f8-0f27ccdee8d4 - 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": "db9d0776-54e7-490f-85f8-0f27ccdee8d4"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ba3c6382-f0fc-48b0-b9fb-d830f2c0f965 - status: 404 Not Found - code: 404 - duration: 49.802913ms - - id: 90 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54f94f96-c953-44dd-a964-626c96d70bdf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - 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: - - "494" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - db74088a-9e6c-48df-b6c5-394f2e502047 - status: 200 OK - code: 200 - duration: 104.408588ms - - 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/volumes/f6ad7e89-76ec-4f88-a2e1-59549f724be0 - 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": "f6ad7e89-76ec-4f88-a2e1-59549f724be0"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cbac26f6-79ef-481f-a34b-89cfee417db8 - status: 404 Not Found - code: 404 - duration: 34.331261ms - - id: 92 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/13960bfb-50a6-4bd9-9e59-c099944c5a9f - 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:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0c6888cd-4ccc-42b7-931b-9c565e03bd79 - status: 204 No Content - code: 204 - duration: 167.432576ms - - id: 93 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f6ad7e89-76ec-4f88-a2e1-59549f724be0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - 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: - - "494" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 69a43a68-14d9-467e-85d4-bf9002f2f077 - status: 200 OK - code: 200 - duration: 118.92817ms - - id: 94 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54f94f96-c953-44dd-a964-626c96d70bdf - 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:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 423bedbd-0db5-49f0-9a32-cb1697a69257 - status: 204 No Content - code: 204 - duration: 178.671813ms - - id: 95 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f6ad7e89-76ec-4f88-a2e1-59549f724be0 - 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:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e4190989-27b9-491a-a875-7057ec8aa632 - status: 204 No Content - code: 204 - duration: 158.48829ms - - 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/placement_groups/7e146eb5-429d-4b11-9e33-1810d762386f - 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:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - af2e88bb-160c-4747-bcb4-16ac908f7cef - status: 204 No Content - code: 204 - duration: 171.470176ms - - 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/21b6dd3e-a037-4905-9d4f-08fb4836216a - 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": "21b6dd3e-a037-4905-9d4f-08fb4836216a"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 04762ae3-c374-48b2-822c-6c62935c0359 - status: 404 Not Found - code: 404 - duration: 37.696414ms - - 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/2fd0dcab-df5b-4769-b313-cac80c1a6061 - 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": "2fd0dcab-df5b-4769-b313-cac80c1a6061"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ef6628bb-876f-43c3-aed0-cb814cc9c1ba - status: 404 Not Found - code: 404 - duration: 44.270277ms - - 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/db9d0776-54e7-490f-85f8-0f27ccdee8d4 - 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": "db9d0776-54e7-490f-85f8-0f27ccdee8d4"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5ddf8d98-131e-400b-9da1-0f0be26d3a75 - status: 404 Not Found - code: 404 - duration: 37.280546ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 138 + host: api.scaleway.com + body: "{\"name\":\"tf-pg-brave-ishizaka\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"policy_mode\":\"enforced\",\"policy_type\":\"max_availability\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"placement_group\": {\"id\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "326" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/dbe2acb3-7132-44f4-8e34-d54ca796874c + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 24860eb1-e50a-4070-9752-dd41bebbc0f9 + status: 201 Created + code: 201 + duration: 206.46662ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/dbe2acb3-7132-44f4-8e34-d54ca796874c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"placement_group\": {\"id\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "326" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cb880e1e-0f04-448a-ac76-1304a3643f64 + status: 200 OK + code: 200 + duration: 124.57611ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ce3bede6-4444-4166-9dcc-8096b376b03a + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 48.529311ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5a00c010-b28a-4532-80ff-af39373d8f9f + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 50.003566ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5d947448-6446-4eee-93e0-a3202c36616d + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 47.829488ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d55e8bd6-ed1c-4ea8-8778-aabbb475f9f2 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 111.187996ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3b494b37-797f-4413-b937-ef2163c235ab + status: 200 OK + code: 200 + duration: 43.08565ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fbf8234b-7a83-4460-b5ab-98c025f53e7f + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 41.733404ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1a0002bc-fedf-43c9-af9f-86b9e2b0ba4f + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 130.900012ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4876c50e-5bdb-435b-9e9a-27a6445d22b4 + status: 200 OK + code: 200 + duration: 42.666073ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d4997f0f-d566-4109-b2bf-d3a50043bc11 + status: 200 OK + code: 200 + duration: 48.507961ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 387 + host: api.scaleway.com + 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\":\"dbe2acb3-7132-44f4-8e34-d54ca796874c\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2146 + body: "{\"server\": {\"id\": \"812c87be-b534-4597-808a-01f92b550f0e\", \"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\": \"2967b426-ade6-41f4-834b-5694c28155e6\", \"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:6c:e3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.106575+00:00\", \"modification_date\": \"2025-10-30T15:42:47.106575+00: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\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2146" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/812c87be-b534-4597-808a-01f92b550f0e + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7c265569-5ab9-4d53-9460-98d96357a96e + status: 201 Created + code: 201 + duration: 1.331251766s +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/812c87be-b534-4597-808a-01f92b550f0e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2146 + body: "{\"server\": {\"id\": \"812c87be-b534-4597-808a-01f92b550f0e\", \"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\": \"2967b426-ade6-41f4-834b-5694c28155e6\", \"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:6c:e3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.106575+00:00\", \"modification_date\": \"2025-10-30T15:42:47.106575+00: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\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2146" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1708290d-3c4d-4921-87ee-2548ebe161ee + status: 200 OK + code: 200 + duration: 135.481236ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 387 + host: api.scaleway.com + 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\":\"dbe2acb3-7132-44f4-8e34-d54ca796874c\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2146 + body: "{\"server\": {\"id\": \"9d7bd367-b967-465d-8c3c-da7bd7ecac60\", \"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\": \"d0f5788f-7a63-4208-97c7-aaf97c0344b7\", \"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:6c:e9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.769272+00:00\", \"modification_date\": \"2025-10-30T15:42:47.769272+00: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\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2146" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fba662e4-6854-477c-8489-1b9050e28bc3 + status: 201 Created + code: 201 + duration: 1.466573623s +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/812c87be-b534-4597-808a-01f92b550f0e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2192 + body: "{\"server\": {\"id\": \"812c87be-b534-4597-808a-01f92b550f0e\", \"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\": \"2967b426-ade6-41f4-834b-5694c28155e6\", \"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:6c:e3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.106575+00:00\", \"modification_date\": \"2025-10-30T15:42:47.106575+00: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\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2192" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b0a6c6a3-8f53-40ce-b6b2-1f5d52653151 + status: 200 OK + code: 200 + duration: 126.437201ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 387 + host: api.scaleway.com + 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\":\"dbe2acb3-7132-44f4-8e34-d54ca796874c\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2192 + body: "{\"server\": {\"id\": \"67769a67-6d3c-4afe-92d1-100365ad7bb2\", \"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\": \"51142a7d-4f1f-44d9-964a-353fbec43ddb\", \"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:6c:eb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.862526+00:00\", \"modification_date\": \"2025-10-30T15:42:47.862526+00: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\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2192" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 43a95761-dae8-4ab4-b96d-b9294d43b6d8 + status: 201 Created + code: 201 + duration: 1.608251984s +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2967b426-ade6-41f4-834b-5694c28155e6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"2967b426-ade6-41f4-834b-5694c28155e6\", \"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-30T15:42:47.269722Z\", \"updated_at\":\"2025-10-30T15:42:47.269722Z\", \"references\":[{\"id\":\"7eba2179-686f-49c9-a860-8381d7d86480\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"812c87be-b534-4597-808a-01f92b550f0e\", \"created_at\":\"2025-10-30T15:42:47.269722Z\", \"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: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9376fdeb-e111-49ac-a7ae-0a2eb28d828a + status: 200 OK + code: 200 + duration: 78.624404ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2192 + body: "{\"server\": {\"id\": \"9d7bd367-b967-465d-8c3c-da7bd7ecac60\", \"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\": \"d0f5788f-7a63-4208-97c7-aaf97c0344b7\", \"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:6c:e9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.769272+00:00\", \"modification_date\": \"2025-10-30T15:42:47.769272+00: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\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2192" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 83a8e017-0e79-4588-96af-18a5d8e4a52b + status: 200 OK + code: 200 + duration: 155.313458ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2146 + body: "{\"server\": {\"id\": \"67769a67-6d3c-4afe-92d1-100365ad7bb2\", \"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\": \"51142a7d-4f1f-44d9-964a-353fbec43ddb\", \"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:6c:eb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.862526+00:00\", \"modification_date\": \"2025-10-30T15:42:47.862526+00: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\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2146" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 455e8173-622c-43aa-a0f7-1c4e8b7e8524 + status: 200 OK + code: 200 + duration: 138.317246ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2146 + body: "{\"server\": {\"id\": \"9d7bd367-b967-465d-8c3c-da7bd7ecac60\", \"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\": \"d0f5788f-7a63-4208-97c7-aaf97c0344b7\", \"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:6c:e9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.769272+00:00\", \"modification_date\": \"2025-10-30T15:42:47.769272+00: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\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2146" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 49386a0e-a30a-4ef8-b231-402b3c295e4c + status: 200 OK + code: 200 + duration: 147.475526ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d0f5788f-7a63-4208-97c7-aaf97c0344b7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"d0f5788f-7a63-4208-97c7-aaf97c0344b7\", \"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-30T15:42:47.320393Z\", \"updated_at\":\"2025-10-30T15:42:47.320393Z\", \"references\":[{\"id\":\"f84b4d67-1418-4ab0-89b5-61843a565ced\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"9d7bd367-b967-465d-8c3c-da7bd7ecac60\", \"created_at\":\"2025-10-30T15:42:47.320393Z\", \"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: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 30454239-4447-48af-9261-f5c237892a99 + status: 200 OK + code: 200 + duration: 82.755974ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2192 + body: "{\"server\": {\"id\": \"67769a67-6d3c-4afe-92d1-100365ad7bb2\", \"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\": \"51142a7d-4f1f-44d9-964a-353fbec43ddb\", \"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:6c:eb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.862526+00:00\", \"modification_date\": \"2025-10-30T15:42:47.862526+00: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\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2192" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 453c228e-2773-4803-a589-00faf0da0e7c + status: 200 OK + code: 200 + duration: 143.007133ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/812c87be-b534-4597-808a-01f92b550f0e/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"e8d43cd1-55c7-4e50-8cf9-fdb40f901a8f\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/812c87be-b534-4597-808a-01f92b550f0e/action\", \"href_result\": \"/servers/812c87be-b534-4597-808a-01f92b550f0e\", \"started_at\": \"2025-10-30T15:42:48.373330+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e8d43cd1-55c7-4e50-8cf9-fdb40f901a8f + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1d420d7b-733a-4bfb-9832-e1a47ec28c78 + status: 202 Accepted + code: 202 + duration: 283.91039ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/51142a7d-4f1f-44d9-964a-353fbec43ddb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"51142a7d-4f1f-44d9-964a-353fbec43ddb\", \"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-30T15:42:47.332409Z\", \"updated_at\":\"2025-10-30T15:42:47.332409Z\", \"references\":[{\"id\":\"24ddb2c1-c846-4c9c-a4c3-a7075fcac2b6\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"67769a67-6d3c-4afe-92d1-100365ad7bb2\", \"created_at\":\"2025-10-30T15:42:47.332409Z\", \"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: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 31da83c8-7bb9-430e-a2f1-482fc7e74055 + status: 200 OK + code: 200 + duration: 105.009558ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/812c87be-b534-4597-808a-01f92b550f0e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2214 + body: "{\"server\": {\"id\": \"812c87be-b534-4597-808a-01f92b550f0e\", \"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\": \"2967b426-ade6-41f4-834b-5694c28155e6\", \"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:6c:e3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.106575+00:00\", \"modification_date\": \"2025-10-30T15:42:48.149518+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\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2214" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f635aa00-969f-4964-80a4-064916049c73 + status: 200 OK + code: 200 + duration: 150.501101ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"ba1700af-d838-478e-8f1c-7872a81f7123\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60/action\", \"href_result\": \"/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60\", \"started_at\": \"2025-10-30T15:42:48.620492+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ba1700af-d838-478e-8f1c-7872a81f7123 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 524b0dfa-1b70-46f5-80c9-b6dbca5d5377 + status: 202 Accepted + code: 202 + duration: 254.65344ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"3cc37016-cf1f-4253-8ced-6aa0413ea716\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2/action\", \"href_result\": \"/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2\", \"started_at\": \"2025-10-30T15:42:48.716310+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3cc37016-cf1f-4253-8ced-6aa0413ea716 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fdb50979-8db8-4ae0-8ac9-3bc67ad9e947 + status: 202 Accepted + code: 202 + duration: 247.912947ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2168 + body: "{\"server\": {\"id\": \"9d7bd367-b967-465d-8c3c-da7bd7ecac60\", \"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\": \"d0f5788f-7a63-4208-97c7-aaf97c0344b7\", \"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:6c:e9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.769272+00:00\", \"modification_date\": \"2025-10-30T15:42:48.414161+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\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2168" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 584b9263-12eb-4230-a1db-eff8c9bc2aa2 + status: 200 OK + code: 200 + duration: 157.688373ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2168 + body: "{\"server\": {\"id\": \"67769a67-6d3c-4afe-92d1-100365ad7bb2\", \"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\": \"51142a7d-4f1f-44d9-964a-353fbec43ddb\", \"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:6c:eb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.862526+00:00\", \"modification_date\": \"2025-10-30T15:42:48.534892+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\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2168" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5be426c0-2e35-42bf-ae81-88406e715267 + status: 200 OK + code: 200 + duration: 137.89845ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/812c87be-b534-4597-808a-01f92b550f0e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2301 + body: "{\"server\": {\"id\": \"812c87be-b534-4597-808a-01f92b550f0e\", \"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\": \"2967b426-ade6-41f4-834b-5694c28155e6\", \"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:6c:e3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.106575+00:00\", \"modification_date\": \"2025-10-30T15:42:50.709147+00:00\", \"bootscript\": 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\": \"96\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": {\"id\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2301" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bd89406a-dde3-4cfd-92e5-9174169a80bc + status: 200 OK + code: 200 + duration: 135.351354ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/812c87be-b534-4597-808a-01f92b550f0e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2347 + body: "{\"server\": {\"id\": \"812c87be-b534-4597-808a-01f92b550f0e\", \"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\": \"2967b426-ade6-41f4-834b-5694c28155e6\", \"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:6c:e3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.106575+00:00\", \"modification_date\": \"2025-10-30T15:42:50.709147+00:00\", \"bootscript\": 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\": \"96\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": {\"id\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2347" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f4090ca1-5954-498b-abff-700ef20f6651 + status: 200 OK + code: 200 + duration: 141.35737ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2967b426-ade6-41f4-834b-5694c28155e6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"2967b426-ade6-41f4-834b-5694c28155e6\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b7fb08aa-a7e9-4cf7-9098-60114b793f72 + status: 404 Not Found + code: 404 + duration: 27.180696ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2214 + body: "{\"server\": {\"id\": \"9d7bd367-b967-465d-8c3c-da7bd7ecac60\", \"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\": \"d0f5788f-7a63-4208-97c7-aaf97c0344b7\", \"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:6c:e9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.769272+00:00\", \"modification_date\": \"2025-10-30T15:42:48.414161+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\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2214" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3f4b619c-3ef6-4831-bf6b-3bb2e4ba1674 + status: 200 OK + code: 200 + duration: 143.541388ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2967b426-ade6-41f4-834b-5694c28155e6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"2967b426-ade6-41f4-834b-5694c28155e6\", \"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-30T15:42:47.269722Z\", \"updated_at\":\"2025-10-30T15:42:47.269722Z\", \"references\":[{\"id\":\"7eba2179-686f-49c9-a860-8381d7d86480\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"812c87be-b534-4597-808a-01f92b550f0e\", \"created_at\":\"2025-10-30T15:42:47.269722Z\", \"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: + - Thu, 30 Oct 2025 15:42:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 54cb240a-c6d6-4a4e-be6b-33f2e10c7223 + status: 200 OK + code: 200 + duration: 97.518306ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/812c87be-b534-4597-808a-01f92b550f0e/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fbe7abbb-b3b1-4f55-af54-0f7e6d0776fc + status: 200 OK + code: 200 + duration: 87.117777ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2168 + body: "{\"server\": {\"id\": \"67769a67-6d3c-4afe-92d1-100365ad7bb2\", \"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\": \"51142a7d-4f1f-44d9-964a-353fbec43ddb\", \"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:6c:eb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.862526+00:00\", \"modification_date\": \"2025-10-30T15:42:48.534892+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\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2168" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c1a0d4e1-1b59-4337-a916-76d89747dc14 + status: 200 OK + code: 200 + duration: 175.580717ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/812c87be-b534-4597-808a-01f92b550f0e/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:54 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cf5448d4-e173-4ea3-9d69-a2944b4da9fa + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 107.133954ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2272 + body: "{\"server\": {\"id\": \"9d7bd367-b967-465d-8c3c-da7bd7ecac60\", \"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\": \"d0f5788f-7a63-4208-97c7-aaf97c0344b7\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"placement_group\", \"0\"], \"state\": \"starting\", \"protected\": false, \"state_detail\": \"provisioning node\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:e9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.769272+00:00\", \"modification_date\": \"2025-10-30T15:42:48.414161+00:00\", \"bootscript\": 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\": \"301\", \"node_id\": \"185\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": {\"id\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2272" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - af6540c1-890b-4671-9a4b-740999cd8d81 + status: 200 OK + code: 200 + duration: 165.618111ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2168 + body: "{\"server\": {\"id\": \"67769a67-6d3c-4afe-92d1-100365ad7bb2\", \"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\": \"51142a7d-4f1f-44d9-964a-353fbec43ddb\", \"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:6c:eb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.862526+00:00\", \"modification_date\": \"2025-10-30T15:42:48.534892+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\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2168" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0d8c3c2a-804c-4061-9d8b-bd345fd0fe7e + status: 200 OK + code: 200 + duration: 167.084041ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2303 + body: "{\"server\": {\"id\": \"9d7bd367-b967-465d-8c3c-da7bd7ecac60\", \"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\": \"d0f5788f-7a63-4208-97c7-aaf97c0344b7\", \"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:6c:e9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.769272+00:00\", \"modification_date\": \"2025-10-30T15:43:00.839193+00:00\", \"bootscript\": 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\": \"301\", \"node_id\": \"185\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": {\"id\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2303" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 728f9547-2a66-4e1c-8f83-c7d397be5e51 + status: 200 OK + code: 200 + duration: 281.109545ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2214 + body: "{\"server\": {\"id\": \"67769a67-6d3c-4afe-92d1-100365ad7bb2\", \"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\": \"51142a7d-4f1f-44d9-964a-353fbec43ddb\", \"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:6c:eb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.862526+00:00\", \"modification_date\": \"2025-10-30T15:42:48.534892+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\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2214" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 08d281ac-8bb9-4da1-a7b1-7b523881ff01 + status: 200 OK + code: 200 + duration: 212.081009ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2349 + body: "{\"server\": {\"id\": \"9d7bd367-b967-465d-8c3c-da7bd7ecac60\", \"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\": \"d0f5788f-7a63-4208-97c7-aaf97c0344b7\", \"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:6c:e9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.769272+00:00\", \"modification_date\": \"2025-10-30T15:43:00.839193+00:00\", \"bootscript\": 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\": \"301\", \"node_id\": \"185\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": {\"id\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2349" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c941ea5e-3397-4654-a3d3-79d6bc02c24d + status: 200 OK + code: 200 + duration: 209.322284ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d0f5788f-7a63-4208-97c7-aaf97c0344b7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d0f5788f-7a63-4208-97c7-aaf97c0344b7\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6f375367-27dc-46a3-be8d-253c4a817fb0 + status: 404 Not Found + code: 404 + duration: 33.293644ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d0f5788f-7a63-4208-97c7-aaf97c0344b7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"d0f5788f-7a63-4208-97c7-aaf97c0344b7\", \"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-30T15:42:47.320393Z\", \"updated_at\":\"2025-10-30T15:42:47.320393Z\", \"references\":[{\"id\":\"f84b4d67-1418-4ab0-89b5-61843a565ced\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"9d7bd367-b967-465d-8c3c-da7bd7ecac60\", \"created_at\":\"2025-10-30T15:42:47.320393Z\", \"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: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a21da588-6782-458f-9a86-3b58cfca25b7 + status: 200 OK + code: 200 + duration: 95.159413ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3659b16c-2305-4870-809e-502b405e53ca + status: 200 OK + code: 200 + duration: 112.33931ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:04 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4067668b-51b2-4dcd-bf32-1058a6ef9626 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 120.241443ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2303 + body: "{\"server\": {\"id\": \"67769a67-6d3c-4afe-92d1-100365ad7bb2\", \"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\": \"51142a7d-4f1f-44d9-964a-353fbec43ddb\", \"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:6c:eb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.862526+00:00\", \"modification_date\": \"2025-10-30T15:43:08.079482+00:00\", \"bootscript\": 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\": \"193\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": {\"id\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2303" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 840062b0-c745-4368-85c4-2717f1cb96a1 + status: 200 OK + code: 200 + duration: 155.453607ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2349 + body: "{\"server\": {\"id\": \"67769a67-6d3c-4afe-92d1-100365ad7bb2\", \"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\": \"51142a7d-4f1f-44d9-964a-353fbec43ddb\", \"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:6c:eb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.862526+00:00\", \"modification_date\": \"2025-10-30T15:43:08.079482+00:00\", \"bootscript\": 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\": \"193\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": {\"id\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2349" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 70874175-ea12-471c-939b-07136df56893 + status: 200 OK + code: 200 + duration: 174.42248ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/51142a7d-4f1f-44d9-964a-353fbec43ddb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"51142a7d-4f1f-44d9-964a-353fbec43ddb\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7db7cffa-f370-4beb-893c-716e2b5688fe + status: 404 Not Found + code: 404 + duration: 28.077299ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/51142a7d-4f1f-44d9-964a-353fbec43ddb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"51142a7d-4f1f-44d9-964a-353fbec43ddb\", \"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-30T15:42:47.332409Z\", \"updated_at\":\"2025-10-30T15:42:47.332409Z\", \"references\":[{\"id\":\"24ddb2c1-c846-4c9c-a4c3-a7075fcac2b6\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"67769a67-6d3c-4afe-92d1-100365ad7bb2\", \"created_at\":\"2025-10-30T15:42:47.332409Z\", \"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: + - Thu, 30 Oct 2025 15:43:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e6b5e851-bdde-4677-94f9-5b0cc85864d8 + status: 200 OK + code: 200 + duration: 84.220124ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2ef62630-65e9-4884-936a-3c803b686ce0 + status: 200 OK + code: 200 + duration: 98.991673ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:10 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7db7337f-6c76-4669-b660-10cbcb8892a8 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 96.739499ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2303 + body: "{\"server\": {\"id\": \"9d7bd367-b967-465d-8c3c-da7bd7ecac60\", \"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\": \"d0f5788f-7a63-4208-97c7-aaf97c0344b7\", \"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:6c:e9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.769272+00:00\", \"modification_date\": \"2025-10-30T15:43:00.839193+00:00\", \"bootscript\": 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\": \"301\", \"node_id\": \"185\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": {\"id\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2303" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0c55003e-589d-4942-af69-698fcbf1a7c8 + status: 200 OK + code: 200 + duration: 136.411345ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2349 + body: "{\"server\": {\"id\": \"67769a67-6d3c-4afe-92d1-100365ad7bb2\", \"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\": \"51142a7d-4f1f-44d9-964a-353fbec43ddb\", \"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:6c:eb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.862526+00:00\", \"modification_date\": \"2025-10-30T15:43:08.079482+00:00\", \"bootscript\": 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\": \"193\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": {\"id\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2349" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4d5b29e7-2d8c-46cb-8aaf-95cce5a426f2 + status: 200 OK + code: 200 + duration: 143.51951ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/812c87be-b534-4597-808a-01f92b550f0e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2347 + body: "{\"server\": {\"id\": \"812c87be-b534-4597-808a-01f92b550f0e\", \"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\": \"2967b426-ade6-41f4-834b-5694c28155e6\", \"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:6c:e3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.106575+00:00\", \"modification_date\": \"2025-10-30T15:42:50.709147+00:00\", \"bootscript\": 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\": \"96\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": {\"id\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2347" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ba3b3a81-0fe2-4cc9-b84e-0d732c584adb + status: 200 OK + code: 200 + duration: 135.557505ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/dbe2acb3-7132-44f4-8e34-d54ca796874c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"placement_group\": {\"id\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "326" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b2d4b43a-c667-4af0-9b05-192592a043e0 + status: 200 OK + code: 200 + duration: 118.541605ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/dbe2acb3-7132-44f4-8e34-d54ca796874c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 326 + body: "{\"placement_group\": {\"id\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "326" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5213844d-8128-4ee1-8d03-ca0b3418c9d5 + status: 200 OK + code: 200 + duration: 99.806882ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2349 + body: "{\"server\": {\"id\": \"67769a67-6d3c-4afe-92d1-100365ad7bb2\", \"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\": \"51142a7d-4f1f-44d9-964a-353fbec43ddb\", \"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:6c:eb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.862526+00:00\", \"modification_date\": \"2025-10-30T15:43:08.079482+00:00\", \"bootscript\": 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\": \"193\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": {\"id\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2349" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8112d191-fa36-46bb-acfe-82bb3374e636 + status: 200 OK + code: 200 + duration: 156.559281ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2303 + body: "{\"server\": {\"id\": \"9d7bd367-b967-465d-8c3c-da7bd7ecac60\", \"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\": \"d0f5788f-7a63-4208-97c7-aaf97c0344b7\", \"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:6c:e9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.769272+00:00\", \"modification_date\": \"2025-10-30T15:43:00.839193+00:00\", \"bootscript\": 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\": \"301\", \"node_id\": \"185\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": {\"id\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2303" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b6d530cb-9536-4935-a58b-056bc3968e4d + status: 200 OK + code: 200 + duration: 156.074592ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/812c87be-b534-4597-808a-01f92b550f0e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2301 + body: "{\"server\": {\"id\": \"812c87be-b534-4597-808a-01f92b550f0e\", \"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\": \"2967b426-ade6-41f4-834b-5694c28155e6\", \"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:6c:e3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.106575+00:00\", \"modification_date\": \"2025-10-30T15:42:50.709147+00:00\", \"bootscript\": 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\": \"96\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": {\"id\": \"dbe2acb3-7132-44f4-8e34-d54ca796874c\", \"name\": \"tf-pg-brave-ishizaka\", \"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: + - "2301" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a6b6c98f-4c80-4aa8-8d60-5556a1a65e12 + status: 200 OK + code: 200 + duration: 157.416751ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2967b426-ade6-41f4-834b-5694c28155e6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"2967b426-ade6-41f4-834b-5694c28155e6\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 06f146c6-be2e-468f-83db-b7872947893d + status: 404 Not Found + code: 404 + duration: 42.613557ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d0f5788f-7a63-4208-97c7-aaf97c0344b7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d0f5788f-7a63-4208-97c7-aaf97c0344b7\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 986516f0-5040-4165-89e8-ca96caa94167 + status: 404 Not Found + code: 404 + duration: 45.476317ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/51142a7d-4f1f-44d9-964a-353fbec43ddb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"51142a7d-4f1f-44d9-964a-353fbec43ddb\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 21576dd3-573e-4379-94b2-7e5b9aff931f + status: 404 Not Found + code: 404 + duration: 45.55298ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/51142a7d-4f1f-44d9-964a-353fbec43ddb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"51142a7d-4f1f-44d9-964a-353fbec43ddb\", \"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-30T15:42:47.332409Z\", \"updated_at\":\"2025-10-30T15:42:47.332409Z\", \"references\":[{\"id\":\"24ddb2c1-c846-4c9c-a4c3-a7075fcac2b6\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"67769a67-6d3c-4afe-92d1-100365ad7bb2\", \"created_at\":\"2025-10-30T15:42:47.332409Z\", \"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: + - Thu, 30 Oct 2025 15:43:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 833ba46b-33f8-46db-89a0-b0e7cf6477d4 + status: 200 OK + code: 200 + duration: 88.125841ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2967b426-ade6-41f4-834b-5694c28155e6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"2967b426-ade6-41f4-834b-5694c28155e6\", \"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-30T15:42:47.269722Z\", \"updated_at\":\"2025-10-30T15:42:47.269722Z\", \"references\":[{\"id\":\"7eba2179-686f-49c9-a860-8381d7d86480\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"812c87be-b534-4597-808a-01f92b550f0e\", \"created_at\":\"2025-10-30T15:42:47.269722Z\", \"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: + - Thu, 30 Oct 2025 15:43:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8902b6ed-c06f-4c41-aec3-aa93954148a3 + status: 200 OK + code: 200 + duration: 89.532409ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d0f5788f-7a63-4208-97c7-aaf97c0344b7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"d0f5788f-7a63-4208-97c7-aaf97c0344b7\", \"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-30T15:42:47.320393Z\", \"updated_at\":\"2025-10-30T15:42:47.320393Z\", \"references\":[{\"id\":\"f84b4d67-1418-4ab0-89b5-61843a565ced\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"9d7bd367-b967-465d-8c3c-da7bd7ecac60\", \"created_at\":\"2025-10-30T15:42:47.320393Z\", \"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: + - Thu, 30 Oct 2025 15:43:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8439c8d4-feb4-480d-bd25-e4adfd68c0ca + status: 200 OK + code: 200 + duration: 92.501248ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b228396b-0382-47bc-8af0-27cbc77f8cb0 + status: 200 OK + code: 200 + duration: 93.946319ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/812c87be-b534-4597-808a-01f92b550f0e/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 51b35d62-d581-4ea0-9762-22ad33e9f06d + status: 200 OK + code: 200 + duration: 94.855785ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5d90bc30-831f-468f-be94-cf70a65c8c3c + status: 200 OK + code: 200 + duration: 117.639935ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 31b2d346-f754-4c11-a07a-b5fe9d9fa4cd + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 85.813403ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/812c87be-b534-4597-808a-01f92b550f0e/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1e6d8e90-95a8-4fb2-9e8d-5043cde5f54e + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 99.28851ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a4be544e-cd54-4ce3-934a-bf273a9e1a55 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 112.810095ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 24 + host: api.scaleway.com + body: "{\"placement_group\":null}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"67769a67-6d3c-4afe-92d1-100365ad7bb2\", \"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\": \"51142a7d-4f1f-44d9-964a-353fbec43ddb\", \"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:6c:eb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.862526+00:00\", \"modification_date\": \"2025-10-30T15:43:11.786490+00:00\", \"bootscript\": 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\": \"193\"}, \"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: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 247239ae-a1d4-4c03-92ee-d2239874cba0 + status: 200 OK + code: 200 + duration: 191.350065ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 24 + host: api.scaleway.com + body: "{\"placement_group\":null}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/812c87be-b534-4597-808a-01f92b550f0e + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2045 + body: "{\"server\": {\"id\": \"812c87be-b534-4597-808a-01f92b550f0e\", \"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\": \"2967b426-ade6-41f4-834b-5694c28155e6\", \"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:6c:e3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.106575+00:00\", \"modification_date\": \"2025-10-30T15:43:11.791519+00:00\", \"bootscript\": 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\": \"96\"}, \"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: + - "2045" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 91262e84-3f34-46fe-a6c2-3394950cad66 + status: 200 OK + code: 200 + duration: 195.608142ms +- id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 24 + host: api.scaleway.com + body: "{\"placement_group\":null}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"9d7bd367-b967-465d-8c3c-da7bd7ecac60\", \"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\": \"d0f5788f-7a63-4208-97c7-aaf97c0344b7\", \"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:6c:e9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.769272+00:00\", \"modification_date\": \"2025-10-30T15:43:11.780837+00:00\", \"bootscript\": 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\": \"301\", \"node_id\": \"185\"}, \"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: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 790b835f-8469-4de6-a73e-0b58fa96d6e6 + status: 200 OK + code: 200 + duration: 217.648276ms +- id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"67769a67-6d3c-4afe-92d1-100365ad7bb2\", \"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\": \"51142a7d-4f1f-44d9-964a-353fbec43ddb\", \"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:6c:eb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.862526+00:00\", \"modification_date\": \"2025-10-30T15:43:11.786490+00:00\", \"bootscript\": 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\": \"193\"}, \"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: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8441ffe9-cfd6-4d58-8193-cd886aff36c4 + status: 200 OK + code: 200 + duration: 154.1756ms +- id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/812c87be-b534-4597-808a-01f92b550f0e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1999 + body: "{\"server\": {\"id\": \"812c87be-b534-4597-808a-01f92b550f0e\", \"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\": \"2967b426-ade6-41f4-834b-5694c28155e6\", \"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:6c:e3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.106575+00:00\", \"modification_date\": \"2025-10-30T15:43:11.791519+00:00\", \"bootscript\": 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\": \"96\"}, \"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: + - "1999" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 073ee911-d54e-4849-8164-33af42be3663 + status: 200 OK + code: 200 + duration: 162.460442ms +- id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"9d7bd367-b967-465d-8c3c-da7bd7ecac60\", \"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\": \"d0f5788f-7a63-4208-97c7-aaf97c0344b7\", \"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:6c:e9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.769272+00:00\", \"modification_date\": \"2025-10-30T15:43:11.780837+00:00\", \"bootscript\": 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\": \"301\", \"node_id\": \"185\"}, \"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: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 16c44e56-49ad-4cff-a6f9-d1632e69d377 + status: 200 OK + code: 200 + duration: 147.407484ms +- id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2001 + body: "{\"server\": {\"id\": \"9d7bd367-b967-465d-8c3c-da7bd7ecac60\", \"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\": \"d0f5788f-7a63-4208-97c7-aaf97c0344b7\", \"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:6c:e9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.769272+00:00\", \"modification_date\": \"2025-10-30T15:43:11.780837+00:00\", \"bootscript\": 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\": \"301\", \"node_id\": \"185\"}, \"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: + - "2001" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8a6b7f34-09e8-4825-84dd-263b36348130 + status: 200 OK + code: 200 + duration: 139.302961ms +- id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2047 + body: "{\"server\": {\"id\": \"67769a67-6d3c-4afe-92d1-100365ad7bb2\", \"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\": \"51142a7d-4f1f-44d9-964a-353fbec43ddb\", \"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:6c:eb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.862526+00:00\", \"modification_date\": \"2025-10-30T15:43:11.786490+00:00\", \"bootscript\": 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\": \"193\"}, \"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: + - "2047" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 217953fc-6c8b-4765-b794-d81b17a6cc5e + status: 200 OK + code: 200 + duration: 158.199629ms +- id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/812c87be-b534-4597-808a-01f92b550f0e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2045 + body: "{\"server\": {\"id\": \"812c87be-b534-4597-808a-01f92b550f0e\", \"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\": \"2967b426-ade6-41f4-834b-5694c28155e6\", \"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:6c:e3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.106575+00:00\", \"modification_date\": \"2025-10-30T15:43:11.791519+00:00\", \"bootscript\": 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\": \"96\"}, \"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: + - "2045" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eb53c2bd-f1a2-4439-86d0-4a678a3c33bb + status: 200 OK + code: 200 + duration: 173.252125ms +- id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"327ee127-1d81-43cd-b954-34b8322dccdc\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60/action\", \"href_result\": \"/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60\", \"started_at\": \"2025-10-30T15:43:12.449994+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/327ee127-1d81-43cd-b954-34b8322dccdc + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 73e21ce4-fc73-4e96-b9a9-0812777faf21 + status: 202 Accepted + code: 202 + duration: 259.758779ms +- id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/812c87be-b534-4597-808a-01f92b550f0e/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"12cca68a-6ca8-4357-9bd0-1de47f0db01c\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/812c87be-b534-4597-808a-01f92b550f0e/action\", \"href_result\": \"/servers/812c87be-b534-4597-808a-01f92b550f0e\", \"started_at\": \"2025-10-30T15:43:12.474406+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/12cca68a-6ca8-4357-9bd0-1de47f0db01c + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eb23a03d-b625-4f8c-862b-f422d45587c7 + status: 202 Accepted + code: 202 + duration: 263.191037ms +- id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1964 + body: "{\"server\": {\"id\": \"9d7bd367-b967-465d-8c3c-da7bd7ecac60\", \"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\": \"d0f5788f-7a63-4208-97c7-aaf97c0344b7\", \"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:6c:e9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.769272+00:00\", \"modification_date\": \"2025-10-30T15:43:12.254791+00:00\", \"bootscript\": 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\": \"301\", \"node_id\": \"185\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1964" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3074786b-a3d6-42d7-bbf2-44488fbcb76d + status: 200 OK + code: 200 + duration: 141.536792ms +- id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/812c87be-b534-4597-808a-01f92b550f0e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1962 + body: "{\"server\": {\"id\": \"812c87be-b534-4597-808a-01f92b550f0e\", \"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\": \"2967b426-ade6-41f4-834b-5694c28155e6\", \"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:6c:e3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.106575+00:00\", \"modification_date\": \"2025-10-30T15:43:12.279359+00:00\", \"bootscript\": 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\": \"96\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1962" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 85085c72-f106-4b22-bcdd-d13026b861c5 + status: 200 OK + code: 200 + duration: 160.17259ms +- id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"d994fc3e-d606-4e5f-a3d9-35d8c31aa778\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2/action\", \"href_result\": \"/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2\", \"started_at\": \"2025-10-30T15:43:12.658164+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d994fc3e-d606-4e5f-a3d9-35d8c31aa778 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e575de6e-4f7e-4941-a21f-2f9c77522352 + status: 202 Accepted + code: 202 + duration: 459.425744ms +- id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2010 + body: "{\"server\": {\"id\": \"67769a67-6d3c-4afe-92d1-100365ad7bb2\", \"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\": \"51142a7d-4f1f-44d9-964a-353fbec43ddb\", \"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:6c:eb\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:47.862526+00:00\", \"modification_date\": \"2025-10-30T15:43:12.255172+00:00\", \"bootscript\": 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\": \"193\"}, \"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: + - "2010" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d40501f8-d7af-45ad-9d3c-7c665d382cbf + status: 200 OK + code: 200 + duration: 139.36104ms +- id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"9d7bd367-b967-465d-8c3c-da7bd7ecac60\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e6bd951a-dee3-488a-8436-7528cfac4e91 + status: 404 Not Found + code: 404 + duration: 50.011565ms +- id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d0f5788f-7a63-4208-97c7-aaf97c0344b7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"d0f5788f-7a63-4208-97c7-aaf97c0344b7\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b504b555-8612-4201-a9c6-aacea374c204 + status: 404 Not Found + code: 404 + duration: 30.288887ms +- id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d0f5788f-7a63-4208-97c7-aaf97c0344b7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"d0f5788f-7a63-4208-97c7-aaf97c0344b7\", \"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-30T15:42:47.320393Z\", \"updated_at\":\"2025-10-30T15:43:14.284282Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:43:14.284282Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 74654118-fff4-4064-a57b-b6f4f31d4578 + status: 200 OK + code: 200 + duration: 110.969754ms +- id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"67769a67-6d3c-4afe-92d1-100365ad7bb2\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7a61036e-9a30-4d93-a0a6-665bf838ccc8 + status: 404 Not Found + code: 404 + duration: 60.060646ms +- id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/51142a7d-4f1f-44d9-964a-353fbec43ddb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"51142a7d-4f1f-44d9-964a-353fbec43ddb\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 70704b8e-f91c-496e-b4e4-f7021c9bb3a4 + status: 404 Not Found + code: 404 + duration: 25.249425ms +- id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/812c87be-b534-4597-808a-01f92b550f0e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"812c87be-b534-4597-808a-01f92b550f0e\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - af1ea3ae-2042-4ee5-87db-209148dffed3 + status: 404 Not Found + code: 404 + duration: 306.687874ms +- id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d0f5788f-7a63-4208-97c7-aaf97c0344b7 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5be0885d-4e43-4ed2-bb6d-445564fd8468 + status: 204 No Content + code: 204 + duration: 173.249091ms +- id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2967b426-ade6-41f4-834b-5694c28155e6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"2967b426-ade6-41f4-834b-5694c28155e6\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a4cdf012-ee02-4e51-9a6f-e2ff2e6c724b + status: 404 Not Found + code: 404 + duration: 37.654224ms +- id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/51142a7d-4f1f-44d9-964a-353fbec43ddb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"51142a7d-4f1f-44d9-964a-353fbec43ddb\", \"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-30T15:42:47.332409Z\", \"updated_at\":\"2025-10-30T15:43:14.526461Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:43:14.526461Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 11133ef8-d996-4e3a-8a20-e24570318390 + status: 200 OK + code: 200 + duration: 110.821455ms +- id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2967b426-ade6-41f4-834b-5694c28155e6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"2967b426-ade6-41f4-834b-5694c28155e6\", \"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-30T15:42:47.269722Z\", \"updated_at\":\"2025-10-30T15:43:14.146637Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:43:14.146637Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 76c376f0-f8e2-417f-883e-124a67178759 + status: 200 OK + code: 200 + duration: 88.325677ms +- id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/51142a7d-4f1f-44d9-964a-353fbec43ddb + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fd9eb0e7-c153-4a29-be02-b6c9002dfd3d + status: 204 No Content + code: 204 + duration: 154.087107ms +- id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2967b426-ade6-41f4-834b-5694c28155e6 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5e2ea84c-b9b5-435c-9c17-3213d3275ae2 + status: 204 No Content + code: 204 + duration: 173.305808ms +- id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.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/dbe2acb3-7132-44f4-8e34-d54ca796874c + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 64c40ec5-6845-418f-bb44-3dd35abd8736 + status: 204 No Content + code: 204 + duration: 170.171829ms +- id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d7bd367-b967-465d-8c3c-da7bd7ecac60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"9d7bd367-b967-465d-8c3c-da7bd7ecac60\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 25d61af7-321e-4b76-b264-3ec3185c9eb2 + status: 404 Not Found + code: 404 + duration: 73.359473ms +- id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67769a67-6d3c-4afe-92d1-100365ad7bb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"67769a67-6d3c-4afe-92d1-100365ad7bb2\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dc8abbb7-2ea1-4fb1-88ec-d295560b9d09 + status: 404 Not Found + code: 404 + duration: 46.074509ms +- id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/812c87be-b534-4597-808a-01f92b550f0e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"812c87be-b534-4597-808a-01f92b550f0e\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 78a44985-1762-4da0-966f-92dc7ad42558 + status: 404 Not Found + code: 404 + duration: 64.731968ms 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 4daf72e3f..b2a064ef2 100644 --- a/internal/services/instance/testdata/server-with-reserved-ip.cassette.yaml +++ b/internal/services/instance/testdata/server-with-reserved-ip.cassette.yaml @@ -1,4722 +1,3653 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 50 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c272c518-acd1-4326-9dfb-c1e4d53aa01d - status: 201 Created - code: 201 - duration: 2.617748513s - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5f43b8c1-7fb8-422f-a1c1-fa951ccaab5d - status: 200 OK - code: 200 - duration: 112.035005ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2b588217-aa9c-4aff-9c53-9b7e22a7d75e - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 65.719977ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 55988b6d-ed60-4728-b283-2c792e7628b3 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 55.273742ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1403 - uncompressed: false - 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: - - "1403" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8fb1e758-4be4-4160-aa4f-2aba41430294 - status: 200 OK - code: 200 - duration: 41.234599ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 358 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2329 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:05 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 502f957e-ad6d-46bf-bf19-fa405b7f8c89 - status: 201 Created - code: 201 - duration: 1.390483062s - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2375 - 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": "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: - - "2375" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3a335824-5bb8-4a4b-8c70-1ee3258c8aed - status: 200 OK - code: 200 - duration: 131.949627ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2375 - 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": "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: - - "2375" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 51d2cdd0-92b0-4bd7-8d8c-e8ceb1263db5 - status: 200 OK - code: 200 - duration: 147.124404ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1905a3c4-6cdd-457b-9f6d-c857a1ad06e6 - status: 200 OK - code: 200 - duration: 75.575507ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweron"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/da84a8fc-9f97-4560-b062-83cd51341bbe - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6def66d3-12be-4667-a090-5747e97258ce - status: 202 Accepted - code: 202 - duration: 272.583082ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2351 - 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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6ea0b6a0-6251-459b-ac0e-abd7d20b7df7 - status: 200 OK - code: 200 - duration: 159.333675ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2531 - 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": "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: - - "2531" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4392763b-f6e0-4e38-9ece-075473435737 - status: 200 OK - code: 200 - duration: 161.963185ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2531 - 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": "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: - - "2531" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ce3fa481-c96d-4923-8225-33c6bee3c54f - status: 200 OK - code: 200 - duration: 157.69843ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - 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": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1c0ae9bd-9d76-4034-8153-d501bbf8558d - status: 404 Not Found - code: 404 - duration: 38.070523ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ed1c9041-e6c8-47ee-9eb5-03f724411e33 - status: 200 OK - code: 200 - duration: 87.170872ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/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:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5f8069ff-937e-420a-9b58-59e962996aac - status: 200 OK - code: 200 - duration: 104.722424ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/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:55:12 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fe1e0ad1-41ea-4bdc-b1d2-6ff1a2aa41a8 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 91.89695ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2531 - 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": "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: - - "2531" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c02d98bf-ed15-45aa-932d-b233dfbec9aa - status: 200 OK - code: 200 - duration: 161.351983ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 443 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e62e0c91-8f41-446f-8fc7-aee9cb9fe421 - status: 200 OK - code: 200 - duration: 111.283202ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2485 - 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": "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: - - "2485" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 28ff3816-27ba-42d4-8143-2816ffcb970d - status: 200 OK - code: 200 - duration: 140.141699ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - 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": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 383e38c9-aea0-4f60-8e20-54ddde847991 - status: 404 Not Found - code: 404 - duration: 32.614661ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7a274676-1763-4b3b-a300-cbe92562b108 - status: 200 OK - code: 200 - duration: 71.684541ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/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:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9b847a85-8b50-447f-b286-eb668bd5ce69 - status: 200 OK - code: 200 - duration: 108.722343ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/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:55:13 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b4d4a2af-dc55-4519-9388-9e3f43aa255a - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 100.242095ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 443 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8f9da216-b249-451e-b844-42d506338ca1 - status: 200 OK - code: 200 - duration: 145.659187ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2531 - 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": "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: - - "2531" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 17fb71f4-3f7a-4497-9b19-20bba60c4e1a - status: 200 OK - code: 200 - duration: 141.756609ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - 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": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2b722bee-3761-424d-bb54-2d97c90bb1e2 - status: 404 Not Found - code: 404 - duration: 23.56118ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dd5020c4-e0a9-407d-a8dc-685ae479dbd6 - status: 200 OK - code: 200 - duration: 92.479319ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/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:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 30d599ec-844a-4b5d-9ba3-a4632db3058d - status: 200 OK - code: 200 - duration: 106.536897ms - - 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/d61b9e5c-8628-4a83-839b-6736905fd9c9/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:55:14 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2a243c64-9b90-4dfa-bb93-aabc6d189626 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 111.218181ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 50 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 367 - uncompressed: false - 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: - - "367" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:14 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 626e6725-78bd-4700-a447-75c1e0f696f4 - status: 201 Created - code: 201 - duration: 691.919571ms - - 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/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 367 - uncompressed: false - 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: - - "367" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 200a1ce1-844a-4288-8501-7dd07262e93f - status: 200 OK - code: 200 - duration: 116.884368ms - - 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/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2531 - 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": "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: - - "2531" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 971b33b8-7f07-4182-baf8-ba21b2d7190a - status: 200 OK - code: 200 - duration: 152.174021ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2531 - 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": "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: - - "2531" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2577ae18-83a7-49c2-aad9-15c58d291c54 - status: 200 OK - code: 200 - duration: 161.999875ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 15 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"server":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/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 04f2402b-e52a-430e-a11c-55c094eb7a64 - status: 200 OK - code: 200 - duration: 578.828278ms - - id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 49 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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/5e1fe2cf-537e-4763-9643-89980a20a0b0 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 444 - uncompressed: false - 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: - - "444" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a18c10ad-9734-432c-84e7-6b759e4b7877 - status: 200 OK - code: 200 - duration: 903.109898ms - - 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/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2533 - 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": "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: - - "2533" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bf0eaeee-5695-4bea-893e-139c150d2a60 - status: 200 OK - code: 200 - duration: 173.030193ms - - 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/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2487 - 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": "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: - - "2487" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7e7fff07-4aaa-48b2-b075-c88643e9100c - status: 200 OK - code: 200 - duration: 150.632058ms - - 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/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - 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": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e8c9e7b2-aaed-4c81-9513-a71d2580827e - status: 404 Not Found - code: 404 - duration: 29.058551ms - - 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/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 801ced1e-256a-458d-a48f-e2a6cb7665a6 - status: 200 OK - code: 200 - duration: 83.010593ms - - 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/d61b9e5c-8628-4a83-839b-6736905fd9c9/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:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 76daee27-5287-4849-8965-d2318daa9d32 - status: 200 OK - code: 200 - duration: 102.950992ms - - 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/d61b9e5c-8628-4a83-839b-6736905fd9c9/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:55:17 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 89096e92-cc1b-48e5-bafa-bf1249e47b0b - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 95.262876ms - - 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/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2533 - 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": "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: - - "2533" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5f0b7aa5-35d8-4737-94df-1d088b1dd6b2 - status: 200 OK - code: 200 - duration: 137.825269ms - - 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/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2533 - 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": "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: - - "2533" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e41ce611-8826-4a5a-a34f-0569d5941175 - status: 200 OK - code: 200 - duration: 161.542932ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 444 - uncompressed: false - 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: - - "444" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 059d3ba0-ac93-4e54-a909-f2c30a5bb5f3 - status: 200 OK - code: 200 - duration: 107.482787ms - - 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/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 444 - uncompressed: false - 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: - - "444" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 01430008-f77b-4611-8ac7-a1f0af7d7b20 - status: 200 OK - code: 200 - duration: 111.61783ms - - 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/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f29e5304-5d6c-4ac8-ab31-330c68001aa3 - status: 200 OK - code: 200 - duration: 122.225437ms - - 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/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2533 - 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": "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: - - "2533" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4605b4a9-8379-4cfd-9c35-e065ea4ec30e - status: 200 OK - code: 200 - duration: 154.383644ms - - 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/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - 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": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7e8705d0-e522-4b16-971b-3c66ca5e9126 - status: 404 Not Found - code: 404 - duration: 30.747399ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4176413c-849e-4c49-b8da-442e47dffd39 - status: 200 OK - code: 200 - duration: 89.038496ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/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:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 33f011ef-1a0b-47b5-b464-ddb68dc5b3a7 - status: 200 OK - code: 200 - duration: 88.754855ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/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:55:18 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9a45a7b0-133a-4751-96d1-0cbc2ff3a3b6 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 100.760737ms - - 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/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5fc3832a-a015-4c52-a488-079ab2b75e10 - status: 200 OK - code: 200 - duration: 100.913663ms - - 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/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2487 - 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": "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: - - "2487" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dfa279fe-2f90-44ec-886f-0e0c63d35cc2 - status: 200 OK - code: 200 - duration: 134.664438ms - - 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/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 444 - uncompressed: false - 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: - - "444" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1b827e92-85e3-4130-ac04-27a751ced814 - status: 200 OK - code: 200 - duration: 140.065238ms - - 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/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - 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": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 64fa11a7-3f85-432e-b95a-25faa4ea42f6 - status: 404 Not Found - code: 404 - duration: 32.237015ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a1a87c1a-36aa-43ce-b755-ed64cfdeff1a - status: 200 OK - code: 200 - duration: 94.339499ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/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:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2dc36994-1d34-4d15-b193-1e31daa10bb3 - status: 200 OK - code: 200 - duration: 90.416412ms - - 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/d61b9e5c-8628-4a83-839b-6736905fd9c9/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:55:19 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d394df33-dd75-48e2-bf90-68fdf88ccaae - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 97.307319ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2487 - 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": "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: - - "2487" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f17c03cf-ca15-4ab5-9d8d-9276a99ebaa8 - status: 200 OK - code: 200 - duration: 147.15183ms - - id: 60 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 17 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"public_ips":[]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+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: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1959 - 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": "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: - - "1959" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 57b0053d-9e17-482d-bf52-f16f1ccf05b2 - status: 200 OK - code: 200 - duration: 594.785857ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1959 - 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": "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: - - "1959" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e588708e-51ed-4aee-84ba-f71bc8a75ce8 - status: 200 OK - code: 200 - duration: 143.502156ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1959 - 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": "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: - - "1959" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 880be059-59f6-42ef-a4c8-b2f993cb0a90 - status: 200 OK - code: 200 - duration: 156.866157ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - 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": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ca500dec-ac7e-49d6-aa66-b93151aaedf5 - status: 404 Not Found - code: 404 - duration: 31.132439ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 69f39c0b-6f65-4d65-8206-21b1cee6f39f - status: 200 OK - code: 200 - duration: 86.020152ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/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:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8b3b334e-558a-4a2f-937c-6e1ff74b6343 - status: 200 OK - code: 200 - duration: 92.563989ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/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:55:21 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 679a914c-6d2d-442e-b5c2-12ce02c49667 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 115.327147ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2005 - 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": "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: - - "2005" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 22635bb0-12fc-48e6-bee9-f87b8c25b913 - status: 200 OK - code: 200 - duration: 163.473613ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1959 - 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": "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: - - "1959" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5ed1c454-7e00-49dd-8806-b93300866ec4 - status: 200 OK - code: 200 - duration: 174.350404ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 367 - uncompressed: false - 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: - - "367" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ad28e9de-5267-4d33-b47e-8035060f92a2 - status: 200 OK - code: 200 - duration: 111.860084ms - - 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/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2005 - 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": "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: - - "2005" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e45898bd-6811-4a19-9b2a-7ceb272ace93 - status: 200 OK - code: 200 - duration: 125.718961ms - - 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/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3088dfb6-e951-480d-89ed-33b03531db4d - status: 200 OK - code: 200 - duration: 145.280451ms - - 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/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - 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": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2ed284a8-04f2-4d4b-8608-3ce79236f8b0 - status: 404 Not Found - code: 404 - duration: 23.585206ms - - id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b4426bd1-58c5-456c-bb1a-e9c2f60f0e16 - status: 200 OK - code: 200 - duration: 101.111533ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/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:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ada72de3-c2d8-42f1-9e1c-2dbed18eb8ff - status: 200 OK - code: 200 - duration: 104.721486ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/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:55:22 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6ed39fa6-65dd-4853-8abc-a5b2b921f435 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 95.336103ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3d42aecd-7d13-4e28-b2a1-ec8489613540 - status: 200 OK - code: 200 - duration: 104.402007ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 367 - uncompressed: false - 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: - - "367" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6af29e40-a84f-49c1-9e4e-4e74d310bcc7 - status: 200 OK - code: 200 - duration: 130.459847ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2005 - 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": "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: - - "2005" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2ba11078-180a-480b-87c1-98344113c409 - status: 200 OK - code: 200 - duration: 133.999185ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - 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": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4077fd9d-abbe-4f8d-86f1-f335c8574d88 - status: 404 Not Found - code: 404 - duration: 31.412143ms - - id: 80 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 13cc6260-db45-4038-a8c7-448ce866d5f3 - status: 200 OK - code: 200 - duration: 97.797777ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/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:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e4b1f967-299f-42fb-a1f4-87560b41fcd3 - status: 200 OK - code: 200 - duration: 115.080567ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9/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:55:22 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - be44b33d-99c0-4dc2-9136-32e5409f20e6 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 97.498547ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2005 - 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": "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: - - "2005" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4b6994af-4585-488c-99f4-deaa0df13e1d - status: 200 OK - code: 200 - duration: 151.5674ms - - id: 84 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 28 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"dynamic_ip_required":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/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2480 - 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": "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: - - "2480" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 245d410c-2a97-402e-8c4d-f68d44eb762c - status: 200 OK - code: 200 - duration: 947.220717ms - - 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/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2480 - 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": "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: - - "2480" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f3a75a04-a104-4d29-bb84-c7edb4fb6075 - status: 200 OK - code: 200 - duration: 141.553842ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2480 - 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": "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: - - "2480" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0dbf618b-bd11-445d-9995-372868003760 - status: 200 OK - code: 200 - duration: 148.84029ms - - 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/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - 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": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 342d2eb9-a6e9-4ca8-9117-51d5d05ef00b - status: 404 Not Found - code: 404 - duration: 24.545381ms - - id: 88 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d043b99d-7e42-437a-9822-eb875ef80148 - status: 200 OK - code: 200 - duration: 86.251385ms - - 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/d61b9e5c-8628-4a83-839b-6736905fd9c9/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:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c660b431-e691-4211-bd35-aa098ba3b625 - status: 200 OK - code: 200 - duration: 118.51504ms - - 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/d61b9e5c-8628-4a83-839b-6736905fd9c9/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:55:24 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 496f6369-1b8d-45cc-94ec-45d8fc33b7ba - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 120.296231ms - - 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/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2526 - 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": "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: - - "2526" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c79dd782-79e6-4938-ac6d-ea0b9766c721 - status: 200 OK - code: 200 - duration: 156.335146ms - - 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/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2526 - 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": "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: - - "2526" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 620f2621-1428-4b27-b0df-2faae25450f7 - status: 200 OK - code: 200 - duration: 153.049652ms - - 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/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 367 - uncompressed: false - 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: - - "367" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 73b41a9b-7a3d-4add-9c65-b8bc72ab706c - status: 200 OK - code: 200 - duration: 105.042556ms - - 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/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6f8fe368-1b41-458a-90a8-53aab3eec3bd - status: 200 OK - code: 200 - duration: 137.080388ms - - 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/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2480 - 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": "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: - - "2480" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9ad8f6fd-9c32-4b9e-aa3c-482b44b5c2b6 - status: 200 OK - code: 200 - duration: 165.41142ms - - 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/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - 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": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 981fc27b-4322-4ec0-9b10-d18f21e2d847 - status: 404 Not Found - code: 404 - duration: 29.959085ms - - id: 97 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9531a01f-0cd1-40ad-9144-2df3e117b734 - status: 200 OK - code: 200 - duration: 86.074735ms - - 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/d61b9e5c-8628-4a83-839b-6736905fd9c9/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:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 85784df6-08f5-4aa8-9940-7aaf51a5269b - status: 200 OK - code: 200 - duration: 102.09847ms - - 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/d61b9e5c-8628-4a83-839b-6736905fd9c9/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:55:25 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3b62d27a-a1a9-4f2c-a349-eb012b005d1d - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 106.091297ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2480 - 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": "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: - - "2480" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c7707bb1-56ac-4706-9dcb-057f331f22c4 - status: 200 OK - code: 200 - duration: 145.092732ms - - 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/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 - 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:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cfaae40e-776b-408d-a865-f33ec6c6d7b1 - status: 204 No Content - code: 204 - duration: 308.503731ms - - 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/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2526 - 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": "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: - - "2526" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 059bdac2-35df-474d-8b91-ab754c88d041 - status: 200 OK - code: 200 - duration: 162.00533ms - - 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/ips/8f457b60-852b-44a2-9bba-c98d7f41b8c3 - 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:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3163a147-3a29-411b-83bd-64eed91d7138 - status: 204 No Content - code: 204 - duration: 422.953769ms - - id: 104 - 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/d61b9e5c-8628-4a83-839b-6736905fd9c9/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e9568521-9ce0-46a6-beeb-27bf4c48abc4 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b9fce54e-c90e-4544-be4f-e1f38708b542 - status: 202 Accepted - code: 202 - duration: 270.576144ms - - 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/d61b9e5c-8628-4a83-839b-6736905fd9c9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2489 - 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": {"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: - - "2489" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bc51a97d-bf04-43eb-9932-7d22eec14155 - status: 200 OK - code: 200 - duration: 148.848927ms - - 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/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 - 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": "d61b9e5c-8628-4a83-839b-6736905fd9c9"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 50022953-e316-425d-bef6-670b3a95d364 - status: 404 Not Found - code: 404 - duration: 52.440269ms - - 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/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - 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": "d8621f39-e0ca-4567-a3b8-657838bee3c8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 92f99ab1-4d51-4b6f-83e5-89f26b2fc5ac - status: 404 Not Found - code: 404 - duration: 28.439955ms - - 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/d8621f39-e0ca-4567-a3b8-657838bee3c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cccb14e5-7597-414f-8c0d-cab0f4108aec - status: 200 OK - code: 200 - duration: 96.478354ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d8621f39-e0ca-4567-a3b8-657838bee3c8 - 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:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7f131e7b-a1d4-435b-b45e-a1a4471f1685 - status: 204 No Content - code: 204 - duration: 141.60732ms - - id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d61b9e5c-8628-4a83-839b-6736905fd9c9 - 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": "d61b9e5c-8628-4a83-839b-6736905fd9c9"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d8aa802d-13f4-4041-8b7c-c48e5e17b399 - status: 404 Not Found - code: 404 - duration: 57.344941ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 50 + host: api.scaleway.com + body: "{\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:15 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) + X-Request-Id: + - c8eb03b3-a6a4-4a82-806a-4cad39e0a562 + status: 201 Created + code: 201 + duration: 496.461511ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b5bd5cba-4a23-4ab7-ae24-733897cfbd0a + status: 200 OK + code: 200 + duration: 131.020318ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:15 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b44614e1-87f7-4819-8a62-ba56f14cebff + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 99.068266ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:15 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5a2c66b7-80f4-4bbe-a93d-d657fac33c07 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 36.739724ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1403 + 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: + - "1403" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c70e889a-d80b-4de3-8172-f7e218e56630 + status: 200 OK + code: 200 + duration: 44.408609ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 356 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-inspiring-allen\",\"dynamic_ip_required\":false,\"commercial_type\":\"DEV1-S\",\"image\":\"8ac1fe52-01dc-4dc1-8578-73ec5d126648\",\"volumes\":{\"0\":{\"boot\":false}},\"public_ips\":[\"65a60f6b-fa89-4e49-bc25-fced17fa3df3\"],\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[\"terraform-test\",\"scaleway_instance_server\",\"reserved_ip\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2371 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"reserved_ip\"], \"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\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}, \"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\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:16.213884+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2371" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:17 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 719da2cb-6d67-4213-9f03-7865cab7dd18 + status: 201 Created + code: 201 + duration: 1.658846523s +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2325 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"reserved_ip\"], \"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\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}, \"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\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:16.213884+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2325" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c28c19bb-fddc-4cde-8b73-ea04a4d8dddd + status: 200 OK + code: 200 + duration: 151.281996ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2325 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"reserved_ip\"], \"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\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}, \"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\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:16.213884+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2325" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8911d2bb-75ae-4eb5-b756-36e1df68cb8c + status: 200 OK + code: 200 + duration: 161.095824ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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-30T15:42:16.341239Z\", \"updated_at\":\"2025-10-30T15:42:16.341239Z\", \"references\":[{\"id\":\"ead9d40b-a791-4fe7-942b-c0c6a806d300\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"703ba140-806d-4e90-921a-dd4226259db1\", \"created_at\":\"2025-10-30T15:42:16.341239Z\", \"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: + - Thu, 30 Oct 2025 15:42:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 141cb920-ad44-4974-a150-c61bef2092b4 + status: 200 OK + code: 200 + duration: 95.579362ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"e6701517-30ff-4ff7-840f-cb4d6faefc50\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/703ba140-806d-4e90-921a-dd4226259db1/action\", \"href_result\": \"/servers/703ba140-806d-4e90-921a-dd4226259db1\", \"started_at\": \"2025-10-30T15:42:17.783988+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:17 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e6701517-30ff-4ff7-840f-cb4d6faefc50 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 19f2fe33-ae3b-4db7-b50b-15271356d455 + status: 202 Accepted + code: 202 + duration: 287.802984ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2347 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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\": \"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\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}, \"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\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:17.566560+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: + - "2347" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e408150a-c893-4013-905d-96f59f4c90f4 + status: 200 OK + code: 200 + duration: 155.967315ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2527 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}, \"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\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:20.291098+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2527" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b38fa94f-3152-4028-8b66-902b57ea5d57 + status: 200 OK + code: 200 + duration: 160.430559ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2481 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}, \"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\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:20.291098+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2481" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - edeafaa3-92e2-4597-a99f-1a02ec031d52 + status: 200 OK + code: 200 + duration: 174.784122ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"63e500c9-b677-4962-a807-3ba71d71ac68\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 811906b3-635b-474c-8985-1e2be0118d85 + status: 404 Not Found + code: 404 + duration: 27.154525ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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-30T15:42:16.341239Z\", \"updated_at\":\"2025-10-30T15:42:16.341239Z\", \"references\":[{\"id\":\"ead9d40b-a791-4fe7-942b-c0c6a806d300\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"703ba140-806d-4e90-921a-dd4226259db1\", \"created_at\":\"2025-10-30T15:42:16.341239Z\", \"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: + - Thu, 30 Oct 2025 15:42:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e52ca8c2-e94f-41da-9b62-40f8a7d43593 + status: 200 OK + code: 200 + duration: 83.306432ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ca084828-0e19-4ab5-accd-9217d29ba17c + status: 200 OK + code: 200 + duration: 115.181322ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:23 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ef4c00a2-accc-4499-bdef-b703b749f004 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 100.882431ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2527 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}, \"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\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:20.291098+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2527" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f1ab9361-b276-4dda-a187-758220724887 + status: 200 OK + code: 200 + duration: 176.769957ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 441 + body: "{\"ip\": {\"id\": \"65a60f6b-fa89-4e49-bc25-fced17fa3df3\", \"address\": \"51.15.236.240\", \"prefix\": null, \"reverse\": null, \"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\"}, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"zone\": \"fr-par-1\", \"type\": \"routed_ipv4\", \"state\": \"attached\", \"tags\": [], \"ipam_id\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}}" + headers: + Content-Length: + - "441" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 26412c18-ecea-45ab-af91-03afa87078c5 + status: 200 OK + code: 200 + duration: 137.597709ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2481 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}, \"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\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:20.291098+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2481" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 351bc8ee-567b-4bbe-b09f-3fbad3c8cf59 + status: 200 OK + code: 200 + duration: 143.06212ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"63e500c9-b677-4962-a807-3ba71d71ac68\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2eb99144-fa29-4d2c-b44a-6f9ff3e2b4ea + status: 404 Not Found + code: 404 + duration: 26.62949ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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-30T15:42:16.341239Z\", \"updated_at\":\"2025-10-30T15:42:16.341239Z\", \"references\":[{\"id\":\"ead9d40b-a791-4fe7-942b-c0c6a806d300\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"703ba140-806d-4e90-921a-dd4226259db1\", \"created_at\":\"2025-10-30T15:42:16.341239Z\", \"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: + - Thu, 30 Oct 2025 15:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0b2cc226-94c3-40fd-b442-9f93882ad66d + status: 200 OK + code: 200 + duration: 98.636528ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d0ce6ff5-1078-4dd7-b698-248b6484be08 + status: 200 OK + code: 200 + duration: 98.371581ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:24 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c6b5b41d-c1dc-4845-a172-919a6948be1e + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 104.021569ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 441 + body: "{\"ip\": {\"id\": \"65a60f6b-fa89-4e49-bc25-fced17fa3df3\", \"address\": \"51.15.236.240\", \"prefix\": null, \"reverse\": null, \"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\"}, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"zone\": \"fr-par-1\", \"type\": \"routed_ipv4\", \"state\": \"attached\", \"tags\": [], \"ipam_id\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}}" + headers: + Content-Length: + - "441" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d2698b44-bd52-4571-a798-91e6d9ddc625 + status: 200 OK + code: 200 + duration: 125.697257ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2481 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}, \"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\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:20.291098+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2481" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6b20981d-80cc-44c5-a419-1bfa0bafb6e1 + status: 200 OK + code: 200 + duration: 158.555862ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"63e500c9-b677-4962-a807-3ba71d71ac68\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c5a05cb3-6197-4db5-8eee-4789741bab73 + status: 404 Not Found + code: 404 + duration: 26.64521ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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-30T15:42:16.341239Z\", \"updated_at\":\"2025-10-30T15:42:16.341239Z\", \"references\":[{\"id\":\"ead9d40b-a791-4fe7-942b-c0c6a806d300\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"703ba140-806d-4e90-921a-dd4226259db1\", \"created_at\":\"2025-10-30T15:42:16.341239Z\", \"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: + - Thu, 30 Oct 2025 15:42:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ffbab1f3-44eb-4bfe-ab2b-8d1eb03406ae + status: 200 OK + code: 200 + duration: 104.169587ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b2eba2d4-aa5e-4fb6-a41d-b112ac661364 + status: 200 OK + code: 200 + duration: 127.65523ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:25 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ffddb29d-8df0-46b1-9b6c-0caa1cec4034 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 117.278095ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 50 + host: api.scaleway.com + body: "{\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 364 + 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\": \"8b378a45-d7a3-46b2-837a-94cc71a3a9d4\"}}" + headers: + Content-Length: + - "364" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:26 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 876feacb-14dd-4333-863d-c4c774e89e0a + status: 201 Created + code: 201 + duration: 1.312533748s +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 364 + 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\": \"8b378a45-d7a3-46b2-837a-94cc71a3a9d4\"}}" + headers: + Content-Length: + - "364" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c7744d82-b342-48ec-a524-72bccbbda774 + status: 200 OK + code: 200 + duration: 118.85292ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2527 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}, \"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\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:20.291098+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2527" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e7131855-fca7-4c85-ba7b-ff177ab70f22 + status: 200 OK + code: 200 + duration: 142.350505ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2527 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"attached\", \"ipam_id\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}, \"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\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:20.291098+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2527" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c7779009-06ca-4255-a968-332a877c6c27 + status: 200 OK + code: 200 + duration: 161.109122ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 15 + host: api.scaleway.com + body: "{\"server\":null}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 889413cc-3412-4520-be3e-1088c3a1e6d9 + status: 200 OK + code: 200 + duration: 573.821854ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 49 + host: api.scaleway.com + body: "{\"server\":\"703ba140-806d-4e90-921a-dd4226259db1\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 439 + body: "{\"ip\": {\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"prefix\": null, \"reverse\": null, \"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\"}, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"zone\": \"fr-par-1\", \"type\": \"routed_ipv4\", \"state\": \"pending\", \"tags\": [], \"ipam_id\": \"8b378a45-d7a3-46b2-837a-94cc71a3a9d4\"}}" + headers: + Content-Length: + - "439" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6b51bcb3-6c79-4e20-8dd2-aef8ede55081 + status: 200 OK + code: 200 + duration: 656.609776ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2477 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"8b378a45-d7a3-46b2-837a-94cc71a3a9d4\"}, \"public_ips\": [{\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"8b378a45-d7a3-46b2-837a-94cc71a3a9d4\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:20.291098+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2477" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7fcf21f8-9a9f-4937-94ea-873658bc8d8a + status: 200 OK + code: 200 + duration: 153.977916ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2477 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"8b378a45-d7a3-46b2-837a-94cc71a3a9d4\"}, \"public_ips\": [{\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"8b378a45-d7a3-46b2-837a-94cc71a3a9d4\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:20.291098+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2477" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cae678ee-7486-4ce2-92f1-67667a196c8c + status: 200 OK + code: 200 + duration: 116.270978ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"63e500c9-b677-4962-a807-3ba71d71ac68\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - edc2e15f-1c4c-4633-a910-c899263a5a0c + status: 404 Not Found + code: 404 + duration: 25.14185ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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-30T15:42:16.341239Z\", \"updated_at\":\"2025-10-30T15:42:16.341239Z\", \"references\":[{\"id\":\"ead9d40b-a791-4fe7-942b-c0c6a806d300\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"703ba140-806d-4e90-921a-dd4226259db1\", \"created_at\":\"2025-10-30T15:42:16.341239Z\", \"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: + - Thu, 30 Oct 2025 15:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 247db608-f341-4ceb-8889-06c5cee699c2 + status: 200 OK + code: 200 + duration: 102.456435ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 41228ba1-a67d-4fba-8c9b-0d26c0e1d57c + status: 200 OK + code: 200 + duration: 95.531474ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e0b5ec8b-9f2f-45ff-98a5-aca7f9eb7733 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 124.139737ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2523 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"8b378a45-d7a3-46b2-837a-94cc71a3a9d4\"}, \"public_ips\": [{\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"8b378a45-d7a3-46b2-837a-94cc71a3a9d4\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:20.291098+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2523" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f3b659b8-ac64-4a66-a10c-a64631edd778 + status: 200 OK + code: 200 + duration: 145.64712ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2477 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"8b378a45-d7a3-46b2-837a-94cc71a3a9d4\"}, \"public_ips\": [{\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"8b378a45-d7a3-46b2-837a-94cc71a3a9d4\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:20.291098+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2477" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 52c3a4af-a99d-45d8-9e1b-ec18ca9c453a + status: 200 OK + code: 200 + duration: 130.857909ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 439 + body: "{\"ip\": {\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"prefix\": null, \"reverse\": null, \"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\"}, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"zone\": \"fr-par-1\", \"type\": \"routed_ipv4\", \"state\": \"pending\", \"tags\": [], \"ipam_id\": \"8b378a45-d7a3-46b2-837a-94cc71a3a9d4\"}}" + headers: + Content-Length: + - "439" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8f81afaa-105b-46ab-9717-f2ee2a4d6285 + status: 200 OK + code: 200 + duration: 113.470735ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dfd68490-776d-4095-9782-c1d2d79e0d64 + status: 200 OK + code: 200 + duration: 115.317719ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 439 + body: "{\"ip\": {\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"prefix\": null, \"reverse\": null, \"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\"}, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"zone\": \"fr-par-1\", \"type\": \"routed_ipv4\", \"state\": \"pending\", \"tags\": [], \"ipam_id\": \"8b378a45-d7a3-46b2-837a-94cc71a3a9d4\"}}" + headers: + Content-Length: + - "439" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3ed5493e-122a-480a-9ea0-8a395ab85289 + status: 200 OK + code: 200 + duration: 124.565216ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2477 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"8b378a45-d7a3-46b2-837a-94cc71a3a9d4\"}, \"public_ips\": [{\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"8b378a45-d7a3-46b2-837a-94cc71a3a9d4\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:20.291098+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2477" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 66644ea6-7f9c-4f30-83e7-10201881530e + status: 200 OK + code: 200 + duration: 141.743427ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"63e500c9-b677-4962-a807-3ba71d71ac68\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8c5faa74-268e-4c8a-aceb-b248164d8605 + status: 404 Not Found + code: 404 + duration: 27.580385ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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-30T15:42:16.341239Z\", \"updated_at\":\"2025-10-30T15:42:16.341239Z\", \"references\":[{\"id\":\"ead9d40b-a791-4fe7-942b-c0c6a806d300\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"703ba140-806d-4e90-921a-dd4226259db1\", \"created_at\":\"2025-10-30T15:42:16.341239Z\", \"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: + - Thu, 30 Oct 2025 15:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e28b480a-6cf5-449f-a743-cb71ce9d69a6 + status: 200 OK + code: 200 + duration: 81.511617ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 794c82c7-0499-4958-b394-14b479955ef9 + status: 200 OK + code: 200 + duration: 85.48472ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 57f3fc48-a319-4bf8-bd53-2c80d37b555c + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 101.324762ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 439 + body: "{\"ip\": {\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"prefix\": null, \"reverse\": null, \"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\"}, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"zone\": \"fr-par-1\", \"type\": \"routed_ipv4\", \"state\": \"pending\", \"tags\": [], \"ipam_id\": \"8b378a45-d7a3-46b2-837a-94cc71a3a9d4\"}}" + headers: + Content-Length: + - "439" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b73c9ae8-4ce8-433c-b813-e00c24350941 + status: 200 OK + code: 200 + duration: 130.380323ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2477 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"8b378a45-d7a3-46b2-837a-94cc71a3a9d4\"}, \"public_ips\": [{\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"8b378a45-d7a3-46b2-837a-94cc71a3a9d4\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:20.291098+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2477" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 786c6a64-be4c-46ee-b6b3-26c260e3c147 + status: 200 OK + code: 200 + duration: 142.861325ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d72133c6-dfe7-4602-8b1d-538e6c14ecf4 + status: 200 OK + code: 200 + duration: 149.961864ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"63e500c9-b677-4962-a807-3ba71d71ac68\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 71c06335-265e-4972-bb22-52eb9fe1f62c + status: 404 Not Found + code: 404 + duration: 29.604141ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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-30T15:42:16.341239Z\", \"updated_at\":\"2025-10-30T15:42:16.341239Z\", \"references\":[{\"id\":\"ead9d40b-a791-4fe7-942b-c0c6a806d300\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"703ba140-806d-4e90-921a-dd4226259db1\", \"created_at\":\"2025-10-30T15:42:16.341239Z\", \"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: + - Thu, 30 Oct 2025 15:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 66ff3cdb-d801-4e2b-92ff-9d05519ab6bd + status: 200 OK + code: 200 + duration: 84.729322ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fb697138-a7f0-4cdc-9b32-19c68d5a371a + status: 200 OK + code: 200 + duration: 99.211127ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 40ad542a-3809-435b-8dc1-dd8b37145c65 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 108.629344ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2477 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"8b378a45-d7a3-46b2-837a-94cc71a3a9d4\"}, \"public_ips\": [{\"id\": \"aede723a-ffe8-427b-b809-eea14206f331\", \"address\": \"51.158.97.50\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"8b378a45-d7a3-46b2-837a-94cc71a3a9d4\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:20.291098+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2477" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c920c61f-5c3a-43f4-8d52-25a43e32c6a0 + status: 200 OK + code: 200 + duration: 206.989905ms +- id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 17 + host: api.scaleway.com + body: "{\"public_ips\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1955 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:20.291098+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "1955" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4c72cfc5-439d-4a8f-ac23-75b91824af32 + status: 200 OK + code: 200 + duration: 714.55949ms +- id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1955 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:20.291098+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "1955" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 430b9b7b-664e-4e52-a992-a16e0dd3548b + status: 200 OK + code: 200 + duration: 149.375956ms +- id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2001 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:20.291098+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2001" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 94b55b56-a94e-48ca-af91-cd6f9cc765bf + status: 200 OK + code: 200 + duration: 167.810635ms +- id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"63e500c9-b677-4962-a807-3ba71d71ac68\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7a612157-2d45-4a28-9df3-e8d29c9566b9 + status: 404 Not Found + code: 404 + duration: 30.477589ms +- id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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-30T15:42:16.341239Z\", \"updated_at\":\"2025-10-30T15:42:16.341239Z\", \"references\":[{\"id\":\"ead9d40b-a791-4fe7-942b-c0c6a806d300\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"703ba140-806d-4e90-921a-dd4226259db1\", \"created_at\":\"2025-10-30T15:42:16.341239Z\", \"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: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 25e7540a-492b-41b4-aa00-9f4da5e1e7dc + status: 200 OK + code: 200 + duration: 96.956909ms +- id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ecbc33a5-d01b-4bd3-97f9-890018d445d0 + status: 200 OK + code: 200 + duration: 96.922314ms +- id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e1ed523a-c9f9-4c08-b46c-8d096446a68c + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 90.366737ms +- id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1955 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:20.291098+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "1955" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1ee38e4e-d1d5-4b55-9550-429ea8a25c55 + status: 200 OK + code: 200 + duration: 132.714842ms +- id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2001 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:20.291098+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2001" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 43fb51e8-f863-4cd9-8753-db56bff191d2 + status: 200 OK + code: 200 + duration: 146.335382ms +- id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d4fa6ac5-0536-4150-898b-44eedf9a2926 + status: 200 OK + code: 200 + duration: 127.529016ms +- id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 364 + 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\": \"8b378a45-d7a3-46b2-837a-94cc71a3a9d4\"}}" + headers: + Content-Length: + - "364" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 422b14a8-f37c-42b7-9608-1d487d26cdf0 + status: 200 OK + code: 200 + duration: 127.617552ms +- id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1955 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:20.291098+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "1955" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c8a628d7-620c-4b50-9ff8-8ae3d2963fac + status: 200 OK + code: 200 + duration: 168.543109ms +- id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"63e500c9-b677-4962-a807-3ba71d71ac68\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 153b2330-326a-4e98-8c07-625ef8081e9a + status: 404 Not Found + code: 404 + duration: 34.479085ms +- id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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-30T15:42:16.341239Z\", \"updated_at\":\"2025-10-30T15:42:16.341239Z\", \"references\":[{\"id\":\"ead9d40b-a791-4fe7-942b-c0c6a806d300\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"703ba140-806d-4e90-921a-dd4226259db1\", \"created_at\":\"2025-10-30T15:42:16.341239Z\", \"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: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a5e3990f-460c-43e0-9c41-b8db21cf3003 + status: 200 OK + code: 200 + duration: 106.24943ms +- id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2395a11f-80c5-4512-9024-5709746f7f4a + status: 200 OK + code: 200 + duration: 109.363131ms +- id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 42a0ca49-7a85-4c3a-b5b1-8357a4cb045c + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 112.373778ms +- id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d0d6ed05-fa9e-4bb8-9490-44d67e15ae00 + status: 200 OK + code: 200 + duration: 114.900718ms +- id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 364 + 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\": \"8b378a45-d7a3-46b2-837a-94cc71a3a9d4\"}}" + headers: + Content-Length: + - "364" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c0a07f85-40e2-4e2a-8ff9-051df8af70ac + status: 200 OK + code: 200 + duration: 136.803824ms +- id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1955 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:20.291098+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "1955" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 96b16ae6-c391-4247-a4e8-94be1f5de65f + status: 200 OK + code: 200 + duration: 161.017393ms +- id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"63e500c9-b677-4962-a807-3ba71d71ac68\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 78f96b9f-57df-4173-a723-c6741fb4e440 + status: 404 Not Found + code: 404 + duration: 28.360528ms +- id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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-30T15:42:16.341239Z\", \"updated_at\":\"2025-10-30T15:42:16.341239Z\", \"references\":[{\"id\":\"ead9d40b-a791-4fe7-942b-c0c6a806d300\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"703ba140-806d-4e90-921a-dd4226259db1\", \"created_at\":\"2025-10-30T15:42:16.341239Z\", \"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: + - Thu, 30 Oct 2025 15:42:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 15f34101-7299-4b99-b40a-32dff8ccbbe6 + status: 200 OK + code: 200 + duration: 95.051756ms +- id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1f0c4f36-6e06-49e4-87dd-538201be5811 + status: 200 OK + code: 200 + duration: 104.747012ms +- id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:34 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0e64826c-f65f-4065-8a9e-3e9a3d857c30 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 107.351668ms +- id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2001 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:20.291098+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2001" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cb636c31-72e3-43da-9dc7-486a1cbc4c9d + status: 200 OK + code: 200 + duration: 152.551593ms +- id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 28 + host: api.scaleway.com + body: "{\"dynamic_ip_required\":true}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2476 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"dynamic\": true, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"ff3457bc-6102-46c3-b801-ea4d41d80b75\"}, \"public_ips\": [{\"id\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"dynamic\": true, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"ff3457bc-6102-46c3-b801-ea4d41d80b75\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:34.660160+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2476" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - a9b24cc0-14de-4b94-ba5f-b96c9aff61d1 + status: 200 OK + code: 200 + duration: 1.114573082s +- id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2476 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"dynamic\": true, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"ff3457bc-6102-46c3-b801-ea4d41d80b75\"}, \"public_ips\": [{\"id\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"dynamic\": true, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"ff3457bc-6102-46c3-b801-ea4d41d80b75\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:34.660160+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2476" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7d4855e1-7107-40d4-a948-4c069b8b097d + status: 200 OK + code: 200 + duration: 133.153937ms +- id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2476 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"dynamic\": true, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"ff3457bc-6102-46c3-b801-ea4d41d80b75\"}, \"public_ips\": [{\"id\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"dynamic\": true, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"ff3457bc-6102-46c3-b801-ea4d41d80b75\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:34.660160+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2476" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c3392b28-5e7f-4fa1-b078-f11758de82d1 + status: 200 OK + code: 200 + duration: 217.536561ms +- id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"63e500c9-b677-4962-a807-3ba71d71ac68\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 065afaa3-2cc3-4ff5-a3e0-bb56fd5ba8ba + status: 404 Not Found + code: 404 + duration: 29.144579ms +- id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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-30T15:42:16.341239Z\", \"updated_at\":\"2025-10-30T15:42:16.341239Z\", \"references\":[{\"id\":\"ead9d40b-a791-4fe7-942b-c0c6a806d300\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"703ba140-806d-4e90-921a-dd4226259db1\", \"created_at\":\"2025-10-30T15:42:16.341239Z\", \"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: + - Thu, 30 Oct 2025 15:42:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f3014821-cb7b-4aee-82db-ee82d48e5cb0 + status: 200 OK + code: 200 + duration: 104.579449ms +- id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fef4d93b-43b5-4fb6-84d7-f8c051ec2a3f + status: 200 OK + code: 200 + duration: 100.617396ms +- id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:36 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 82c896dd-257c-47d1-a7c0-5716151d6d1e + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 96.204057ms +- id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2522 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"dynamic\": true, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"ff3457bc-6102-46c3-b801-ea4d41d80b75\"}, \"public_ips\": [{\"id\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"dynamic\": true, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"ff3457bc-6102-46c3-b801-ea4d41d80b75\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:34.660160+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2522" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 55f60fd2-cf56-4c66-a13b-1da84cde742c + status: 200 OK + code: 200 + duration: 191.238742ms +- id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2476 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"dynamic\": true, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"ff3457bc-6102-46c3-b801-ea4d41d80b75\"}, \"public_ips\": [{\"id\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"dynamic\": true, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"ff3457bc-6102-46c3-b801-ea4d41d80b75\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:34.660160+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2476" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 90d2838d-b844-4558-95ec-1ed0c36348d6 + status: 200 OK + code: 200 + duration: 141.484123ms +- id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 364 + 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\": \"8b378a45-d7a3-46b2-837a-94cc71a3a9d4\"}}" + headers: + Content-Length: + - "364" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 63abef47-37e2-46fc-bbc9-205e9ce1236f + status: 200 OK + code: 200 + duration: 144.368825ms +- id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2522 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"dynamic\": true, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"ff3457bc-6102-46c3-b801-ea4d41d80b75\"}, \"public_ips\": [{\"id\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"dynamic\": true, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"ff3457bc-6102-46c3-b801-ea4d41d80b75\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:34.660160+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2522" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3579b073-fd62-4300-bf3e-131571ee94c3 + status: 200 OK + code: 200 + duration: 144.272353ms +- id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 365 + 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\": \"8d7491ac-127e-46b7-9451-aadbcc1eda96\"}}" + headers: + Content-Length: + - "365" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bfdea1f6-de89-454d-acc1-4a53de3df207 + status: 200 OK + code: 200 + duration: 150.336228ms +- id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"63e500c9-b677-4962-a807-3ba71d71ac68\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bbab6e4a-6ba1-4f92-a0ef-1b70642ae612 + status: 404 Not Found + code: 404 + duration: 30.083811ms +- id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: "{\"id\":\"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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-30T15:42:16.341239Z\", \"updated_at\":\"2025-10-30T15:42:16.341239Z\", \"references\":[{\"id\":\"ead9d40b-a791-4fe7-942b-c0c6a806d300\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"703ba140-806d-4e90-921a-dd4226259db1\", \"created_at\":\"2025-10-30T15:42:16.341239Z\", \"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: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 98c56b9c-0e3f-4bfa-a8f2-b1a0bd47ed45 + status: 200 OK + code: 200 + duration: 88.574918ms +- id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bfa8487d-6e69-4c24-8f30-b170bd5ea78a + status: 200 OK + code: 200 + duration: 116.097814ms +- id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6640c904-54c8-4499-9c34-ef246078ec7b + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 115.186515ms +- id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2476 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"dynamic\": true, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"ff3457bc-6102-46c3-b801-ea4d41d80b75\"}, \"public_ips\": [{\"id\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"dynamic\": true, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"ff3457bc-6102-46c3-b801-ea4d41d80b75\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:34.660160+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2476" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dc52e6af-0c03-413f-9145-c421ed16b80d + status: 200 OK + code: 200 + duration: 143.130001ms +- id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2522 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"dynamic\": true, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"ff3457bc-6102-46c3-b801-ea4d41d80b75\"}, \"public_ips\": [{\"id\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"dynamic\": true, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"ff3457bc-6102-46c3-b801-ea4d41d80b75\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:34.660160+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2522" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 52b92573-3c87-489d-be2a-a3f0c4b66398 + status: 200 OK + code: 200 + duration: 139.897146ms +- id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 16846cbc-4c86-43ff-b1fd-2a0cb46f8f37 + status: 204 No Content + code: 204 + duration: 305.165004ms +- id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 09e51432-33f4-4c24-a2ed-dd7632f4383d + status: 204 No Content + code: 204 + duration: 343.298784ms +- id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"93eb2ae3-3c3e-460c-b124-bd896445da6a\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/703ba140-806d-4e90-921a-dd4226259db1/action\", \"href_result\": \"/servers/703ba140-806d-4e90-921a-dd4226259db1\", \"started_at\": \"2025-10-30T15:42:38.234497+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/93eb2ae3-3c3e-460c-b124-bd896445da6a + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c924249c-613d-4380-95fb-95b14f3d8ab5 + status: 202 Accepted + code: 202 + duration: 276.607366ms +- id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2439 + body: "{\"server\": {\"id\": \"703ba140-806d-4e90-921a-dd4226259db1\", \"name\": \"tf-srv-inspiring-allen\", \"arch\": \"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-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\": \"63e500c9-b677-4962-a807-3ba71d71ac68\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"reserved_ip\"], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"terminating\", \"public_ip\": {\"id\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"dynamic\": true, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"ff3457bc-6102-46c3-b801-ea4d41d80b75\"}, \"public_ips\": [{\"id\": \"1d2e96c2-a32c-4233-a580-b2f48aea84ec\", \"address\": \"51.158.76.222\", \"dynamic\": true, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [], \"state\": \"pending\", \"ipam_id\": \"ff3457bc-6102-46c3-b801-ea4d41d80b75\"}], \"mac_address\": \"de:00:00:d0:6c:d1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": true, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:16.213884+00:00\", \"modification_date\": \"2025-10-30T15:42:38.004831+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"38\", \"hypervisor_id\": \"1801\", \"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: + - "2439" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 6dea1600-e731-44a2-bcaa-a13ee0509034 + status: 200 OK + code: 200 + duration: 139.201301ms +- id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"703ba140-806d-4e90-921a-dd4226259db1\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d6531dbc-a454-496c-a563-49acb02a1b52 + status: 404 Not Found + code: 404 + duration: 39.35406ms +- id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"63e500c9-b677-4962-a807-3ba71d71ac68\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b451327a-ff61-42fc-9b56-3ed6a4102383 + status: 404 Not Found + code: 404 + duration: 28.067539ms +- id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: "{\"id\":\"63e500c9-b677-4962-a807-3ba71d71ac68\", \"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-30T15:42:16.341239Z\", \"updated_at\":\"2025-10-30T15:42:39.993046Z\", \"references\":[], \"parent_snapshot_id\":\"df785211-983d-4dbe-b7b7-ddcc1dfcfc60\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:39.993046Z\", \"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 858ba2fa-c3f4-446f-912f-e50278c7b852 + status: 200 OK + code: 200 + duration: 85.42011ms +- id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63e500c9-b677-4962-a807-3ba71d71ac68 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bcbf4aa5-0641-4f14-ac32-1e319405f25f + status: 204 No Content + code: 204 + duration: 164.827062ms +- id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703ba140-806d-4e90-921a-dd4226259db1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"703ba140-806d-4e90-921a-dd4226259db1\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cb953454-55c3-4bf1-afd3-8481a416f4f1 + status: 404 Not Found + code: 404 + duration: 44.106375ms diff --git a/internal/services/instance/testdata/snapshot-from-s3.cassette.yaml b/internal/services/instance/testdata/snapshot-from-s3.cassette.yaml index 1647bdb4c..162a3a183 100644 --- a/internal/services/instance/testdata/snapshot-from-s3.cassette.yaml +++ b/internal/services/instance/testdata/snapshot-from-s3.cassette.yaml @@ -1,3055 +1,2547 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - c1b39faf-dc5a-431f-b159-daaa712c6ac1 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225357Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/ - method: PUT - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Length: - - "0" - Date: - - Wed, 29 Oct 2025 22:53:57 GMT - Location: - - /test-acc-scaleway-instance-snapshot-4680108982039155704 - X-Amz-Id-2: - - txgc94a0854d49e4612ae31-0069029b05 - X-Amz-Request-Id: - - txgc94a0854d49e4612ae31-0069029b05 - status: 200 OK - code: 200 - duration: 523.164613ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - acl: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - c2af11c8-59b9-4d85-8870-303fe22c26ca - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,Z,e - X-Amz-Acl: - - private - X-Amz-Checksum-Crc32: - - AAAAAA== - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225358Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?acl= - method: PUT - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Length: - - "0" - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - X-Amz-Id-2: - - txgee4a6929c25a4ea68e86-0069029b06 - X-Amz-Request-Id: - - txgee4a6929c25a4ea68e86-0069029b06 - status: 200 OK - code: 200 - duration: 119.424482ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - acl: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 386ed1cd-04e2-4510-9135-ad0a574fad75 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225358Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?acl= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 698 - uncompressed: false - body: |- - - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL - headers: - Content-Length: - - "698" - Content-Type: - - text/xml; charset=utf-8 - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - X-Amz-Id-2: - - txga45284206f254693a51d-0069029b06 - X-Amz-Request-Id: - - txga45284206f254693a51d-0069029b06 - status: 200 OK - code: 200 - duration: 26.306107ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - object-lock: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 6e183bdd-dbb5-4743-9871-ca5cfa0c06ec - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225358Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?object-lock= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 324 - uncompressed: false - body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg307ece8a011843619e36-0069029b06txg307ece8a011843619e36-0069029b06/test-acc-scaleway-instance-snapshot-4680108982039155704 - headers: - Content-Length: - - "324" - Content-Type: - - application/xml - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - X-Amz-Id-2: - - txg307ece8a011843619e36-0069029b06 - X-Amz-Request-Id: - - txg307ece8a011843619e36-0069029b06 - status: 404 Not Found - code: 404 - duration: 59.138819ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 145a157e-c3fa-4173-89f2-0f606be70e66 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225358Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/ - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 281 - uncompressed: false - body: |- - - test-acc-scaleway-instance-snapshot-46801089820391557041000false - headers: - Content-Length: - - "281" - Content-Type: - - application/xml - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - X-Amz-Id-2: - - txgd24f0c0fdef94601910a-0069029b06 - X-Amz-Request-Id: - - txgd24f0c0fdef94601910a-0069029b06 - status: 200 OK - code: 200 - duration: 152.265359ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - tagging: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - cea6a59f-fb9d-4856-9f82-d9d367000434 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225358Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?tagging= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 349 - uncompressed: false - body: NoSuchTagSetThe TagSet does not existtxg9163d9d13a0549c3b637-0069029b06txg9163d9d13a0549c3b637-0069029b06/test-acc-scaleway-instance-snapshot-4680108982039155704test-acc-scaleway-instance-snapshot-4680108982039155704 - headers: - Content-Length: - - "349" - Content-Type: - - application/xml - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - X-Amz-Id-2: - - txg9163d9d13a0549c3b637-0069029b06 - X-Amz-Request-Id: - - txg9163d9d13a0549c3b637-0069029b06 - status: 404 Not Found - code: 404 - duration: 17.799712ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - cors: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 2b2b577c-3bff-44c3-a0a7-7a4e670942bf - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225358Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?cors= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 292 - uncompressed: false - body: NoSuchCORSConfigurationThe CORS configuration does not existtxgddde6ce40ca34962ab14-0069029b06txgddde6ce40ca34962ab14-0069029b06/test-acc-scaleway-instance-snapshot-4680108982039155704 - headers: - Content-Length: - - "292" - Content-Type: - - application/xml - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - X-Amz-Id-2: - - txgddde6ce40ca34962ab14-0069029b06 - X-Amz-Request-Id: - - txgddde6ce40ca34962ab14-0069029b06 - status: 404 Not Found - code: 404 - duration: 18.366372ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - versioning: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 03e3169e-34b5-44e9-92d2-46aeb8ffa54b - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225358Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?versioning= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 107 - uncompressed: false - body: |- - - - headers: - Content-Length: - - "107" - Content-Type: - - text/xml; charset=utf-8 - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - X-Amz-Id-2: - - txgfba92c55d5314e58b882-0069029b06 - X-Amz-Request-Id: - - txgfba92c55d5314e58b882-0069029b06 - status: 200 OK - code: 200 - duration: 66.919938ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - lifecycle: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 90edf8a1-52bf-4d44-860a-718e146b8ea0 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225358Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?lifecycle= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 382 - uncompressed: false - body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg469621e8959b41f8a676-0069029b06txg469621e8959b41f8a676-0069029b06/test-acc-scaleway-instance-snapshot-4680108982039155704test-acc-scaleway-instance-snapshot-4680108982039155704 - headers: - Content-Length: - - "382" - Content-Type: - - application/xml - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - X-Amz-Id-2: - - txg469621e8959b41f8a676-0069029b06 - X-Amz-Request-Id: - - txg469621e8959b41f8a676-0069029b06 - status: 404 Not Found - code: 404 - duration: 22.946766ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 196669 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: MzAwMTANClFGSfsAAAADAAAAAAAAAAAAAAAAAAAAEAAAAABAAAAAAAAAAAAAAAIAAAAAAAMAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAABwAAAAAAAAAABoA/hXAAABgAAAZGlydHkgYml0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABY29ycnVwdCBiaXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZXh0ZXJuYWwgZGF0YSBmaWxlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADY29tcHJlc3Npb24gdHlwZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEZXh0ZW5kZWQgTDIgZW50cmllcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAbGF6eSByZWZjb3VudHMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAYml0bWFwcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBcmF3IGV4dGVybmFsIGRhdGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANCjANCngtYW16LWNoZWNrc3VtLWNyYzMyOngyTThQZz09DQoNCg== - form: - x-id: - - PutObject - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - c7a419c8-0d03-4c31-afe5-84ab6f022718 - Amz-Sdk-Request: - - attempt=1; max=3 - Content-Encoding: - - aws-chunked - Content-Type: - - application/octet-stream - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,Z,e - X-Amz-Content-Sha256: - - STREAMING-UNSIGNED-PAYLOAD-TRAILER - X-Amz-Date: - - 20251029T225358Z - X-Amz-Decoded-Content-Length: - - "196624" - X-Amz-Trailer: - - x-amz-checksum-crc32 - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Length: - - "0" - Date: - - Wed, 29 Oct 2025 22:53:58 GMT - Etag: - - '"59868f85d88d34ee79e32759dad70bf7"' - X-Amz-Checksum-Crc32: - - x2M8Pg== - X-Amz-Checksum-Type: - - FULL_OBJECT - X-Amz-Id-2: - - txgd2829f2c617b4eab8eff-0069029b06 - X-Amz-Request-Id: - - txgd2829f2c617b4eab8eff-0069029b06 - status: 200 OK - code: 200 - duration: 4.412826502s - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 201dcb39-4fc2-478b-9beb-fa23f1124c35 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 196624 - uncompressed: false - body: "" - headers: - Accept-Ranges: - - bytes - Content-Length: - - "196624" - Content-Type: - - application/octet-stream - Date: - - Wed, 29 Oct 2025 22:54:02 GMT - Etag: - - '"59868f85d88d34ee79e32759dad70bf7"' - Last-Modified: - - Wed, 29 Oct 2025 22:53:58 GMT - X-Amz-Id-2: - - txg774669afc3144eca8715-0069029b0a - X-Amz-Request-Id: - - txg774669afc3144eca8715-0069029b0a - status: 200 OK - code: 200 - duration: 20.682923ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - tagging: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - a492b190-7c58-452f-8612-c5831c61e30f - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 75 - uncompressed: false - body: |- - - - headers: - Content-Length: - - "75" - Content-Type: - - text/xml; charset=utf-8 - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - X-Amz-Id-2: - - txg6dbe0bab79654d87aa0e-0069029b0b - X-Amz-Request-Id: - - txg6dbe0bab79654d87aa0e-0069029b0b - status: 200 OK - code: 200 - duration: 19.476328ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - acl: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 5c164095-375d-479c-a676-6c5b58985d2f - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 698 - uncompressed: false - body: |- - - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL - headers: - Content-Length: - - "698" - Content-Type: - - text/xml; charset=utf-8 - Date: - - Wed, 29 Oct 2025 22:54:03 GMT - X-Amz-Id-2: - - txg0c6515ae68aa48d4b2ad-0069029b0b - X-Amz-Request-Id: - - txg0c6515ae68aa48d4b2ad-0069029b0b - status: 200 OK - code: 200 - duration: 22.405304ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - 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-4680108982039155704","key":"test-acc-instance-snapshot.qcow2"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 774 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 452b7b39-1290-4c41-a83a-5ba83671c0bf - status: 201 Created - code: 201 - duration: 1.073824566s - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 463 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c2051398-4615-4989-a7e9-98332969c3b5 - status: 200 OK - code: 200 - duration: 107.48546ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 463 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2e357fef-845c-4ac8-914c-ea96d9ce14f1 - status: 200 OK - code: 200 - duration: 90.555405ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 463 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fbbc894b-391f-4d7c-9a4c-c6ef27ccc0a7 - status: 200 OK - code: 200 - duration: 101.32372ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 463 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9535a324-2564-4ed7-a2fa-e3b858ca3304 - status: 200 OK - code: 200 - duration: 86.574291ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - acl: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 863e262f-bf0a-4ee0-9755-495f892137d1 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225409Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?acl= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 698 - uncompressed: false - body: |- - - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL - headers: - Content-Length: - - "698" - Content-Type: - - text/xml; charset=utf-8 - Date: - - Wed, 29 Oct 2025 22:54:09 GMT - X-Amz-Id-2: - - txgd717e441121440869fdc-0069029b11 - X-Amz-Request-Id: - - txgd717e441121440869fdc-0069029b11 - status: 200 OK - code: 200 - duration: 131.721791ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - object-lock: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - f33fbfac-3692-486f-8eca-10d4c4d9cfe8 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225409Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?object-lock= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 324 - uncompressed: false - body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg1eb31795f1f54e348df3-0069029b12txg1eb31795f1f54e348df3-0069029b12/test-acc-scaleway-instance-snapshot-4680108982039155704 - headers: - Content-Length: - - "324" - Content-Type: - - application/xml - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - X-Amz-Id-2: - - txg1eb31795f1f54e348df3-0069029b12 - X-Amz-Request-Id: - - txg1eb31795f1f54e348df3-0069029b12 - status: 404 Not Found - code: 404 - duration: 116.38335ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 9994bae4-f2d6-43dd-a8fb-d666546f626b - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225410Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/ - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 790 - uncompressed: false - body: |- - - 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: - - "790" - Content-Type: - - application/xml - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - X-Amz-Id-2: - - txg75189b6cbc4b42fc9f6e-0069029b12 - X-Amz-Request-Id: - - txg75189b6cbc4b42fc9f6e-0069029b12 - status: 200 OK - code: 200 - duration: 154.608065ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - tagging: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - ebf6e1fd-c639-4c64-81a6-fe039ed06d11 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225410Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?tagging= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 349 - uncompressed: false - body: NoSuchTagSetThe TagSet does not existtxg390407c0204346e9b400-0069029b12txg390407c0204346e9b400-0069029b12/test-acc-scaleway-instance-snapshot-4680108982039155704test-acc-scaleway-instance-snapshot-4680108982039155704 - headers: - Content-Length: - - "349" - Content-Type: - - application/xml - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - X-Amz-Id-2: - - txg390407c0204346e9b400-0069029b12 - X-Amz-Request-Id: - - txg390407c0204346e9b400-0069029b12 - status: 404 Not Found - code: 404 - duration: 47.357962ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - cors: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - dfeddc17-f943-45bd-98d7-1d5f4f4a9421 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225410Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?cors= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 292 - uncompressed: false - body: NoSuchCORSConfigurationThe CORS configuration does not existtxg2718bf0e497e4b88a10b-0069029b12txg2718bf0e497e4b88a10b-0069029b12/test-acc-scaleway-instance-snapshot-4680108982039155704 - headers: - Content-Length: - - "292" - Content-Type: - - application/xml - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - X-Amz-Id-2: - - txg2718bf0e497e4b88a10b-0069029b12 - X-Amz-Request-Id: - - txg2718bf0e497e4b88a10b-0069029b12 - status: 404 Not Found - code: 404 - duration: 37.610477ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - versioning: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - c35c7eae-c1a7-4399-84eb-5b379661512d - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225410Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?versioning= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 107 - uncompressed: false - body: |- - - - headers: - Content-Length: - - "107" - Content-Type: - - text/xml; charset=utf-8 - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - X-Amz-Id-2: - - txgf3bb66eb52d04643b4d9-0069029b12 - X-Amz-Request-Id: - - txgf3bb66eb52d04643b4d9-0069029b12 - status: 200 OK - code: 200 - duration: 42.5006ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - lifecycle: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 277109f8-ff8d-4c1e-819b-a52065677e2e - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225410Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?lifecycle= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 382 - uncompressed: false - body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg97a065dd0ba6414b9dbb-0069029b12txg97a065dd0ba6414b9dbb-0069029b12/test-acc-scaleway-instance-snapshot-4680108982039155704test-acc-scaleway-instance-snapshot-4680108982039155704 - headers: - Content-Length: - - "382" - Content-Type: - - application/xml - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - X-Amz-Id-2: - - txg97a065dd0ba6414b9dbb-0069029b12 - X-Amz-Request-Id: - - txg97a065dd0ba6414b9dbb-0069029b12 - status: 404 Not Found - code: 404 - duration: 13.244425ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - a24d1a65-b18e-4acb-96a4-904729fabee4 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 196624 - uncompressed: false - body: "" - headers: - Accept-Ranges: - - bytes - Content-Length: - - "196624" - Content-Type: - - application/octet-stream - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - Etag: - - '"59868f85d88d34ee79e32759dad70bf7"' - Last-Modified: - - Wed, 29 Oct 2025 22:53:58 GMT - X-Amz-Id-2: - - txg5b4e0a0235094d1784dc-0069029b12 - X-Amz-Request-Id: - - txg5b4e0a0235094d1784dc-0069029b12 - status: 200 OK - code: 200 - duration: 10.968189ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - tagging: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 51c92d12-3b11-44e7-9649-a5714c7fc73c - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 75 - uncompressed: false - body: |- - - - headers: - Content-Length: - - "75" - Content-Type: - - text/xml; charset=utf-8 - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - X-Amz-Id-2: - - txgc0de39e7c627406fa977-0069029b12 - X-Amz-Request-Id: - - txgc0de39e7c627406fa977-0069029b12 - status: 200 OK - code: 200 - duration: 93.381661ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - acl: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - ddc0fed5-ea5a-4298-99c8-4ffced593d7d - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 698 - uncompressed: false - body: |- - - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL - headers: - Content-Length: - - "698" - Content-Type: - - text/xml; charset=utf-8 - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - X-Amz-Id-2: - - txg7449007572244172bcb2-0069029b12 - X-Amz-Request-Id: - - txg7449007572244172bcb2-0069029b12 - status: 200 OK - code: 200 - duration: 47.251784ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 463 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 81e66c99-b29f-4764-99d0-5c2fa60103b5 - status: 200 OK - code: 200 - duration: 100.104902ms - - id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - acl: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 8b138ae1-cfd5-460b-b045-f9471508a9d3 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225410Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?acl= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 698 - uncompressed: false - body: |- - - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL - headers: - Content-Length: - - "698" - Content-Type: - - text/xml; charset=utf-8 - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - X-Amz-Id-2: - - txgd1eff684cf5e4298acff-0069029b12 - X-Amz-Request-Id: - - txgd1eff684cf5e4298acff-0069029b12 - status: 200 OK - code: 200 - duration: 15.667326ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - object-lock: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 9120be4a-a2c6-4ef8-abb2-4197693da697 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225410Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?object-lock= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 324 - uncompressed: false - body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg4ae69ba99b0541899f3a-0069029b12txg4ae69ba99b0541899f3a-0069029b12/test-acc-scaleway-instance-snapshot-4680108982039155704 - headers: - Content-Length: - - "324" - Content-Type: - - application/xml - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - X-Amz-Id-2: - - txg4ae69ba99b0541899f3a-0069029b12 - X-Amz-Request-Id: - - txg4ae69ba99b0541899f3a-0069029b12 - status: 404 Not Found - code: 404 - duration: 33.594888ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 50bab079-50e8-40ba-b624-368616e0a399 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225410Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/ - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 790 - uncompressed: false - body: |- - - 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: - - "790" - Content-Type: - - application/xml - Date: - - Wed, 29 Oct 2025 22:54:10 GMT - X-Amz-Id-2: - - txg210c3244baaa4babb6f7-0069029b12 - X-Amz-Request-Id: - - txg210c3244baaa4babb6f7-0069029b12 - status: 200 OK - code: 200 - duration: 111.840285ms - - id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - tagging: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - c9f59e97-a935-48be-90c2-e0665a619b82 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225411Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?tagging= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 349 - uncompressed: false - body: NoSuchTagSetThe TagSet does not existtxg6b2ad1780f8a4b71ab71-0069029b13txg6b2ad1780f8a4b71ab71-0069029b13/test-acc-scaleway-instance-snapshot-4680108982039155704test-acc-scaleway-instance-snapshot-4680108982039155704 - headers: - Content-Length: - - "349" - Content-Type: - - application/xml - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - X-Amz-Id-2: - - txg6b2ad1780f8a4b71ab71-0069029b13 - X-Amz-Request-Id: - - txg6b2ad1780f8a4b71ab71-0069029b13 - status: 404 Not Found - code: 404 - duration: 49.512441ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - cors: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 9a91f208-034e-42bc-8e9d-c8c6590a6879 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225411Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?cors= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 292 - uncompressed: false - body: NoSuchCORSConfigurationThe CORS configuration does not existtxg16b188ad70f643309ec8-0069029b13txg16b188ad70f643309ec8-0069029b13/test-acc-scaleway-instance-snapshot-4680108982039155704 - headers: - Content-Length: - - "292" - Content-Type: - - application/xml - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - X-Amz-Id-2: - - txg16b188ad70f643309ec8-0069029b13 - X-Amz-Request-Id: - - txg16b188ad70f643309ec8-0069029b13 - status: 404 Not Found - code: 404 - duration: 110.950852ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - versioning: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - c92c2dfe-4c0d-4d8a-9667-cd342fce6f04 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225411Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?versioning= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 107 - uncompressed: false - body: |- - - - headers: - Content-Length: - - "107" - Content-Type: - - text/xml; charset=utf-8 - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - X-Amz-Id-2: - - txg1f53a541f101457b99cf-0069029b13 - X-Amz-Request-Id: - - txg1f53a541f101457b99cf-0069029b13 - status: 200 OK - code: 200 - duration: 111.258037ms - - id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - lifecycle: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 4f1d2b5a-660d-4acf-963a-3f373685fed1 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225411Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?lifecycle= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 382 - uncompressed: false - body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg272e92f2912c41b69f1d-0069029b13txg272e92f2912c41b69f1d-0069029b13/test-acc-scaleway-instance-snapshot-4680108982039155704test-acc-scaleway-instance-snapshot-4680108982039155704 - headers: - Content-Length: - - "382" - Content-Type: - - application/xml - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - X-Amz-Id-2: - - txg272e92f2912c41b69f1d-0069029b13 - X-Amz-Request-Id: - - txg272e92f2912c41b69f1d-0069029b13 - status: 404 Not Found - code: 404 - duration: 15.105596ms - - id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - c7125a4d-eddf-46a5-9cde-1af39beacdb8 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 196624 - uncompressed: false - body: "" - headers: - Accept-Ranges: - - bytes - Content-Length: - - "196624" - Content-Type: - - application/octet-stream - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - Etag: - - '"59868f85d88d34ee79e32759dad70bf7"' - Last-Modified: - - Wed, 29 Oct 2025 22:53:58 GMT - X-Amz-Id-2: - - txg3f55a270661b4f58b32b-0069029b13 - X-Amz-Request-Id: - - txg3f55a270661b4f58b32b-0069029b13 - status: 200 OK - code: 200 - duration: 12.61573ms - - id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - tagging: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 0ea4952d-af5d-4f5f-8d18-f59c5986f0ac - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 75 - uncompressed: false - body: |- - - - headers: - Content-Length: - - "75" - Content-Type: - - text/xml; charset=utf-8 - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - X-Amz-Id-2: - - txgcfa0f674c8fd4a9e99e8-0069029b13 - X-Amz-Request-Id: - - txgcfa0f674c8fd4a9e99e8-0069029b13 - status: 200 OK - code: 200 - duration: 45.453542ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - acl: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - afbe5cc2-ed1d-4245-bebf-be03f065749b - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 698 - uncompressed: false - body: |- - - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL - headers: - Content-Length: - - "698" - Content-Type: - - text/xml; charset=utf-8 - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - X-Amz-Id-2: - - txg9f3c177a68ac41efba40-0069029b13 - X-Amz-Request-Id: - - txg9f3c177a68ac41efba40-0069029b13 - status: 200 OK - code: 200 - duration: 46.823013ms - - 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/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 463 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cf728fa0-1a09-4dd1-9229-6095d42644be - status: 200 OK - code: 200 - duration: 87.57341ms - - id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 50 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-snapshot-import-lssd","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/0b287075-35eb-4caf-94b4-74f372ddea3d - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 460 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7aac810c-80a0-461a-8b04-dd2d17922217 - status: 200 OK - code: 200 - duration: 114.341282ms - - 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/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 460 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c203d51b-d4d4-4d3c-aacb-967aed175eae - status: 200 OK - code: 200 - duration: 96.838234ms - - 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/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 460 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5b9e9365-7bd4-4f31-a5fc-d178e9dbda0f - status: 200 OK - code: 200 - duration: 83.655475ms - - id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - acl: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 7a3c7b8e-30ac-4d0d-a6f2-39e635ed413f - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225412Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?acl= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 698 - uncompressed: false - body: |- - - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL - headers: - Content-Length: - - "698" - Content-Type: - - text/xml; charset=utf-8 - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - X-Amz-Id-2: - - txga0d80038e5214d8e9fdc-0069029b14 - X-Amz-Request-Id: - - txga0d80038e5214d8e9fdc-0069029b14 - status: 200 OK - code: 200 - duration: 7.411729ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - object-lock: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 7a0e97cb-5434-4c09-8c36-f41f4c7bc490 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225412Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?object-lock= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 324 - uncompressed: false - body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxgba20564a700842268ee4-0069029b14txgba20564a700842268ee4-0069029b14/test-acc-scaleway-instance-snapshot-4680108982039155704 - headers: - Content-Length: - - "324" - Content-Type: - - application/xml - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - X-Amz-Id-2: - - txgba20564a700842268ee4-0069029b14 - X-Amz-Request-Id: - - txgba20564a700842268ee4-0069029b14 - status: 404 Not Found - code: 404 - duration: 12.58869ms - - id: 45 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 5b87a259-0f99-4599-ae92-f5598e52a304 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225412Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/ - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 790 - uncompressed: false - body: |- - - 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: - - "790" - Content-Type: - - application/xml - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - X-Amz-Id-2: - - txge1b3fdc4c6cd43998074-0069029b14 - X-Amz-Request-Id: - - txge1b3fdc4c6cd43998074-0069029b14 - status: 200 OK - code: 200 - duration: 146.030637ms - - id: 46 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - tagging: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 469375f5-3f05-46f6-b575-598f0fcc9222 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225412Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?tagging= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 349 - uncompressed: false - body: NoSuchTagSetThe TagSet does not existtxg06e3b9c012804834a04e-0069029b14txg06e3b9c012804834a04e-0069029b14/test-acc-scaleway-instance-snapshot-4680108982039155704test-acc-scaleway-instance-snapshot-4680108982039155704 - headers: - Content-Length: - - "349" - Content-Type: - - application/xml - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - X-Amz-Id-2: - - txg06e3b9c012804834a04e-0069029b14 - X-Amz-Request-Id: - - txg06e3b9c012804834a04e-0069029b14 - status: 404 Not Found - code: 404 - duration: 12.051225ms - - id: 47 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - cors: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 1684e190-60b2-49af-a784-22809c3c7d2b - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225412Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?cors= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 292 - uncompressed: false - body: NoSuchCORSConfigurationThe CORS configuration does not existtxg5b176f4ca28641d5b179-0069029b14txg5b176f4ca28641d5b179-0069029b14/test-acc-scaleway-instance-snapshot-4680108982039155704 - headers: - Content-Length: - - "292" - Content-Type: - - application/xml - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - X-Amz-Id-2: - - txg5b176f4ca28641d5b179-0069029b14 - X-Amz-Request-Id: - - txg5b176f4ca28641d5b179-0069029b14 - status: 404 Not Found - code: 404 - duration: 12.434842ms - - id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - versioning: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 35d319dc-01dc-4ec5-8959-8967b9810bca - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225412Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?versioning= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 107 - uncompressed: false - body: |- - - - headers: - Content-Length: - - "107" - Content-Type: - - text/xml; charset=utf-8 - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - X-Amz-Id-2: - - txg5edd2a0be56a47e0b971-0069029b14 - X-Amz-Request-Id: - - txg5edd2a0be56a47e0b971-0069029b14 - status: 200 OK - code: 200 - duration: 13.994378ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - lifecycle: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 48d9d485-17b7-4a58-bb94-bfbe13cf1609 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225412Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/?lifecycle= - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 382 - uncompressed: false - body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg147b49aa90a8462b8196-0069029b14txg147b49aa90a8462b8196-0069029b14/test-acc-scaleway-instance-snapshot-4680108982039155704test-acc-scaleway-instance-snapshot-4680108982039155704 - headers: - Content-Length: - - "382" - Content-Type: - - application/xml - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - X-Amz-Id-2: - - txg147b49aa90a8462b8196-0069029b14 - X-Amz-Request-Id: - - txg147b49aa90a8462b8196-0069029b14 - status: 404 Not Found - code: 404 - duration: 14.417459ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 3c36eaec-4ee4-43c3-9618-63b32a025577 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 196624 - uncompressed: false - body: "" - headers: - Accept-Ranges: - - bytes - Content-Length: - - "196624" - Content-Type: - - application/octet-stream - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - Etag: - - '"59868f85d88d34ee79e32759dad70bf7"' - Last-Modified: - - Wed, 29 Oct 2025 22:53:58 GMT - X-Amz-Id-2: - - txg116fa095ff2e43588de6-0069029b14 - X-Amz-Request-Id: - - txg116fa095ff2e43588de6-0069029b14 - status: 200 OK - code: 200 - duration: 12.841392ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - tagging: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - c3701f2a-8b77-41d8-ac7c-80d9fe04f349 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 75 - uncompressed: false - body: |- - - - headers: - Content-Length: - - "75" - Content-Type: - - text/xml; charset=utf-8 - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - X-Amz-Id-2: - - txg5afce80246914cfb8f06-0069029b14 - X-Amz-Request-Id: - - txg5afce80246914cfb8f06-0069029b14 - status: 200 OK - code: 200 - duration: 125.776765ms - - id: 52 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - acl: - - "" - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 3b141069-2a85-4384-9059-08333732034d - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 698 - uncompressed: false - body: |- - - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL - headers: - Content-Length: - - "698" - Content-Type: - - text/xml; charset=utf-8 - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - X-Amz-Id-2: - - txg57eea5e4f326440a8fa8-0069029b14 - X-Amz-Request-Id: - - txg57eea5e4f326440a8fa8-0069029b14 - status: 200 OK - code: 200 - duration: 7.247172ms - - id: 53 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 460 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bef5aef0-3d62-4371-b3c6-96b7af1223ed - status: 200 OK - code: 200 - duration: 91.839026ms - - id: 54 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 460 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cbae28f4-598c-494b-a30d-02d96e376cea - status: 200 OK - code: 200 - duration: 89.060371ms - - id: 55 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d - 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:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b08c2401-a12d-4215-9a7c-ed64f2fbf26e - status: 204 No Content - code: 204 - duration: 167.58435ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 145 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_snapshot", "resource_id": "0b287075-35eb-4caf-94b4-74f372ddea3d"}' - headers: - Content-Length: - - "145" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5e87fcdd-f184-4356-a082-ec9aee910bf7 - status: 404 Not Found - code: 404 - duration: 26.933672ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: - x-id: - - DeleteObject - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - dca01de9-f1ef-4a18-916b-94debd197ef7 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 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 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Date: - - Wed, 29 Oct 2025 22:54:13 GMT - X-Amz-Id-2: - - txg9a0e6f997bae49da89a7-0069029b15 - X-Amz-Request-Id: - - txg9a0e6f997bae49da89a7-0069029b15 - status: 204 No Content - code: 204 - duration: 232.576126ms - - id: 58 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 420769fa-6d5c-4b9a-8f00-5c923facdd67 - Amz-Sdk-Request: - - attempt=1; max=3 - User-Agent: - - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20251029T225413Z - url: https://test-acc-scaleway-instance-snapshot-4680108982039155704.s3.fr-par.scw.cloud/ - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Date: - - Wed, 29 Oct 2025 22:54:13 GMT - X-Amz-Id-2: - - txge489cb2b03a447d3b6ab-0069029b15 - X-Amz-Request-Id: - - txge489cb2b03a447d3b6ab-0069029b15 - status: 204 No Content - code: 204 - duration: 418.241416ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/0b287075-35eb-4caf-94b4-74f372ddea3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 145 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_snapshot", "resource_id": "0b287075-35eb-4caf-94b4-74f372ddea3d"}' - headers: - Content-Length: - - "145" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - efa2ce6c-fae8-4915-9f7d-d2e335ac0e4f - status: 404 Not Found - code: 404 - duration: 36.823966ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - d3baea42-42bc-41f7-9abe-cdb7437142ad + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154146Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/ + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Length: + - "0" + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Location: + - /test-acc-scaleway-instance-snapshot-2558423540222492796 + X-Amz-Id-2: + - txg95629d3213344b65829a-006903873a + X-Amz-Request-Id: + - txg95629d3213344b65829a-006903873a + status: 200 OK + code: 200 + duration: 4.706872847s +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + acl: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - ac872c50-202e-4da4-958d-128a9d673e4b + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,Z,e" + X-Amz-Acl: + - private + X-Amz-Checksum-Crc32: + - AAAAAA== + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154151Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?acl= + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Length: + - "0" + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + X-Amz-Id-2: + - txg2f975782c0f04b55af34-006903873f + X-Amz-Request-Id: + - txg2f975782c0f04b55af34-006903873f + status: 200 OK + code: 200 + duration: 167.783208ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + acl: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 4688785c-f176-48b0-9e46-75c46372a947 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154151Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?acl= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 698 + body: |- + + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + headers: + Content-Length: + - "698" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + X-Amz-Id-2: + - txg3a04a0c153174a96b425-006903873f + X-Amz-Request-Id: + - txg3a04a0c153174a96b425-006903873f + status: 200 OK + code: 200 + duration: 103.563172ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + object-lock: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - ab87f9f3-77bd-42c4-9e27-07a38e469ec9 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154151Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?object-lock= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 324 + body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxgf106b5e804874bfdaffc-006903873ftxgf106b5e804874bfdaffc-006903873f/test-acc-scaleway-instance-snapshot-2558423540222492796 + headers: + Content-Length: + - "324" + Content-Type: + - application/xml + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + X-Amz-Id-2: + - txgf106b5e804874bfdaffc-006903873f + X-Amz-Request-Id: + - txgf106b5e804874bfdaffc-006903873f + status: 404 Not Found + code: 404 + duration: 85.798671ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - c41a0ee3-4259-4916-be6b-0a1f7676091c + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154151Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/ + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 281 + body: |- + + test-acc-scaleway-instance-snapshot-25584235402224927961000false + headers: + Content-Length: + - "281" + Content-Type: + - application/xml + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + X-Amz-Id-2: + - txg675c59c8286a4f8abca4-006903873f + X-Amz-Request-Id: + - txg675c59c8286a4f8abca4-006903873f + status: 200 OK + code: 200 + duration: 121.371885ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + tagging: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 866b0106-8ede-4e18-b81f-22927a2f854f + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154151Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?tagging= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 349 + body: NoSuchTagSetThe TagSet does not existtxgcd1673d825fd4018bc47-006903873ftxgcd1673d825fd4018bc47-006903873f/test-acc-scaleway-instance-snapshot-2558423540222492796test-acc-scaleway-instance-snapshot-2558423540222492796 + headers: + Content-Length: + - "349" + Content-Type: + - application/xml + Date: + - Thu, 30 Oct 2025 15:41:51 GMT + X-Amz-Id-2: + - txgcd1673d825fd4018bc47-006903873f + X-Amz-Request-Id: + - txgcd1673d825fd4018bc47-006903873f + status: 404 Not Found + code: 404 + duration: 73.428779ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + cors: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 516cdf9c-5e93-4667-87c6-695569dc57e3 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154152Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?cors= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 292 + body: NoSuchCORSConfigurationThe CORS configuration does not existtxg19931c59efaf4f45b49d-0069038740txg19931c59efaf4f45b49d-0069038740/test-acc-scaleway-instance-snapshot-2558423540222492796 + headers: + Content-Length: + - "292" + Content-Type: + - application/xml + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + X-Amz-Id-2: + - txg19931c59efaf4f45b49d-0069038740 + X-Amz-Request-Id: + - txg19931c59efaf4f45b49d-0069038740 + status: 404 Not Found + code: 404 + duration: 26.346478ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + versioning: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 6cd060c9-6848-4e5d-9669-85666d4314bb + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154152Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?versioning= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 107 + body: |- + + + headers: + Content-Length: + - "107" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + X-Amz-Id-2: + - txg1b5d9dd512a744c983d9-0069038740 + X-Amz-Request-Id: + - txg1b5d9dd512a744c983d9-0069038740 + status: 200 OK + code: 200 + duration: 140.818762ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + lifecycle: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - e3ed3921-62ea-4244-b5f0-03797bc4a70e + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154152Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?lifecycle= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 382 + body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg020000dac16441de9c7f-0069038740txg020000dac16441de9c7f-0069038740/test-acc-scaleway-instance-snapshot-2558423540222492796test-acc-scaleway-instance-snapshot-2558423540222492796 + headers: + Content-Length: + - "382" + Content-Type: + - application/xml + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + X-Amz-Id-2: + - txg020000dac16441de9c7f-0069038740 + X-Amz-Request-Id: + - txg020000dac16441de9c7f-0069038740 + status: 404 Not Found + code: 404 + duration: 17.802582ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 196669 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + body: MzAwMTANClFGSfsAAAADAAAAAAAAAAAAAAAAAAAAEAAAAABAAAAAAAAAAAAAAAIAAAAAAAMAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAABwAAAAAAAAAABoA/hXAAABgAAAZGlydHkgYml0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABY29ycnVwdCBiaXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACZXh0ZXJuYWwgZGF0YSBmaWxlAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADY29tcHJlc3Npb24gdHlwZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEZXh0ZW5kZWQgTDIgZW50cmllcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAbGF6eSByZWZjb3VudHMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAYml0bWFwcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIBcmF3IGV4dGVybmFsIGRhdGEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANCjANCngtYW16LWNoZWNrc3VtLWNyYzMyOngyTThQZz09DQoNCg== + form: + x-id: + - PutObject + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - a0ac5c45-edd5-420f-9be5-74696924f0ba + Amz-Sdk-Request: + - attempt=1; max=3 + Content-Encoding: + - aws-chunked + Content-Type: + - application/octet-stream + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,Z,e" + X-Amz-Content-Sha256: + - STREAMING-UNSIGNED-PAYLOAD-TRAILER + X-Amz-Date: + - 20251030T154152Z + X-Amz-Decoded-Content-Length: + - "196624" + X-Amz-Trailer: + - x-amz-checksum-crc32 + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?x-id=PutObject + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Length: + - "0" + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Etag: + - "\"59868f85d88d34ee79e32759dad70bf7\"" + X-Amz-Checksum-Crc32: + - x2M8Pg== + X-Amz-Checksum-Type: + - FULL_OBJECT + X-Amz-Id-2: + - txg0826c08255384a7ca1f7-0069038740 + X-Amz-Request-Id: + - txg0826c08255384a7ca1f7-0069038740 + status: 200 OK + code: 200 + duration: 765.105699ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 8b81984d-160a-442d-919b-ed3a22f9c700 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154152Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2 + method: HEAD + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 196624 + body: "" + headers: + Accept-Ranges: + - bytes + Content-Length: + - "196624" + Content-Type: + - application/octet-stream + Date: + - Thu, 30 Oct 2025 15:41:52 GMT + Etag: + - "\"59868f85d88d34ee79e32759dad70bf7\"" + Last-Modified: + - Thu, 30 Oct 2025 15:41:52 GMT + X-Amz-Id-2: + - txg9a8a2e609bfd498194af-0069038740 + X-Amz-Request-Id: + - txg9a8a2e609bfd498194af-0069038740 + status: 200 OK + code: 200 + duration: 26.711913ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + tagging: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 06905aec-aa8c-4a43-aed9-1a1e9e82baeb + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154153Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?tagging= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 75 + body: |- + + + headers: + Content-Length: + - "75" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + X-Amz-Id-2: + - txg38a41932995444f59efb-0069038741 + X-Amz-Request-Id: + - txg38a41932995444f59efb-0069038741 + status: 200 OK + code: 200 + duration: 29.482881ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + acl: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 147c44cc-0f46-4ffd-b3d2-c26b6ecb0bf3 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154153Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?acl= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 698 + body: |- + + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + headers: + Content-Length: + - "698" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + X-Amz-Id-2: + - txg1d4805ee298142439e59-0069038741 + X-Amz-Request-Id: + - txg1d4805ee298142439e59-0069038741 + status: 200 OK + code: 200 + duration: 50.883612ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 222 + host: api.scaleway.com + body: "{\"name\":\"test-acc-snapshot-import-default\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"volume_type\":\"l_ssd\",\"bucket\":\"test-acc-scaleway-instance-snapshot-2558423540222492796\",\"key\":\"test-acc-instance-snapshot.qcow2\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 774 + body: "{\"snapshot\": {\"id\": \"692c8f73-3291-4965-8d30-7f2e245fe4c6\", \"name\": \"test-acc-snapshot-import-default\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:41:54.005458+00:00\", \"modification_date\": \"2025-10-30T15:41:54.005458+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\": \"5c2649e4-9e00-411b-80c6-b720aa05463d\", \"description\": \"import_snapshot\", \"status\": \"pending\", \"href_from\": \"/snapshots\", \"href_result\": \"snapshots/692c8f73-3291-4965-8d30-7f2e245fe4c6\", \"started_at\": \"2025-10-30T15:41:54.120212+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "774" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 2acfba36-234c-4006-bb56-f9d98a4bef5a + status: 201 Created + code: 201 + duration: 1.04387166s +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/692c8f73-3291-4965-8d30-7f2e245fe4c6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"snapshot\": {\"id\": \"692c8f73-3291-4965-8d30-7f2e245fe4c6\", \"name\": \"test-acc-snapshot-import-default\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:41:54.005458+00:00\", \"modification_date\": \"2025-10-30T15:41:54.005458+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d53ebe66-35f0-443e-97d0-6632df573669 + status: 200 OK + code: 200 + duration: 93.537398ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/692c8f73-3291-4965-8d30-7f2e245fe4c6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"snapshot\": {\"id\": \"692c8f73-3291-4965-8d30-7f2e245fe4c6\", \"name\": \"test-acc-snapshot-import-default\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:41:54.005458+00:00\", \"modification_date\": \"2025-10-30T15:41:56.313226+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f4dda1ae-2e66-461f-8e63-17516f7731ab + status: 200 OK + code: 200 + duration: 88.94247ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/692c8f73-3291-4965-8d30-7f2e245fe4c6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"snapshot\": {\"id\": \"692c8f73-3291-4965-8d30-7f2e245fe4c6\", \"name\": \"test-acc-snapshot-import-default\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:41:54.005458+00:00\", \"modification_date\": \"2025-10-30T15:41:56.313226+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 084a7004-4281-44fe-b9d1-d035ed82a2b9 + status: 200 OK + code: 200 + duration: 107.071133ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/692c8f73-3291-4965-8d30-7f2e245fe4c6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"snapshot\": {\"id\": \"692c8f73-3291-4965-8d30-7f2e245fe4c6\", \"name\": \"test-acc-snapshot-import-default\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:41:54.005458+00:00\", \"modification_date\": \"2025-10-30T15:41:56.313226+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c2799b8f-ba62-4959-97fb-9b090a55052d + status: 200 OK + code: 200 + duration: 90.864895ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + acl: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 56310a09-2f81-4d6a-8f75-e3e8aefd83cd + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154159Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?acl= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 698 + body: |- + + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + headers: + Content-Length: + - "698" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + X-Amz-Id-2: + - txgbf7e3e8d15144273bea9-0069038747 + X-Amz-Request-Id: + - txgbf7e3e8d15144273bea9-0069038747 + status: 200 OK + code: 200 + duration: 126.63501ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + object-lock: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 90d1a510-95a3-4ca8-8326-c4587fd29950 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154159Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?object-lock= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 324 + body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg8dc2a7de30504fd58074-0069038747txg8dc2a7de30504fd58074-0069038747/test-acc-scaleway-instance-snapshot-2558423540222492796 + headers: + Content-Length: + - "324" + Content-Type: + - application/xml + Date: + - Thu, 30 Oct 2025 15:41:59 GMT + X-Amz-Id-2: + - txg8dc2a7de30504fd58074-0069038747 + X-Amz-Request-Id: + - txg8dc2a7de30504fd58074-0069038747 + status: 404 Not Found + code: 404 + duration: 113.986284ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 63d640af-d9fe-4cf9-a072-86e0ec672cc9 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154200Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/ + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 790 + body: "\ntest-acc-scaleway-instance-snapshot-25584235402224927961000falsetest-acc-instance-snapshot.qcow22025-10-30T15:41:52.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: + - "790" + Content-Type: + - application/xml + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + X-Amz-Id-2: + - txgf0a70050d84746858bdc-0069038748 + X-Amz-Request-Id: + - txgf0a70050d84746858bdc-0069038748 + status: 200 OK + code: 200 + duration: 218.250654ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + tagging: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 05452e23-df6f-4eb8-858c-2877e8590ae4 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154200Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?tagging= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 349 + body: NoSuchTagSetThe TagSet does not existtxg1b5ef1bcc80e49048e10-0069038748txg1b5ef1bcc80e49048e10-0069038748/test-acc-scaleway-instance-snapshot-2558423540222492796test-acc-scaleway-instance-snapshot-2558423540222492796 + headers: + Content-Length: + - "349" + Content-Type: + - application/xml + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + X-Amz-Id-2: + - txg1b5ef1bcc80e49048e10-0069038748 + X-Amz-Request-Id: + - txg1b5ef1bcc80e49048e10-0069038748 + status: 404 Not Found + code: 404 + duration: 113.905282ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + cors: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 6c24508e-3a31-43e4-b95f-2ed26ad08aa4 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154200Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?cors= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 292 + body: NoSuchCORSConfigurationThe CORS configuration does not existtxgeca18a5378e84b798100-0069038748txgeca18a5378e84b798100-0069038748/test-acc-scaleway-instance-snapshot-2558423540222492796 + headers: + Content-Length: + - "292" + Content-Type: + - application/xml + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + X-Amz-Id-2: + - txgeca18a5378e84b798100-0069038748 + X-Amz-Request-Id: + - txgeca18a5378e84b798100-0069038748 + status: 404 Not Found + code: 404 + duration: 14.442279ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + versioning: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - e56efa54-6587-436d-992e-ba9e9425dceb + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154200Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?versioning= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 107 + body: |- + + + headers: + Content-Length: + - "107" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + X-Amz-Id-2: + - txg8256a032c21642a68e24-0069038748 + X-Amz-Request-Id: + - txg8256a032c21642a68e24-0069038748 + status: 200 OK + code: 200 + duration: 13.645034ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + lifecycle: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 6499b9fa-4e2b-4ce2-a4f0-cb04b8e3531b + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154200Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?lifecycle= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 382 + body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg2d00025310a64b39935c-0069038748txg2d00025310a64b39935c-0069038748/test-acc-scaleway-instance-snapshot-2558423540222492796test-acc-scaleway-instance-snapshot-2558423540222492796 + headers: + Content-Length: + - "382" + Content-Type: + - application/xml + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + X-Amz-Id-2: + - txg2d00025310a64b39935c-0069038748 + X-Amz-Request-Id: + - txg2d00025310a64b39935c-0069038748 + status: 404 Not Found + code: 404 + duration: 16.556635ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 7af2f21c-484a-4eb3-a19d-fcd0be26f95a + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154200Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2 + method: HEAD + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 196624 + body: "" + headers: + Accept-Ranges: + - bytes + Content-Length: + - "196624" + Content-Type: + - application/octet-stream + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Etag: + - "\"59868f85d88d34ee79e32759dad70bf7\"" + Last-Modified: + - Thu, 30 Oct 2025 15:41:52 GMT + X-Amz-Id-2: + - txgbbdbcdde591a4d54b18a-0069038748 + X-Amz-Request-Id: + - txgbbdbcdde591a4d54b18a-0069038748 + status: 200 OK + code: 200 + duration: 14.412053ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + tagging: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 09031011-f55b-429f-800b-947ceae36d65 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154200Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?tagging= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 75 + body: |- + + + headers: + Content-Length: + - "75" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + X-Amz-Id-2: + - txg09532d283a4e4b0f8b65-0069038748 + X-Amz-Request-Id: + - txg09532d283a4e4b0f8b65-0069038748 + status: 200 OK + code: 200 + duration: 15.344312ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + acl: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - e4a27860-4939-4084-94ab-47af2acecddb + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154200Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?acl= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 698 + body: |- + + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + headers: + Content-Length: + - "698" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + X-Amz-Id-2: + - txg968fe0b86a004d12aa5a-0069038748 + X-Amz-Request-Id: + - txg968fe0b86a004d12aa5a-0069038748 + status: 200 OK + code: 200 + duration: 53.135907ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/692c8f73-3291-4965-8d30-7f2e245fe4c6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"snapshot\": {\"id\": \"692c8f73-3291-4965-8d30-7f2e245fe4c6\", \"name\": \"test-acc-snapshot-import-default\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:41:54.005458+00:00\", \"modification_date\": \"2025-10-30T15:41:56.313226+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9a5135f3-da66-4a61-b556-78a92937738f + status: 200 OK + code: 200 + duration: 94.160167ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + acl: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 062ff7a5-e323-4e6f-bbd2-30506f067d81 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154200Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?acl= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 698 + body: |- + + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + headers: + Content-Length: + - "698" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + X-Amz-Id-2: + - txg8ef726d12fdc4d39a904-0069038748 + X-Amz-Request-Id: + - txg8ef726d12fdc4d39a904-0069038748 + status: 200 OK + code: 200 + duration: 113.068784ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + object-lock: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - e83e86d5-6091-4ae9-a3d1-ad6b3e23500c + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154200Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?object-lock= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 324 + body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxgca7aea55032940ad880d-0069038748txgca7aea55032940ad880d-0069038748/test-acc-scaleway-instance-snapshot-2558423540222492796 + headers: + Content-Length: + - "324" + Content-Type: + - application/xml + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + X-Amz-Id-2: + - txgca7aea55032940ad880d-0069038748 + X-Amz-Request-Id: + - txgca7aea55032940ad880d-0069038748 + status: 404 Not Found + code: 404 + duration: 42.280676ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 4a42c1fb-ca5a-4ea2-9289-d16f31179c62 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154200Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/ + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 790 + body: "\ntest-acc-scaleway-instance-snapshot-25584235402224927961000falsetest-acc-instance-snapshot.qcow22025-10-30T15:41:52.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: + - "790" + Content-Type: + - application/xml + Date: + - Thu, 30 Oct 2025 15:42:00 GMT + X-Amz-Id-2: + - txgf8b4d44d24a14ee09651-0069038748 + X-Amz-Request-Id: + - txgf8b4d44d24a14ee09651-0069038748 + status: 200 OK + code: 200 + duration: 126.488405ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + tagging: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 8b2d7f86-b370-4bcf-9bed-0f70d5644d05 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154200Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?tagging= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 349 + body: NoSuchTagSetThe TagSet does not existtxg57e0f6603d6c450a829f-0069038749txg57e0f6603d6c450a829f-0069038749/test-acc-scaleway-instance-snapshot-2558423540222492796test-acc-scaleway-instance-snapshot-2558423540222492796 + headers: + Content-Length: + - "349" + Content-Type: + - application/xml + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + X-Amz-Id-2: + - txg57e0f6603d6c450a829f-0069038749 + X-Amz-Request-Id: + - txg57e0f6603d6c450a829f-0069038749 + status: 404 Not Found + code: 404 + duration: 16.373452ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + cors: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 5f603b35-6bbd-4a72-87ed-009f9785f53a + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154201Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?cors= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 292 + body: NoSuchCORSConfigurationThe CORS configuration does not existtxg6db056ceeed84c34bc33-0069038749txg6db056ceeed84c34bc33-0069038749/test-acc-scaleway-instance-snapshot-2558423540222492796 + headers: + Content-Length: + - "292" + Content-Type: + - application/xml + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + X-Amz-Id-2: + - txg6db056ceeed84c34bc33-0069038749 + X-Amz-Request-Id: + - txg6db056ceeed84c34bc33-0069038749 + status: 404 Not Found + code: 404 + duration: 121.636174ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + versioning: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 6d11cf10-a228-4535-bd92-0bc20b889d92 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154201Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?versioning= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 107 + body: |- + + + headers: + Content-Length: + - "107" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + X-Amz-Id-2: + - txg07b01e1768d045caaf3e-0069038749 + X-Amz-Request-Id: + - txg07b01e1768d045caaf3e-0069038749 + status: 200 OK + code: 200 + duration: 48.930719ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + lifecycle: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - c3004c06-24ff-4667-8d4b-e99a0564a8ad + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154201Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?lifecycle= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 382 + body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg9e0b60beee4c46e8805d-0069038749txg9e0b60beee4c46e8805d-0069038749/test-acc-scaleway-instance-snapshot-2558423540222492796test-acc-scaleway-instance-snapshot-2558423540222492796 + headers: + Content-Length: + - "382" + Content-Type: + - application/xml + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + X-Amz-Id-2: + - txg9e0b60beee4c46e8805d-0069038749 + X-Amz-Request-Id: + - txg9e0b60beee4c46e8805d-0069038749 + status: 404 Not Found + code: 404 + duration: 41.699215ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 82f8a2ae-9006-4695-a005-f8bc0be3cc13 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154201Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2 + method: HEAD + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 196624 + body: "" + headers: + Accept-Ranges: + - bytes + Content-Length: + - "196624" + Content-Type: + - application/octet-stream + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Etag: + - "\"59868f85d88d34ee79e32759dad70bf7\"" + Last-Modified: + - Thu, 30 Oct 2025 15:41:52 GMT + X-Amz-Id-2: + - txg531f26db15754b2c8115-0069038749 + X-Amz-Request-Id: + - txg531f26db15754b2c8115-0069038749 + status: 200 OK + code: 200 + duration: 14.717135ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + tagging: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 15179583-bb72-4833-a3e3-3ec8780e1354 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154201Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?tagging= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 75 + body: |- + + + headers: + Content-Length: + - "75" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + X-Amz-Id-2: + - txg56080b50858a4dfab35d-0069038749 + X-Amz-Request-Id: + - txg56080b50858a4dfab35d-0069038749 + status: 200 OK + code: 200 + duration: 118.066147ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + acl: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - dd70fd0d-df2c-4dd2-9218-a74a31d33077 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154201Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?acl= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 698 + body: |- + + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + headers: + Content-Length: + - "698" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + X-Amz-Id-2: + - txg70407182dca94ecb86db-0069038749 + X-Amz-Request-Id: + - txg70407182dca94ecb86db-0069038749 + status: 200 OK + code: 200 + duration: 43.646197ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/692c8f73-3291-4965-8d30-7f2e245fe4c6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 463 + body: "{\"snapshot\": {\"id\": \"692c8f73-3291-4965-8d30-7f2e245fe4c6\", \"name\": \"test-acc-snapshot-import-default\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:41:54.005458+00:00\", \"modification_date\": \"2025-10-30T15:41:56.313226+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8fad4626-43e8-4283-9960-375bbf077b34 + status: 200 OK + code: 200 + duration: 89.005117ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 50 + host: api.scaleway.com + body: "{\"name\":\"test-acc-snapshot-import-lssd\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/692c8f73-3291-4965-8d30-7f2e245fe4c6 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 460 + body: "{\"snapshot\": {\"id\": \"692c8f73-3291-4965-8d30-7f2e245fe4c6\", \"name\": \"test-acc-snapshot-import-lssd\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:41:54.005458+00:00\", \"modification_date\": \"2025-10-30T15:42:01.656190+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c4d690a5-037c-4645-b595-381d8d49cf50 + status: 200 OK + code: 200 + duration: 131.083835ms +- id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/692c8f73-3291-4965-8d30-7f2e245fe4c6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 460 + body: "{\"snapshot\": {\"id\": \"692c8f73-3291-4965-8d30-7f2e245fe4c6\", \"name\": \"test-acc-snapshot-import-lssd\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:41:54.005458+00:00\", \"modification_date\": \"2025-10-30T15:42:01.656190+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 9a65ac42-68e0-4e3c-9f97-3602f4066404 + status: 200 OK + code: 200 + duration: 97.159543ms +- id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/692c8f73-3291-4965-8d30-7f2e245fe4c6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 460 + body: "{\"snapshot\": {\"id\": \"692c8f73-3291-4965-8d30-7f2e245fe4c6\", \"name\": \"test-acc-snapshot-import-lssd\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:41:54.005458+00:00\", \"modification_date\": \"2025-10-30T15:42:01.656190+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 3f5a850f-8809-40e8-9a7b-b6540526eacf + status: 200 OK + code: 200 + duration: 122.334995ms +- id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + acl: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 20be186e-cd7d-4c77-b5f6-8976c0917806 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154202Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?acl= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 698 + body: |- + + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + headers: + Content-Length: + - "698" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + X-Amz-Id-2: + - txgdb24bfa702ed41cba28b-006903874a + X-Amz-Request-Id: + - txgdb24bfa702ed41cba28b-006903874a + status: 200 OK + code: 200 + duration: 35.953909ms +- id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + object-lock: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - be4ef635-5be2-41f6-8b6d-a706040271b4 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154202Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?object-lock= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 324 + body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxgd7859ab38b9f4187979f-006903874atxgd7859ab38b9f4187979f-006903874a/test-acc-scaleway-instance-snapshot-2558423540222492796 + headers: + Content-Length: + - "324" + Content-Type: + - application/xml + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + X-Amz-Id-2: + - txgd7859ab38b9f4187979f-006903874a + X-Amz-Request-Id: + - txgd7859ab38b9f4187979f-006903874a + status: 404 Not Found + code: 404 + duration: 49.089448ms +- id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - a46244f4-6681-4ad3-9faf-dd0e54205b14 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154202Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/ + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 790 + body: "\ntest-acc-scaleway-instance-snapshot-25584235402224927961000falsetest-acc-instance-snapshot.qcow22025-10-30T15:41:52.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: + - "790" + Content-Type: + - application/xml + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + X-Amz-Id-2: + - txg030c434181c24e668137-006903874a + X-Amz-Request-Id: + - txg030c434181c24e668137-006903874a + status: 200 OK + code: 200 + duration: 51.816422ms +- id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + tagging: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 2035eadc-7ee4-4e66-8346-993ab18a4ea4 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154202Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?tagging= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 349 + body: NoSuchTagSetThe TagSet does not existtxg84ea6dd6cf3341aeaf0e-006903874atxg84ea6dd6cf3341aeaf0e-006903874a/test-acc-scaleway-instance-snapshot-2558423540222492796test-acc-scaleway-instance-snapshot-2558423540222492796 + headers: + Content-Length: + - "349" + Content-Type: + - application/xml + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + X-Amz-Id-2: + - txg84ea6dd6cf3341aeaf0e-006903874a + X-Amz-Request-Id: + - txg84ea6dd6cf3341aeaf0e-006903874a + status: 404 Not Found + code: 404 + duration: 115.702164ms +- id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + cors: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 2c626311-ea63-436e-be49-20af571b33ff + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154202Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?cors= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 292 + body: NoSuchCORSConfigurationThe CORS configuration does not existtxgdf8e1c6856d540a8b92c-006903874atxgdf8e1c6856d540a8b92c-006903874a/test-acc-scaleway-instance-snapshot-2558423540222492796 + headers: + Content-Length: + - "292" + Content-Type: + - application/xml + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + X-Amz-Id-2: + - txgdf8e1c6856d540a8b92c-006903874a + X-Amz-Request-Id: + - txgdf8e1c6856d540a8b92c-006903874a + status: 404 Not Found + code: 404 + duration: 49.678252ms +- id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + versioning: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 88d0c82a-1365-4bf9-a30e-212a593712fa + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154202Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?versioning= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 107 + body: |- + + + headers: + Content-Length: + - "107" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + X-Amz-Id-2: + - txgd0eb2d4d58b84a199447-006903874a + X-Amz-Request-Id: + - txgd0eb2d4d58b84a199447-006903874a + status: 200 OK + code: 200 + duration: 157.522657ms +- id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + lifecycle: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 7a516e59-53fa-45f2-8edc-3feedfe3e7f8 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154202Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/?lifecycle= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 382 + body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxgadf78093b0cd486bb62c-006903874atxgadf78093b0cd486bb62c-006903874a/test-acc-scaleway-instance-snapshot-2558423540222492796test-acc-scaleway-instance-snapshot-2558423540222492796 + headers: + Content-Length: + - "382" + Content-Type: + - application/xml + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + X-Amz-Id-2: + - txgadf78093b0cd486bb62c-006903874a + X-Amz-Request-Id: + - txgadf78093b0cd486bb62c-006903874a + status: 404 Not Found + code: 404 + duration: 69.094942ms +- id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 11598638-18df-4cc3-b802-966dee680e62 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154202Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2 + method: HEAD + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 196624 + body: "" + headers: + Accept-Ranges: + - bytes + Content-Length: + - "196624" + Content-Type: + - application/octet-stream + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + Etag: + - "\"59868f85d88d34ee79e32759dad70bf7\"" + Last-Modified: + - Thu, 30 Oct 2025 15:41:52 GMT + X-Amz-Id-2: + - txg71ff80ca389441f688bc-006903874a + X-Amz-Request-Id: + - txg71ff80ca389441f688bc-006903874a + status: 200 OK + code: 200 + duration: 192.330206ms +- id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + tagging: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 3dccd5e4-3559-49cb-aa1b-f837adfd4753 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154202Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?tagging= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 75 + body: |- + + + headers: + Content-Length: + - "75" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Oct 2025 15:42:02 GMT + X-Amz-Id-2: + - txgf570f3d0dd5447ab9da5-006903874a + X-Amz-Request-Id: + - txgf570f3d0dd5447ab9da5-006903874a + status: 200 OK + code: 200 + duration: 124.068827ms +- id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + acl: + - "" + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 4a07ebe6-e901-4f2c-8402-46f9fd80ca76 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154203Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?acl= + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 698 + body: |- + + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + headers: + Content-Length: + - "698" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + X-Amz-Id-2: + - txg0c1bae0b28a94538a28d-006903874b + X-Amz-Request-Id: + - txg0c1bae0b28a94538a28d-006903874b + status: 200 OK + code: 200 + duration: 122.835945ms +- id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/692c8f73-3291-4965-8d30-7f2e245fe4c6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 460 + body: "{\"snapshot\": {\"id\": \"692c8f73-3291-4965-8d30-7f2e245fe4c6\", \"name\": \"test-acc-snapshot-import-lssd\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:41:54.005458+00:00\", \"modification_date\": \"2025-10-30T15:42:01.656190+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0a4ed275-3db3-4dce-a696-d2a312f9f910 + status: 200 OK + code: 200 + duration: 100.367671ms +- id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/692c8f73-3291-4965-8d30-7f2e245fe4c6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 460 + body: "{\"snapshot\": {\"id\": \"692c8f73-3291-4965-8d30-7f2e245fe4c6\", \"name\": \"test-acc-snapshot-import-lssd\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:41:54.005458+00:00\", \"modification_date\": \"2025-10-30T15:42:01.656190+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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b83f7ff0-c2ed-4e58-9c50-56e144fc2bd6 + status: 200 OK + code: 200 + duration: 124.104855ms +- id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/692c8f73-3291-4965-8d30-7f2e245fe4c6 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e82e14a6-278f-4965-a114-188b7c166148 + status: 204 No Content + code: 204 + duration: 160.807268ms +- id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/692c8f73-3291-4965-8d30-7f2e245fe4c6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 145 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_snapshot\", \"resource_id\": \"692c8f73-3291-4965-8d30-7f2e245fe4c6\"}" + headers: + Content-Length: + - "145" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 54597250-5b7d-4f43-bbbd-3a6a34cd56b0 + status: 404 Not Found + code: 404 + duration: 40.121045ms +- id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + form: + x-id: + - DeleteObject + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - bc3facb8-c506-4ac5-9623-d297b0f74aa7 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154203Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?x-id=DeleteObject + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + X-Amz-Id-2: + - txg42662ee56d594113b6f6-006903874b + X-Amz-Request-Id: + - txg42662ee56d594113b6f6-006903874b + status: 204 No Content + code: 204 + duration: 199.353029ms +- id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 5b035ea5-cc87-448a-bc38-ef55144a8527 + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - "aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e" + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20251030T154204Z + url: https://test-acc-scaleway-instance-snapshot-2558423540222492796.s3.fr-par.scw.cloud/ + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Date: + - Thu, 30 Oct 2025 15:42:04 GMT + X-Amz-Id-2: + - txgb71b11d7703a4e50a6cb-006903874c + X-Amz-Request-Id: + - txgb71b11d7703a4e50a6cb-006903874c + status: 204 No Content + code: 204 + duration: 199.808825ms +- id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/692c8f73-3291-4965-8d30-7f2e245fe4c6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 145 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_snapshot\", \"resource_id\": \"692c8f73-3291-4965-8d30-7f2e245fe4c6\"}" + headers: + Content-Length: + - "145" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 28a51020-cc99-4117-b7c1-5b4536590312 + status: 404 Not Found + code: 404 + duration: 31.706833ms diff --git a/internal/services/instance/testdata/snapshot-server.cassette.yaml b/internal/services/instance/testdata/snapshot-server.cassette.yaml index b709b2baa..262203046 100644 --- a/internal/services/instance/testdata/snapshot-server.cassette.yaml +++ b/internal/services/instance/testdata/snapshot-server.cassette.yaml @@ -1,1806 +1,1362 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - 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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39264 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:00 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 180f7cc2-8cf2-4024-8384-470ed36aa943 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 124.522356ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 14295 - uncompressed: false - body: '{"servers": {"PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:00 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 77ef0f87-3204-40eb-ba08-49d16fd31ae3 - X-Total-Count: - - "68" - status: 200 OK - code: 200 - duration: 36.993292ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: - 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ac42b195-8e82-4e69-99cb-4223dd81a3a2 - status: 200 OK - code: 200 - duration: 38.57056ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 279 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2169 - uncompressed: false - 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: - - "2169" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:01 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d429e375-1b74-408f-a380-28dfd8d9faeb - status: 201 Created - code: 201 - duration: 792.707586ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2169 - uncompressed: false - 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: - - "2169" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d5c2421c-fcb6-4769-a6a4-0a28f0ad4e97 - status: 200 OK - code: 200 - duration: 138.418409ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2215 - uncompressed: false - 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: - - "2215" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aa1b3590-f7a6-44cf-90f0-9ed7c1bb0fff - status: 200 OK - code: 200 - duration: 172.573192ms - - id: 6 - 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/1950811c-fdcb-4292-ae51-aade3eed2ded/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": "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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:01 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c6c3d7f1-4fad-4008-9e1b-70a1d0213fe8 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2ff15e7b-de1f-4261-81ff-0051471fde3f - status: 202 Accepted - code: 202 - duration: 295.702552ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2237 - uncompressed: false - 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: - - "2237" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ca7d2102-0118-4743-9cff-8f8ee5b480c9 - status: 200 OK - code: 200 - duration: 162.710049ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2340 - uncompressed: false - 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: - - "2340" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 415bb44b-7c7e-477e-895a-1ab3d82f2ee3 - status: 200 OK - code: 200 - duration: 136.524449ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2340 - uncompressed: false - 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: - - "2340" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 59a8bbfe-5b00-4f37-b707-97fd602aee71 - status: 200 OK - code: 200 - duration: 131.565289ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2371 - uncompressed: false - 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: - - "2371" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0db73db5-1a8a-4851-b1fd-386e07dae77a - status: 200 OK - code: 200 - duration: 117.789391ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2371 - uncompressed: false - 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: - - "2371" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 21fa05f9-9665-4264-b707-567463b9d701 - status: 200 OK - code: 200 - duration: 131.274767ms - - 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/8502977f-722a-4b1b-9c02-4395a1c8208f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 525 - uncompressed: false - 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: - - "525" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cfe24a56-4c89-472e-9db0-815841c2e474 - status: 200 OK - code: 200 - duration: 89.005088ms - - 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/1950811c-fdcb-4292-ae51-aade3eed2ded/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:54:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f0ca7444-ee23-4fbc-be52-e836a25b8929 - status: 200 OK - code: 200 - duration: 108.712078ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded/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:54:17 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7334d053-f550-4fb3-985d-3afebc3b41a8 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 100.345874ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 133 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-snap-hungry-gagarin","volume_id":"8502977f-722a-4b1b-9c02-4395a1c8208f","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/snapshots - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 846 - uncompressed: false - 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: - - "846" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b770ec69-ba1e-42fc-b63c-3be710c3a58e - status: 201 Created - code: 201 - duration: 578.054212ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - 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: - - "535" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5edd59c5-df18-4a87-84b5-8cd8f5e30d32 - status: 200 OK - code: 200 - duration: 107.695648ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - 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: - - "535" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 26c693b4-7407-40a6-a7ed-a12846bac0da - status: 200 OK - code: 200 - duration: 119.503389ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - 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: - - "535" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 15d30a70-8716-42a7-b880-3eb54a15a2e1 - status: 200 OK - code: 200 - duration: 104.806699ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - 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: - - "535" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 85b06927-c01f-41ac-9087-28b3ea459d69 - status: 200 OK - code: 200 - duration: 141.057837ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - 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: - - "535" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 458519de-d5a1-487d-8fc1-e595f6c1fad0 - status: 200 OK - code: 200 - duration: 135.468627ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - 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: - - "535" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6d6c919c-5f50-42a5-92da-2cae1dbb0199 - status: 200 OK - code: 200 - duration: 94.758924ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - 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: - - "535" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0e54fb08-443b-4e89-adf2-9b2fc5916b29 - status: 200 OK - code: 200 - duration: 91.24754ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 532 - uncompressed: false - 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: - - "532" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4b36bdca-12d9-4a65-8809-b4b7c02cf604 - status: 200 OK - code: 200 - duration: 94.910281ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 532 - uncompressed: false - 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: - - "532" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 73993d17-1fac-4d0a-84dd-d33e19d5724b - status: 200 OK - code: 200 - duration: 114.466641ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 532 - uncompressed: false - 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: - - "532" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3b263954-a201-4359-8e21-1268dc73671e - status: 200 OK - code: 200 - duration: 100.673668ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2371 - uncompressed: false - 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: - - "2371" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d3196608-e4b2-4465-a978-de77f556c879 - status: 200 OK - code: 200 - duration: 121.285511ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8502977f-722a-4b1b-9c02-4395a1c8208f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 525 - uncompressed: false - 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: - - "525" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dd41dab2-62a9-4128-8503-beef9174038a - status: 200 OK - code: 200 - duration: 109.208438ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1950811c-fdcb-4292-ae51-aade3eed2ded/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:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e84ed4a5-516f-4d32-a961-a78391c2cc38 - status: 200 OK - code: 200 - duration: 94.262339ms - - 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/1950811c-fdcb-4292-ae51-aade3eed2ded/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:54:55 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 43e4be33-007b-4b53-bbd1-07ca708dd5af - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 101.538685ms - - 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/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 532 - uncompressed: false - 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: - - "532" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3eb73415-222a-408e-b788-e3727d3936a3 - status: 200 OK - code: 200 - duration: 96.206515ms - - 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/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 532 - uncompressed: false - 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: - - "532" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5f60e060-7f2d-4bad-834b-c48f8bf3d545 - status: 200 OK - code: 200 - duration: 92.807458ms - - 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/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 - 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: - - c7614bad-8bb4-492c-a73c-c51d597a3355 - status: 204 No Content - code: 204 - duration: 142.968819ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/1c9516a7-7264-433a-90c7-04d8fe2fbb79 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 145 - uncompressed: false - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_snapshot", "resource_id": "1c9516a7-7264-433a-90c7-04d8fe2fbb79"}' - headers: - Content-Length: - - "145" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ff8c2a8a-c8ac-42da-b6be-e896d7b1b65f - status: 404 Not Found - code: 404 - duration: 35.967799ms - - 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/1950811c-fdcb-4292-ae51-aade3eed2ded - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2325 - uncompressed: false - 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: - - "2325" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cb30dd15-3f33-4b7e-95ec-3e3bce01fd7d - status: 200 OK - code: 200 - duration: 155.840419ms - - 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/1950811c-fdcb-4292-ae51-aade3eed2ded - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2325 - uncompressed: false - 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: - - "2325" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ebf40f07-91b3-4e06-9f47-77e748780cb8 - status: 200 OK - code: 200 - duration: 342.994814ms - - id: 36 - 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/1950811c-fdcb-4292-ae51-aade3eed2ded/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": "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: - - "353" - Content-Type: - - application/json - Date: - - 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;edge03) - X-Request-Id: - - b07cb506-7ca4-430a-94d8-e0abae74a01a - status: 202 Accepted - code: 202 - duration: 260.377503ms - - 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/1950811c-fdcb-4292-ae51-aade3eed2ded - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2288 - uncompressed: false - 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: - - "2288" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:54:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 167e0704-d24f-47e0-9c0c-e9428ee0b59a - status: 200 OK - code: 200 - duration: 184.967466ms - - 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/1950811c-fdcb-4292-ae51-aade3eed2ded - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2288 - uncompressed: false - 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: - - "2288" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ed01c6fa-1ec6-48a1-8665-004b85a1c30a - status: 200 OK - code: 200 - duration: 136.482952ms - - 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/1950811c-fdcb-4292-ae51-aade3eed2ded - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2334 - uncompressed: false - 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: - - "2334" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 50ea0352-6d99-44c3-9894-e1038834d7c8 - status: 200 OK - code: 200 - duration: 119.275787ms - - 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/1950811c-fdcb-4292-ae51-aade3eed2ded - 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": "1950811c-fdcb-4292-ae51-aade3eed2ded"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 873be9db-2042-4677-bd48-140531d14c14 - status: 404 Not Found - code: 404 - duration: 50.042641ms - - 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/volumes/8502977f-722a-4b1b-9c02-4395a1c8208f - 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": "8502977f-722a-4b1b-9c02-4395a1c8208f"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bc794a03-dba5-4fdf-8e6a-ef8462844e78 - status: 404 Not Found - code: 404 - duration: 29.394508ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8502977f-722a-4b1b-9c02-4395a1c8208f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"8502977f-722a-4b1b-9c02-4395a1c8208f","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:55:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 187e9385-70e2-4f61-8866-c9e79c5bbea5 - status: 404 Not Found - code: 404 - duration: 19.733022ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 39264 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b4424069-6f61-44c9-9886-884714113acc + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 48.735162ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 14295 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5506c8ff-ad5d-4338-b8e3-182a4a30601f + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 46.030308ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + 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/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + 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-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 52d80808-5f75-4750-9c8c-50e8d0113fd3 + status: 200 OK + code: 200 + duration: 57.279959ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 281 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-suspicious-blackburn\",\"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\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2175 + body: "{\"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-blackburn\", \"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\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:41:47.485045+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:6c:97\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:41:47.485045+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2175" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71d79c0f-96ee-4cbd-b445-d47107ffd454 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 81bf44a1-fb04-418b-ad96-0f5ba5055424 + status: 201 Created + code: 201 + duration: 764.664974ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71d79c0f-96ee-4cbd-b445-d47107ffd454 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2175 + body: "{\"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-blackburn\", \"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\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:41:47.485045+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:6c:97\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:41:47.485045+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2175" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fb31c851-c832-459b-8554-a8881fb9597d + status: 200 OK + code: 200 + duration: 148.065072ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71d79c0f-96ee-4cbd-b445-d47107ffd454 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2175 + body: "{\"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-blackburn\", \"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\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:41:47.485045+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:6c:97\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:41:47.485045+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"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: + - "2175" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 68afb62f-bb14-4efe-8e0d-7158a3a4e4b2 + status: 200 OK + code: 200 + duration: 115.716216ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: "{\"action\":\"poweron\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71d79c0f-96ee-4cbd-b445-d47107ffd454/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"33b17060-d5cd-42f5-8485-556bbb9f7627\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/71d79c0f-96ee-4cbd-b445-d47107ffd454/action\", \"href_result\": \"/servers/71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"started_at\": \"2025-10-30T15:41:48.135261+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/33b17060-d5cd-42f5-8485-556bbb9f7627 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - bbf7b3fd-238d-4f79-af5a-774c896034ef + status: 202 Accepted + code: 202 + duration: 241.529071ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71d79c0f-96ee-4cbd-b445-d47107ffd454 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2197 + body: "{\"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-blackburn\", \"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\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:41:47.485045+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:6c:97\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:41:47.946996+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: + - "2197" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b410ed09-d353-46ca-bb8e-c33ad96ddd9a + status: 200 OK + code: 200 + duration: 135.035584ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71d79c0f-96ee-4cbd-b445-d47107ffd454 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2301 + body: "{\"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-blackburn\", \"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\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:41:47.485045+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:6c:97\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:41:47.946996+00:00\", \"bootscript\": 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\": \"1801\", \"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: + - "2301" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b36a87bf-b56b-4799-9128-3c17ceba55c3 + status: 200 OK + code: 200 + duration: 136.386649ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71d79c0f-96ee-4cbd-b445-d47107ffd454 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2301 + body: "{\"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-blackburn\", \"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\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:41:47.485045+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:6c:97\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:41:47.946996+00:00\", \"bootscript\": 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\": \"1801\", \"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: + - "2301" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 696a47df-f5f4-456e-a905-20f2ad45db66 + status: 200 OK + code: 200 + duration: 146.93192ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71d79c0f-96ee-4cbd-b445-d47107ffd454 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2332 + body: "{\"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-blackburn\", \"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\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:41:47.485045+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:6c:97\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:41:59.962866+00:00\", \"bootscript\": 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\": \"1801\", \"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: + - "2332" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c5682355-21d8-4cbb-b5fb-fa623926ec76 + status: 200 OK + code: 200 + duration: 113.675292ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71d79c0f-96ee-4cbd-b445-d47107ffd454 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2378 + body: "{\"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-blackburn\", \"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\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:41:47.485045+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:6c:97\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:41:59.962866+00:00\", \"bootscript\": 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\": \"1801\", \"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, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2378" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - efa937d8-0c10-441a-b313-e6295a0533b1 + status: 200 OK + code: 200 + duration: 123.732096ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f5d05662-b1c7-4cb8-9c02-4ddf261108b1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 527 + body: "{\"volume\": {\"id\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:41:47.485045+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "527" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 1ba4ec8d-a20a-45a7-b6c7-e7eebc18b9d8 + status: 200 OK + code: 200 + duration: 107.85243ms +- id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71d79c0f-96ee-4cbd-b445-d47107ffd454/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ebd64fc7-2082-477c-8a58-e128a3b6f82f + status: 200 OK + code: 200 + duration: 108.608719ms +- id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71d79c0f-96ee-4cbd-b445-d47107ffd454/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:04 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5fac7088-6273-4aac-ac1b-3f4a25ad1a47 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 103.014867ms +- id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 141 + host: api.scaleway.com + body: "{\"name\":\"tf-snap-interesting-goldwasser\",\"volume_id\":\"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 854 + body: "{\"snapshot\": {\"id\": \"98b950ca-61c1-4a8a-bd61-cc2954df2c4b\", \"name\": \"tf-snap-interesting-goldwasser\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:42:04.493765+00:00\", \"modification_date\": \"2025-10-30T15:42:04.493765+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}, \"task\": {\"id\": \"8db4c448-edfd-4880-b445-148693fc7efd\", \"description\": \"volume_snapshot\", \"status\": \"pending\", \"href_from\": \"/snapshots\", \"href_result\": \"snapshots/98b950ca-61c1-4a8a-bd61-cc2954df2c4b\", \"started_at\": \"2025-10-30T15:42:04.693624+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "854" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 555ddf88-b02a-4486-8d2e-281b9b3d7bf6 + status: 201 Created + code: 201 + duration: 805.552176ms +- id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/98b950ca-61c1-4a8a-bd61-cc2954df2c4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 543 + body: "{\"snapshot\": {\"id\": \"98b950ca-61c1-4a8a-bd61-cc2954df2c4b\", \"name\": \"tf-snap-interesting-goldwasser\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:42:04.493765+00:00\", \"modification_date\": \"2025-10-30T15:42:04.493765+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "543" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 58b04e10-854b-4f29-b5f1-c76eb28ebbab + status: 200 OK + code: 200 + duration: 112.299482ms +- id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/98b950ca-61c1-4a8a-bd61-cc2954df2c4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 543 + body: "{\"snapshot\": {\"id\": \"98b950ca-61c1-4a8a-bd61-cc2954df2c4b\", \"name\": \"tf-snap-interesting-goldwasser\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:42:04.493765+00:00\", \"modification_date\": \"2025-10-30T15:42:04.493765+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "543" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - adf12965-ec25-4475-b3ad-6ddda30f2c41 + status: 200 OK + code: 200 + duration: 122.906769ms +- id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/98b950ca-61c1-4a8a-bd61-cc2954df2c4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 543 + body: "{\"snapshot\": {\"id\": \"98b950ca-61c1-4a8a-bd61-cc2954df2c4b\", \"name\": \"tf-snap-interesting-goldwasser\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:42:04.493765+00:00\", \"modification_date\": \"2025-10-30T15:42:04.493765+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "543" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7249a95f-d49f-4d8e-94da-42aee13decce + status: 200 OK + code: 200 + duration: 109.185834ms +- id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/98b950ca-61c1-4a8a-bd61-cc2954df2c4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 543 + body: "{\"snapshot\": {\"id\": \"98b950ca-61c1-4a8a-bd61-cc2954df2c4b\", \"name\": \"tf-snap-interesting-goldwasser\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:42:04.493765+00:00\", \"modification_date\": \"2025-10-30T15:42:04.493765+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "543" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 707c5893-0ec7-4311-a252-470f2d0b4e2f + status: 200 OK + code: 200 + duration: 106.984576ms +- id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/98b950ca-61c1-4a8a-bd61-cc2954df2c4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 543 + body: "{\"snapshot\": {\"id\": \"98b950ca-61c1-4a8a-bd61-cc2954df2c4b\", \"name\": \"tf-snap-interesting-goldwasser\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:42:04.493765+00:00\", \"modification_date\": \"2025-10-30T15:42:04.493765+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "543" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 7f2b3308-e277-4729-a2c5-a4fbfd6d1399 + status: 200 OK + code: 200 + duration: 112.703154ms +- id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/98b950ca-61c1-4a8a-bd61-cc2954df2c4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 543 + body: "{\"snapshot\": {\"id\": \"98b950ca-61c1-4a8a-bd61-cc2954df2c4b\", \"name\": \"tf-snap-interesting-goldwasser\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:42:04.493765+00:00\", \"modification_date\": \"2025-10-30T15:42:04.493765+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "543" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 98965258-8df7-49e5-9e9b-d1bffba67916 + status: 200 OK + code: 200 + duration: 111.702749ms +- id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/98b950ca-61c1-4a8a-bd61-cc2954df2c4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 543 + body: "{\"snapshot\": {\"id\": \"98b950ca-61c1-4a8a-bd61-cc2954df2c4b\", \"name\": \"tf-snap-interesting-goldwasser\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:42:04.493765+00:00\", \"modification_date\": \"2025-10-30T15:42:04.493765+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"snapshotting\", \"base_volume\": {\"id\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "543" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 863804ae-f74d-489b-9bb4-603fdb2c3dfd + status: 200 OK + code: 200 + duration: 101.165785ms +- id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/98b950ca-61c1-4a8a-bd61-cc2954df2c4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 540 + body: "{\"snapshot\": {\"id\": \"98b950ca-61c1-4a8a-bd61-cc2954df2c4b\", \"name\": \"tf-snap-interesting-goldwasser\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:42:04.493765+00:00\", \"modification_date\": \"2025-10-30T15:42:35.669322+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "540" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 042099ce-3687-4301-afb0-1f062b9e2474 + status: 200 OK + code: 200 + duration: 115.775481ms +- id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/98b950ca-61c1-4a8a-bd61-cc2954df2c4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 540 + body: "{\"snapshot\": {\"id\": \"98b950ca-61c1-4a8a-bd61-cc2954df2c4b\", \"name\": \"tf-snap-interesting-goldwasser\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:42:04.493765+00:00\", \"modification_date\": \"2025-10-30T15:42:35.669322+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "540" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5df2977e-6819-4254-b5aa-b9e1f8308610 + status: 200 OK + code: 200 + duration: 107.478827ms +- id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/98b950ca-61c1-4a8a-bd61-cc2954df2c4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 540 + body: "{\"snapshot\": {\"id\": \"98b950ca-61c1-4a8a-bd61-cc2954df2c4b\", \"name\": \"tf-snap-interesting-goldwasser\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:42:04.493765+00:00\", \"modification_date\": \"2025-10-30T15:42:35.669322+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "540" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8aeb1fc8-b5a9-4702-856c-10460dfc9e26 + status: 200 OK + code: 200 + duration: 123.181513ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71d79c0f-96ee-4cbd-b445-d47107ffd454 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2378 + body: "{\"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-blackburn\", \"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\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:42:35.669322+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:6c:97\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:41:59.962866+00:00\", \"bootscript\": 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\": \"1801\", \"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, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2378" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 94d752aa-0a60-4f9e-9951-0d1a796d6b29 + status: 200 OK + code: 200 + duration: 160.177409ms +- id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f5d05662-b1c7-4cb8-9c02-4ddf261108b1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 527 + body: "{\"volume\": {\"id\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:42:35.669322+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "527" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 77174f43-b228-4111-90ae-73b1d913353a + status: 200 OK + code: 200 + duration: 110.599492ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71d79c0f-96ee-4cbd-b445-d47107ffd454/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: "{\"user_data\": []}" + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f70d8145-01e4-47f9-adc3-481994cf5737 + status: 200 OK + code: 200 + duration: 122.219709ms +- id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71d79c0f-96ee-4cbd-b445-d47107ffd454/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: "{\"private_nics\": []}" + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:41 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 15b60d1c-eb82-45dc-bdc7-9215654fc19e + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 89.378055ms +- id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/98b950ca-61c1-4a8a-bd61-cc2954df2c4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 540 + body: "{\"snapshot\": {\"id\": \"98b950ca-61c1-4a8a-bd61-cc2954df2c4b\", \"name\": \"tf-snap-interesting-goldwasser\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:42:04.493765+00:00\", \"modification_date\": \"2025-10-30T15:42:35.669322+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "540" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b238529e-2cde-425f-864b-fdeafb98da5c + status: 200 OK + code: 200 + duration: 86.969046ms +- id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/98b950ca-61c1-4a8a-bd61-cc2954df2c4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 540 + body: "{\"snapshot\": {\"id\": \"98b950ca-61c1-4a8a-bd61-cc2954df2c4b\", \"name\": \"tf-snap-interesting-goldwasser\", \"volume_type\": \"l_ssd\", \"creation_date\": \"2025-10-30T15:42:04.493765+00:00\", \"modification_date\": \"2025-10-30T15:42:35.669322+00:00\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"size\": 20000000000, \"state\": \"available\", \"base_volume\": {\"id\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\"}, \"tags\": [], \"zone\": \"fr-par-1\", \"error_details\": null}}" + headers: + Content-Length: + - "540" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 850b28d0-14ed-43d8-b5f5-79a50741c47f + status: 200 OK + code: 200 + duration: 101.103389ms +- id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/98b950ca-61c1-4a8a-bd61-cc2954df2c4b + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4d49d995-fa04-4492-a747-7ae74548af7c + status: 204 No Content + code: 204 + duration: 155.076742ms +- id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/98b950ca-61c1-4a8a-bd61-cc2954df2c4b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 145 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_snapshot\", \"resource_id\": \"98b950ca-61c1-4a8a-bd61-cc2954df2c4b\"}" + headers: + Content-Length: + - "145" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - e84c9166-3021-45ca-b931-bfb99b00680f + status: 404 Not Found + code: 404 + duration: 30.506835ms +- id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71d79c0f-96ee-4cbd-b445-d47107ffd454 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2378 + body: "{\"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-blackburn\", \"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\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:42:35.669322+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:6c:97\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:41:59.962866+00:00\", \"bootscript\": 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\": \"1801\", \"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, \"admin_password_encryption_ssh_key_id\": null}}" + headers: + Content-Length: + - "2378" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fe60fd9d-b651-4402-8d8d-2f70783ccc20 + status: 200 OK + code: 200 + duration: 127.00743ms +- id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71d79c0f-96ee-4cbd-b445-d47107ffd454 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2332 + body: "{\"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-blackburn\", \"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\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:42:35.669322+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:6c:97\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:41:59.962866+00:00\", \"bootscript\": 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\": \"1801\", \"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: + - "2332" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 168b70f4-290c-4c8e-90a5-7d2dea7f1374 + status: 200 OK + code: 200 + duration: 161.13741ms +- id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: "{\"action\":\"terminate\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71d79c0f-96ee-4cbd-b445-d47107ffd454/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"7ac93dd2-dff1-4fcc-8280-89417f8c4761\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/71d79c0f-96ee-4cbd-b445-d47107ffd454/action\", \"href_result\": \"/servers/71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"started_at\": \"2025-10-30T15:42:43.080847+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:43 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7ac93dd2-dff1-4fcc-8280-89417f8c4761 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c5971587-c5b9-4d65-9f64-b6112456dafd + status: 202 Accepted + code: 202 + duration: 282.588087ms +- id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71d79c0f-96ee-4cbd-b445-d47107ffd454 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2295 + body: "{\"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-suspicious-blackburn\", \"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\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\", \"name\": \"tf-srv-suspicious-blackburn\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:42:35.669322+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:6c:97\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:47.485045+00:00\", \"modification_date\": \"2025-10-30T15:42:42.844987+00:00\", \"bootscript\": 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\": \"1801\", \"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: + - "2295" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f3f7b55d-b198-4c37-a683-15f9f30d2456 + status: 200 OK + code: 200 + duration: 101.719575ms +- id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71d79c0f-96ee-4cbd-b445-d47107ffd454 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"71d79c0f-96ee-4cbd-b445-d47107ffd454\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - cef276bc-949a-42e2-8e0c-09c2f7773575 + status: 404 Not Found + code: 404 + duration: 42.379235ms +- id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f5d05662-b1c7-4cb8-9c02-4ddf261108b1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 605ec344-c7f7-4938-b601-1ce87b79751b + status: 404 Not Found + code: 404 + duration: 31.043983ms +- id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f5d05662-b1c7-4cb8-9c02-4ddf261108b1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"f5d05662-b1c7-4cb8-9c02-4ddf261108b1\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 47cb7351-60f2-4879-9cc6-24caf16c8a03 + status: 404 Not Found + code: 404 + duration: 30.528286ms diff --git a/internal/services/instance/testdata/test-get-end-of-service-date.cassette.yaml b/internal/services/instance/testdata/test-get-end-of-service-date.cassette.yaml index 576410015..2fbf47e5c 100644 --- a/internal/services/instance/testdata/test-get-end-of-service-date.cassette.yaml +++ b/internal/services/instance/testdata/test-get-end-of-service-date.cassette.yaml @@ -1,52 +1,43 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 63436 - uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007349317,"m3_water_usage":4.8527312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007820358,"m3_water_usage":5.2815658e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001159045,"m3_water_usage":6.196603e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012532533,"m3_water_usage":7.054272e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010489539,"m3_water_usage":3.5761778e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020072719,"m3_water_usage":8.884346e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021956884,"m3_water_usage":1.0599683e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037037253,"m3_water_usage":1.4259832e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004080558,"m3_water_usage":1.7690508e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070966324,"m3_water_usage":2.5010803e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007850299,"m3_water_usage":3.1872153e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013882446,"m3_water_usage":4.651275e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071024447,"m3_water_usage":4.7163347e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011096707,"m3_water_usage":5.9238094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001908523,"m3_water_usage":8.338759e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0035062279,"m3_water_usage":1.3168658e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067016375,"m3_water_usage":2.2828456e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012098227,"m3_water_usage":6.071713e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021778978,"m3_water_usage":9.414312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004114048,"m3_water_usage":1.609951e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007986348,"m3_water_usage":2.9469908e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015476634,"m3_water_usage":5.5332595e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071226544,"m3_water_usage":4.6554373e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010991569,"m3_water_usage":5.6376933e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018729396,"m3_water_usage":7.6022054e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034205052,"m3_water_usage":1.153123e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065156366,"m3_water_usage":1.9389277e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0002863708,"m3_water_usage":2.5662501e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00037243648,"m3_water_usage":2.8712352e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005220755,"m3_water_usage":3.4015205e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007988614,"m3_water_usage":4.3824063e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010531549,"m3_water_usage":5.2836075e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0004081208,"m3_water_usage":3.745022e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005054233,"m3_water_usage":3.9811848e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007000283,"m3_water_usage":4.4535096e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001052636,"m3_water_usage":5.3093217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017944536,"m3_water_usage":7.109784e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003278089,"m3_water_usage":1.0710707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00624536,"m3_water_usage":1.7912555e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012179901,"m3_water_usage":3.2316248e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018114442,"m3_water_usage":4.6719944e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024048984,"m3_water_usage":6.112364e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011864954,"m3_water_usage":6.283584e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020621726,"m3_water_usage":9.058308e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038135268,"m3_water_usage":1.4607757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005564881,"m3_water_usage":2.0157205e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073162355,"m3_water_usage":2.5706652e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' - headers: - Content-Length: - - "63436" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 13:05:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 03b2fc94-1159-40a0-b23f-6dab30897c72 - status: 200 OK - code: 200 - duration: 125.270226ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 63436 + body: "{\"products\":[{\"description\":\"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0007349317,\"m3_water_usage\":4.8527312e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":73500000,\"units\":0}},\"product\":\"POP2-2C-8G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2\",\"threads\":2,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":2}},\"network\":{\"description\":\"Internal: 400 Mb/s, Public: 400 Mb/s\",\"internal_bandwidth\":400000000,\"max_public_bandwidth\":400000000,\"public_bandwidth\":400000000},\"ram\":{\"description\":\"8 GiB\",\"size\":8589934592,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-2C-8G\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_2c_8g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-2C-8G Instance - fr-par-1\"},{\"description\":\"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0007820358,\"m3_water_usage\":5.2815658e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":182300000,\"units\":0}},\"product\":\"POP2-2C-8G-WIN\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2\",\"threads\":2,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":2}},\"network\":{\"description\":\"Internal: 400 Mb/s, Public: 400 Mb/s\",\"internal_bandwidth\":400000000,\"max_public_bandwidth\":400000000,\"public_bandwidth\":400000000},\"ram\":{\"description\":\"8 GiB\",\"size\":8589934592,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-2C-8G-WIN\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_2c_8g_win/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-2C-8G-WIN Instance - fr-par-1\"},{\"description\":\"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.001159045,\"m3_water_usage\":6.196603e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":147000000,\"units\":0}},\"product\":\"POP2-4C-16G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4\",\"threads\":4,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":4}},\"network\":{\"description\":\"Internal: 800 Mb/s, Public: 800 Mb/s\",\"internal_bandwidth\":800000000,\"max_public_bandwidth\":800000000,\"public_bandwidth\":800000000},\"ram\":{\"description\":\"16 GiB\",\"size\":17179869184,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-4C-16G\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_4c_16g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-4C-16G Instance - fr-par-1\"},{\"description\":\"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0012532533,\"m3_water_usage\":7.054272e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":363700000,\"units\":0}},\"product\":\"POP2-4C-16G-WIN\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4\",\"threads\":4,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":4}},\"network\":{\"description\":\"Internal: 800 Mb/s, Public: 800 Mb/s\",\"internal_bandwidth\":800000000,\"max_public_bandwidth\":800000000,\"public_bandwidth\":800000000},\"ram\":{\"description\":\"16 GiB\",\"size\":17179869184,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-4C-16G-WIN\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_4c_16g_win/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-4C-16G-WIN Instance - fr-par-1\"},{\"description\":\"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.010489539,\"m3_water_usage\":3.5761778e-7},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":770000000,\"units\":1}},\"product\":\"POP2-48C-192G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48\",\"threads\":48,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":48}},\"network\":{\"description\":\"Internal: 9.6 Gb/s, Public: 9.6 Gb/s\",\"internal_bandwidth\":9600000000,\"max_public_bandwidth\":9600000000,\"public_bandwidth\":9600000000},\"ram\":{\"description\":\"192 GiB\",\"size\":206158430208,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-48C-192G\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_48c_192g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-48C-192G Instance - fr-par-1\"},{\"description\":\"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0020072719,\"m3_water_usage\":8.884346e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":290000000,\"units\":0}},\"product\":\"POP2-8C-32G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8\",\"threads\":8,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":8}},\"network\":{\"description\":\"Internal: 1.6 Gb/s, Public: 1.6 Gb/s\",\"internal_bandwidth\":1600000000,\"max_public_bandwidth\":1600000000,\"public_bandwidth\":1600000000},\"ram\":{\"description\":\"32 GiB\",\"size\":34359738368,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-8C-32G\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_8c_32g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-8C-32G Instance - fr-par-1\"},{\"description\":\"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0021956884,\"m3_water_usage\":1.0599683e-7},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":723300000,\"units\":0}},\"product\":\"POP2-8C-32G-WIN\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8\",\"threads\":8,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":8}},\"network\":{\"description\":\"Internal: 1.6 Gb/s, Public: 1.6 Gb/s\",\"internal_bandwidth\":1600000000,\"max_public_bandwidth\":1600000000,\"public_bandwidth\":1600000000},\"ram\":{\"description\":\"32 GiB\",\"size\":34359738368,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-8C-32G-WIN\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_8c_32g_win/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-8C-32G-WIN Instance - fr-par-1\"},{\"description\":\"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0037037253,\"m3_water_usage\":1.4259832e-7},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":590000000,\"units\":0}},\"product\":\"POP2-16C-64G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16\",\"threads\":16,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":16}},\"network\":{\"description\":\"Internal: 3.2 Gb/s, Public: 3.2 Gb/s\",\"internal_bandwidth\":3200000000,\"max_public_bandwidth\":3200000000,\"public_bandwidth\":3200000000},\"ram\":{\"description\":\"64 GiB\",\"size\":68719476736,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-16C-64G\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_16c_64g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-16C-64G Instance - fr-par-1\"},{\"description\":\"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.004080558,\"m3_water_usage\":1.7690508e-7},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":456700000,\"units\":1}},\"product\":\"POP2-16C-64G-WIN\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16\",\"threads\":16,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":16}},\"network\":{\"description\":\"Internal: 3.2 Gb/s, Public: 3.2 Gb/s\",\"internal_bandwidth\":3200000000,\"max_public_bandwidth\":3200000000,\"public_bandwidth\":3200000000},\"ram\":{\"description\":\"64 GiB\",\"size\":68719476736,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-16C-64G-WIN\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_16c_64g_win/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-16C-64G-WIN Instance - fr-par-1\"},{\"description\":\"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0070966324,\"m3_water_usage\":2.5010803e-7},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":180000000,\"units\":1}},\"product\":\"POP2-32C-128G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32\",\"threads\":32,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":32}},\"network\":{\"description\":\"Internal: 6.4 Gb/s, Public: 6.4 Gb/s\",\"internal_bandwidth\":6400000000,\"max_public_bandwidth\":6400000000,\"public_bandwidth\":6400000000},\"ram\":{\"description\":\"128 GiB\",\"size\":137438953472,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-32C-128G\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_32c_128g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-32C-128G Instance - fr-par-1\"},{\"description\":\"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.007850299,\"m3_water_usage\":3.1872153e-7},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":913300000,\"units\":2}},\"product\":\"POP2-32C-128G-WIN\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32\",\"threads\":32,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":32}},\"network\":{\"description\":\"Internal: 6.4 Gb/s, Public: 6.4 Gb/s\",\"internal_bandwidth\":6400000000,\"max_public_bandwidth\":6400000000,\"public_bandwidth\":6400000000},\"ram\":{\"description\":\"128 GiB\",\"size\":137438953472,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-32C-128G-WIN\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_32c_128g_win/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-32C-128G-WIN Instance - fr-par-1\"},{\"description\":\"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.013882446,\"m3_water_usage\":4.651275e-7},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":350000000,\"units\":2}},\"product\":\"POP2-64C-256G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64\",\"threads\":64,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":64}},\"network\":{\"description\":\"Internal: 12.8 Gb/s, Public: 12.8 Gb/s\",\"internal_bandwidth\":12800000000,\"max_public_bandwidth\":12800000000,\"public_bandwidth\":12800000000},\"ram\":{\"description\":\"256 GiB\",\"size\":274877906944,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-64C-256G\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_64c_256g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-64C-256G Instance - fr-par-1\"},{\"description\":\"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.00071024447,\"m3_water_usage\":4.7163347e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":55000000,\"units\":0}},\"product\":\"PRO2-XXS\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2\",\"threads\":2,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":2}},\"network\":{\"description\":\"Internal: 350 Mb/s, Public: 350 Mb/s\",\"internal_bandwidth\":350000000,\"max_public_bandwidth\":350000000,\"public_bandwidth\":350000000},\"ram\":{\"description\":\"8 GiB\",\"size\":8589934592,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"PRO2-XXS\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pro2_xxs/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute PRO2-XXS Instance - fr-par-1\"},{\"description\":\"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0011096707,\"m3_water_usage\":5.9238094e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":110000000,\"units\":0}},\"product\":\"PRO2-XS\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4\",\"threads\":4,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":4}},\"network\":{\"description\":\"Internal: 700 Mb/s, Public: 700 Mb/s\",\"internal_bandwidth\":700000000,\"max_public_bandwidth\":700000000,\"public_bandwidth\":700000000},\"ram\":{\"description\":\"16 GiB\",\"size\":17179869184,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"PRO2-XS\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pro2_xs/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute PRO2-XS Instance - fr-par-1\"},{\"description\":\"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.001908523,\"m3_water_usage\":8.338759e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":219000000,\"units\":0}},\"product\":\"PRO2-S\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8\",\"threads\":8,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":8}},\"network\":{\"description\":\"Internal: 1.5 Gb/s, Public: 1.5 Gb/s\",\"internal_bandwidth\":1500000000,\"max_public_bandwidth\":1500000000,\"public_bandwidth\":1500000000},\"ram\":{\"description\":\"32 GiB\",\"size\":34359738368,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"PRO2-S\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pro2_s/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute PRO2-S Instance - fr-par-1\"},{\"description\":\"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0035062279,\"m3_water_usage\":1.3168658e-7},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":438000000,\"units\":0}},\"product\":\"PRO2-M\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16\",\"threads\":16,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":16}},\"network\":{\"description\":\"Internal: 3 Gb/s, Public: 3 Gb/s\",\"internal_bandwidth\":3000000000,\"max_public_bandwidth\":3000000000,\"public_bandwidth\":3000000000},\"ram\":{\"description\":\"64 GiB\",\"size\":68719476736,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"PRO2-M\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pro2_m/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute PRO2-M Instance - fr-par-1\"},{\"description\":\"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0067016375,\"m3_water_usage\":2.2828456e-7},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":877000000,\"units\":0}},\"product\":\"PRO2-L\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32\",\"threads\":32,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":32}},\"network\":{\"description\":\"Internal: 6 Gb/s, Public: 6 Gb/s\",\"internal_bandwidth\":6000000000,\"max_public_bandwidth\":6000000000,\"public_bandwidth\":6000000000},\"ram\":{\"description\":\"128 GiB\",\"size\":137438953472,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"PRO2-L\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pro2_l/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute PRO2-L Instance - fr-par-1\"},{\"description\":\"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0012098227,\"m3_water_usage\":6.071713e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":91000000,\"units\":0}},\"product\":\"GP1-XS Instance\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4\",\"threads\":4,\"type\":\"AMD EPYC™ 7281 (2.1 GHz) or equivalent\",\"virtual\":{\"count\":4}},\"network\":{\"description\":\"Internal: 500 Mb/s, Public: 500 Mb/s\",\"internal_bandwidth\":500000000,\"max_public_bandwidth\":500000000,\"public_bandwidth\":500000000},\"ram\":{\"description\":\"16 GiB\",\"size\":17179869184,\"type\":\"\"},\"storage\":{\"description\":\"Dynamic local: 1 x SSD, Block\",\"total\":0}},\"instance\":{\"offer_id\":\"GP1-XS\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/gp1_xs/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute GP1-XS Instance - fr-par-1\"},{\"description\":\"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0021778978,\"m3_water_usage\":9.414312e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":187000000,\"units\":0}},\"product\":\"GP1-S Instance\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8\",\"threads\":8,\"type\":\"AMD EPYC™ 7281 (2.1 GHz) or equivalent\",\"virtual\":{\"count\":8}},\"network\":{\"description\":\"Internal: 800 Mb/s, Public: 800 Mb/s\",\"internal_bandwidth\":800000000,\"max_public_bandwidth\":800000000,\"public_bandwidth\":800000000},\"ram\":{\"description\":\"32 GiB\",\"size\":34359738368,\"type\":\"\"},\"storage\":{\"description\":\"Dynamic local: 1 x SSD, Block\",\"total\":0}},\"instance\":{\"offer_id\":\"GP1-S\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/gp1_s/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute GP1-S Instance - fr-par-1\"},{\"description\":\"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.004114048,\"m3_water_usage\":1.609951e-7},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":376000000,\"units\":0}},\"product\":\"GP1-M Instance\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16\",\"threads\":16,\"type\":\"AMD EPYC™ 7281 (2.1 GHz) or equivalent\",\"virtual\":{\"count\":16}},\"network\":{\"description\":\"Internal: 1.5 Gb/s, Public: 1.5 Gb/s\",\"internal_bandwidth\":1500000000,\"max_public_bandwidth\":1500000000,\"public_bandwidth\":1500000000},\"ram\":{\"description\":\"64 GiB\",\"size\":68719476736,\"type\":\"\"},\"storage\":{\"description\":\"Dynamic local: 1 x SSD, Block\",\"total\":0}},\"instance\":{\"offer_id\":\"GP1-M\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/gp1_m/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute GP1-M Instance - fr-par-1\"},{\"description\":\"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.007986348,\"m3_water_usage\":2.9469908e-7},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":759000000,\"units\":0}},\"product\":\"GP1-L Instance\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32\",\"threads\":32,\"type\":\"AMD EPYC™ 7281 (2.1 GHz) or equivalent\",\"virtual\":{\"count\":32}},\"network\":{\"description\":\"Internal: 5 Gb/s, Public: 5 Gb/s\",\"internal_bandwidth\":5000000000,\"max_public_bandwidth\":5000000000,\"public_bandwidth\":5000000000},\"ram\":{\"description\":\"128 GiB\",\"size\":137438953472,\"type\":\"\"},\"storage\":{\"description\":\"Dynamic local: 1 x SSD, Block\",\"total\":0}},\"instance\":{\"offer_id\":\"GP1-L\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/gp1_l/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute GP1-L Instance - fr-par-1\"},{\"description\":\"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.015476634,\"m3_water_usage\":5.5332595e-7},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":641000000,\"units\":1}},\"product\":\"GP1-XL Instance\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48\",\"threads\":48,\"type\":\"AMD EPYC™ 7281 (2.1 GHz) or equivalent\",\"virtual\":{\"count\":48}},\"network\":{\"description\":\"Internal: 10 Gb/s, Public: 10 Gb/s\",\"internal_bandwidth\":10000000000,\"max_public_bandwidth\":10000000000,\"public_bandwidth\":10000000000},\"ram\":{\"description\":\"256 GiB\",\"size\":274877906944,\"type\":\"\"},\"storage\":{\"description\":\"Dynamic local: 1 x SSD, Block\",\"total\":0}},\"instance\":{\"offer_id\":\"GP1-XL\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/gp1_xl/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute GP1-XL Instance - fr-par-1\"},{\"description\":\"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.00071226544,\"m3_water_usage\":4.6554373e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":42600000,\"units\":0}},\"product\":\"COPARM1-2C-8G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"arm64\",\"description\":\"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2\",\"threads\":2,\"type\":\"AMPERE ALTRA MAX (3 GHz)\",\"virtual\":{\"count\":2}},\"network\":{\"description\":\"Internal: 200 Mb/s, Public: 200 Mb/s\",\"internal_bandwidth\":200000000,\"max_public_bandwidth\":200000000,\"public_bandwidth\":200000000},\"ram\":{\"description\":\"8 GiB\",\"size\":8589934592,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"COPARM1-2C-8G\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/coparm1_2c_8g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute COPARM1-2C-8G Instance - fr-par-1\"},{\"description\":\"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0010991569,\"m3_water_usage\":5.6376933e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":85700000,\"units\":0}},\"product\":\"COPARM1-4C-16G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"arm64\",\"description\":\"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4\",\"threads\":4,\"type\":\"AMPERE ALTRA MAX (3 GHz)\",\"virtual\":{\"count\":4}},\"network\":{\"description\":\"Internal: 400 Mb/s, Public: 400 Mb/s\",\"internal_bandwidth\":400000000,\"max_public_bandwidth\":400000000,\"public_bandwidth\":400000000},\"ram\":{\"description\":\"16 GiB\",\"size\":17179869184,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"COPARM1-4C-16G\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/coparm1_4c_16g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute COPARM1-4C-16G Instance - fr-par-1\"},{\"description\":\"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0018729396,\"m3_water_usage\":7.6022054e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":172400000,\"units\":0}},\"product\":\"COPARM1-8C-32G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"arm64\",\"description\":\"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8\",\"threads\":8,\"type\":\"AMPERE ALTRA MAX (3 GHz)\",\"virtual\":{\"count\":8}},\"network\":{\"description\":\"Internal: 800 Mb/s, Public: 800 Mb/s\",\"internal_bandwidth\":800000000,\"max_public_bandwidth\":800000000,\"public_bandwidth\":800000000},\"ram\":{\"description\":\"32 GiB\",\"size\":34359738368,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"COPARM1-8C-32G\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/coparm1_8c_32g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute COPARM1-8C-32G Instance - fr-par-1\"},{\"description\":\"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0034205052,\"m3_water_usage\":1.153123e-7},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":345400000,\"units\":0}},\"product\":\"COPARM1-16C-64G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"arm64\",\"description\":\"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16\",\"threads\":16,\"type\":\"AMPERE ALTRA MAX (3 GHz)\",\"virtual\":{\"count\":16}},\"network\":{\"description\":\"Internal: 1.6 Gb/s, Public: 1.6 Gb/s\",\"internal_bandwidth\":1600000000,\"max_public_bandwidth\":1600000000,\"public_bandwidth\":1600000000},\"ram\":{\"description\":\"64 GiB\",\"size\":68719476736,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"COPARM1-16C-64G\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/coparm1_16c_64g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute COPARM1-16C-64G Instance - fr-par-1\"},{\"description\":\"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0065156366,\"m3_water_usage\":1.9389277e-7},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":693500000,\"units\":0}},\"product\":\"COPARM1-32C-128G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"arm64\",\"description\":\"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32\",\"threads\":32,\"type\":\"AMPERE ALTRA MAX (3 GHz)\",\"virtual\":{\"count\":32}},\"network\":{\"description\":\"Internal: 3.2 Gb/s, Public: 3.2 Gb/s\",\"internal_bandwidth\":3200000000,\"max_public_bandwidth\":3200000000,\"public_bandwidth\":3200000000},\"ram\":{\"description\":\"128 GiB\",\"size\":137438953472,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"COPARM1-32C-128G\",\"range\":\"General Purpose\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/coparm1_32c_128g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute COPARM1-32C-128G Instance - fr-par-1\"},{\"description\":\"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0002863708,\"m3_water_usage\":2.5662501e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":150000,\"units\":0}},\"product\":\"STARDUST1-S\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1\",\"threads\":1,\"type\":\"AMD EPYC™ 7281 (2.1 GHz) or equivalent\",\"virtual\":{\"count\":1}},\"network\":{\"description\":\"Internal: 100 Mb/s, Public: 100 Mb/s\",\"internal_bandwidth\":100000000,\"max_public_bandwidth\":100000000,\"public_bandwidth\":100000000},\"ram\":{\"description\":\"1 GiB\",\"size\":1073741824,\"type\":\"\"},\"storage\":{\"description\":\"Dynamic local: 1 x SSD, Block\",\"total\":0}},\"instance\":{\"offer_id\":\"STARDUST1-S\",\"range\":\"Development\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/stardust1_s/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute STARDUST1-S Instance - fr-par-1\"},{\"description\":\"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.00037243648,\"m3_water_usage\":2.8712352e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":8800000,\"units\":0}},\"product\":\"DEV1-S Instance\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2\",\"threads\":2,\"type\":\"AMD EPYC™ 7281 (2.1 GHz) or equivalent\",\"virtual\":{\"count\":2}},\"network\":{\"description\":\"Internal: 200 Mb/s, Public: 200 Mb/s\",\"internal_bandwidth\":200000000,\"max_public_bandwidth\":200000000,\"public_bandwidth\":200000000},\"ram\":{\"description\":\"2 GiB\",\"size\":2147483648,\"type\":\"\"},\"storage\":{\"description\":\"Dynamic local: 1 x SSD, Block\",\"total\":0}},\"instance\":{\"offer_id\":\"DEV1-S\",\"range\":\"Development\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/dev1_s/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute DEV1-S Instance - fr-par-1\"},{\"description\":\"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0005220755,\"m3_water_usage\":3.4015205e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":19800000,\"units\":0}},\"product\":\"DEV1-M Instance\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3\",\"threads\":3,\"type\":\"AMD EPYC™ 7281 (2.1 GHz) or equivalent\",\"virtual\":{\"count\":3}},\"network\":{\"description\":\"Internal: 300 Mb/s, Public: 300 Mb/s\",\"internal_bandwidth\":300000000,\"max_public_bandwidth\":300000000,\"public_bandwidth\":300000000},\"ram\":{\"description\":\"4 GiB\",\"size\":4294967296,\"type\":\"\"},\"storage\":{\"description\":\"Dynamic local: 1 x SSD, Block\",\"total\":0}},\"instance\":{\"offer_id\":\"DEV1-M\",\"range\":\"Development\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/dev1_m/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute DEV1-M Instance - fr-par-1\"},{\"description\":\"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0007988614,\"m3_water_usage\":4.3824063e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":42000000,\"units\":0}},\"product\":\"DEV1-L Instance\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4\",\"threads\":4,\"type\":\"AMD EPYC™ 7281 (2.1 GHz) or equivalent\",\"virtual\":{\"count\":4}},\"network\":{\"description\":\"Internal: 400 Mb/s, Public: 400 Mb/s\",\"internal_bandwidth\":400000000,\"max_public_bandwidth\":400000000,\"public_bandwidth\":400000000},\"ram\":{\"description\":\"8 GiB\",\"size\":8589934592,\"type\":\"\"},\"storage\":{\"description\":\"Dynamic local: 1 x SSD, Block\",\"total\":0}},\"instance\":{\"offer_id\":\"DEV1-L\",\"range\":\"Development\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/dev1_l/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute DEV1-L Instance - fr-par-1\"},{\"description\":\"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0010531549,\"m3_water_usage\":5.2836075e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":63799999,\"units\":0}},\"product\":\"DEV1-XL Instance\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4\",\"threads\":4,\"type\":\"AMD EPYC™ 7281 (2.1 GHz) or equivalent\",\"virtual\":{\"count\":4}},\"network\":{\"description\":\"Internal: 500 Mb/s, Public: 500 Mb/s\",\"internal_bandwidth\":500000000,\"max_public_bandwidth\":500000000,\"public_bandwidth\":500000000},\"ram\":{\"description\":\"12 GiB\",\"size\":12884901888,\"type\":\"\"},\"storage\":{\"description\":\"Dynamic local: 1 x SSD, Block\",\"total\":0}},\"instance\":{\"offer_id\":\"DEV1-XL\",\"range\":\"Development\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/dev1_xl/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute DEV1-XL Instance - fr-par-1\"},{\"description\":\"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0004081208,\"m3_water_usage\":3.745022e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":14000000,\"units\":0}},\"product\":\"PLAY2-PICO\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1\",\"threads\":1,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":1}},\"network\":{\"description\":\"Internal: 100 Mb/s, Public: 100 Mb/s\",\"internal_bandwidth\":100000000,\"max_public_bandwidth\":100000000,\"public_bandwidth\":100000000},\"ram\":{\"description\":\"2 GiB\",\"size\":2147483648,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"PLAY2-PICO\",\"range\":\"Development\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/play2_pico/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute PLAY2-PICO Instance - fr-par-1\"},{\"description\":\"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0005054233,\"m3_water_usage\":3.9811848e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":27000000,\"units\":0}},\"product\":\"PLAY2-NANO\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2\",\"threads\":2,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":2}},\"network\":{\"description\":\"Internal: 200 Mb/s, Public: 200 Mb/s\",\"internal_bandwidth\":200000000,\"max_public_bandwidth\":200000000,\"public_bandwidth\":200000000},\"ram\":{\"description\":\"4 GiB\",\"size\":4294967296,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"PLAY2-NANO\",\"range\":\"Development\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/play2_nano/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute PLAY2-NANO Instance - fr-par-1\"},{\"description\":\"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0007000283,\"m3_water_usage\":4.4535096e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":54000000,\"units\":0}},\"product\":\"PLAY2-MICRO\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4\",\"threads\":4,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":4}},\"network\":{\"description\":\"Internal: 400 Mb/s, Public: 400 Mb/s\",\"internal_bandwidth\":400000000,\"max_public_bandwidth\":400000000,\"public_bandwidth\":400000000},\"ram\":{\"description\":\"8 GiB\",\"size\":8589934592,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"PLAY2-MICRO\",\"range\":\"Development\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/play2_micro/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute PLAY2-MICRO Instance - fr-par-1\"},{\"description\":\"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.001052636,\"m3_water_usage\":5.3093217e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":103000000,\"units\":0}},\"product\":\"POP2-HM-2C-16G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2\",\"threads\":2,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":2}},\"network\":{\"description\":\"Internal: 400 Mb/s, Public: 400 Mb/s\",\"internal_bandwidth\":400000000,\"max_public_bandwidth\":400000000,\"public_bandwidth\":400000000},\"ram\":{\"description\":\"16 GiB\",\"size\":17179869184,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-HM-2C-16G\",\"range\":\"Specialized\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_hm_2c_16g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-HM-2C-16G Instance - fr-par-1\"},{\"description\":\"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0017944536,\"m3_water_usage\":7.109784e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":206000000,\"units\":0}},\"product\":\"POP2-HM-4C-32G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4\",\"threads\":4,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":4}},\"network\":{\"description\":\"Internal: 800 Mb/s, Public: 800 Mb/s\",\"internal_bandwidth\":800000000,\"max_public_bandwidth\":800000000,\"public_bandwidth\":800000000},\"ram\":{\"description\":\"32 GiB\",\"size\":34359738368,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-HM-4C-32G\",\"range\":\"Specialized\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_hm_4c_32g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-HM-4C-32G Instance - fr-par-1\"},{\"description\":\"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.003278089,\"m3_water_usage\":1.0710707e-7},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":412000000,\"units\":0}},\"product\":\"POP2-HM-8C-64G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8\",\"threads\":8,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":8}},\"network\":{\"description\":\"Internal: 1.6 Gb/s, Public: 1.6 Gb/s\",\"internal_bandwidth\":1600000000,\"max_public_bandwidth\":1600000000,\"public_bandwidth\":1600000000},\"ram\":{\"description\":\"64 GiB\",\"size\":68719476736,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-HM-8C-64G\",\"range\":\"Specialized\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_hm_8c_64g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-HM-8C-64G Instance - fr-par-1\"},{\"description\":\"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.00624536,\"m3_water_usage\":1.7912555e-7},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":824000000,\"units\":0}},\"product\":\"POP2-HM-16C-128G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16\",\"threads\":16,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":16}},\"network\":{\"description\":\"Internal: 3.2 Gb/s, Public: 3.2 Gb/s\",\"internal_bandwidth\":3200000000,\"max_public_bandwidth\":3200000000,\"public_bandwidth\":3200000000},\"ram\":{\"description\":\"128 GiB\",\"size\":137438953472,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-HM-16C-128G\",\"range\":\"Specialized\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_hm_16c_128g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-HM-16C-128G Instance - fr-par-1\"},{\"description\":\"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.012179901,\"m3_water_usage\":3.2316248e-7},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":648000000,\"units\":1}},\"product\":\"POP2-HM-32C-256\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32\",\"threads\":32,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":32}},\"network\":{\"description\":\"Internal: 6.4 Gb/s, Public: 6.4 Gb/s\",\"internal_bandwidth\":6400000000,\"max_public_bandwidth\":6400000000,\"public_bandwidth\":6400000000},\"ram\":{\"description\":\"256 GiB\",\"size\":274877906944,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-HM-32C-256G\",\"range\":\"Specialized\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_hm_32c_256g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-HM-32C-256G Instance - fr-par-1\"},{\"description\":\"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.018114442,\"m3_water_usage\":4.6719944e-7},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":470000000,\"units\":2}},\"product\":\"POP2-HM-48C-384G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48\",\"threads\":48,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":48}},\"network\":{\"description\":\"Internal: 9.6 Gb/s, Public: 9.6 Gb/s\",\"internal_bandwidth\":9600000000,\"max_public_bandwidth\":9600000000,\"public_bandwidth\":9600000000},\"ram\":{\"description\":\"384 GiB\",\"size\":412316860416,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-HM-48C-384G\",\"range\":\"Specialized\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_hm_48c_384g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-HM-48C-384G Instance - fr-par-1\"},{\"description\":\"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.024048984,\"m3_water_usage\":6.112364e-7},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":296000000,\"units\":3}},\"product\":\"POP2-HM-64C-512G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64\",\"threads\":64,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":64}},\"network\":{\"description\":\"Internal: 12.8 Gb/s, Public: 12.8 Gb/s\",\"internal_bandwidth\":12800000000,\"max_public_bandwidth\":12800000000,\"public_bandwidth\":12800000000},\"ram\":{\"description\":\"512 GiB\",\"size\":549755813888,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-HM-64C-512G\",\"range\":\"Specialized\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_hm_64c_512g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-HM-64C-512G Instance - fr-par-1\"},{\"description\":\"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.00052973756,\"m3_water_usage\":4.202541e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":53200000,\"units\":0}},\"product\":\"POP2-HC-2C-4G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2\",\"threads\":2,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":2}},\"network\":{\"description\":\"Internal: 400 Mb/s, Public: 400 Mb/s\",\"internal_bandwidth\":400000000,\"max_public_bandwidth\":400000000,\"public_bandwidth\":400000000},\"ram\":{\"description\":\"4 GiB\",\"size\":4294967296,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-HC-2C-4G\",\"range\":\"Specialized\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_hc_2c_4g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-HC-2C-4G Instance - fr-par-1\"},{\"description\":\"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.00074865686,\"m3_water_usage\":4.8962217e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":106400000,\"units\":0}},\"product\":\"POP2-HC-4C-8G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4\",\"threads\":4,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":4}},\"network\":{\"description\":\"Internal: 800 Mb/s, Public: 800 Mb/s\",\"internal_bandwidth\":800000000,\"max_public_bandwidth\":800000000,\"public_bandwidth\":800000000},\"ram\":{\"description\":\"8 GiB\",\"size\":8589934592,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-HC-4C-8G\",\"range\":\"Specialized\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_hc_4c_8g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-HC-4C-8G Instance - fr-par-1\"},{\"description\":\"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0011864954,\"m3_water_usage\":6.283584e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":212800000,\"units\":0}},\"product\":\"POP2-HC-8C-16G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8\",\"threads\":8,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":8}},\"network\":{\"description\":\"Internal: 1.6 Gb/s, Public: 1.6 Gb/s\",\"internal_bandwidth\":1600000000,\"max_public_bandwidth\":1600000000,\"public_bandwidth\":1600000000},\"ram\":{\"description\":\"16 GiB\",\"size\":17179869184,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-HC-8C-16G\",\"range\":\"Specialized\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_hc_8c_16g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-HC-8C-16G Instance - fr-par-1\"},{\"description\":\"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0020621726,\"m3_water_usage\":9.058308e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":425600000,\"units\":0}},\"product\":\"POP2-HC-16C-32G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16\",\"threads\":16,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":16}},\"network\":{\"description\":\"Internal: 3.2 Gb/s, Public: 3.2 Gb/s\",\"internal_bandwidth\":3200000000,\"max_public_bandwidth\":3200000000,\"public_bandwidth\":3200000000},\"ram\":{\"description\":\"32 GiB\",\"size\":34359738368,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-HC-16C-32G\",\"range\":\"Specialized\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_hc_16c_32g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-HC-16C-32G Instance - fr-par-1\"},{\"description\":\"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0038135268,\"m3_water_usage\":1.4607757e-7},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":851200000,\"units\":0}},\"product\":\"POP2-HC-32C-64G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32\",\"threads\":32,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":32}},\"network\":{\"description\":\"Internal: 6.4 Gb/s, Public: 6.4 Gb/s\",\"internal_bandwidth\":6400000000,\"max_public_bandwidth\":6400000000,\"public_bandwidth\":6400000000},\"ram\":{\"description\":\"64 GiB\",\"size\":68719476736,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-HC-32C-64G\",\"range\":\"Specialized\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_hc_32c_64g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-HC-32C-64G Instance - fr-par-1\"},{\"description\":\"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.005564881,\"m3_water_usage\":2.0157205e-7},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":270000000,\"units\":1}},\"product\":\"POP2-HC-48C-96G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48\",\"threads\":48,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":48}},\"network\":{\"description\":\"Internal: 9.6 Gb/s, Public: 9.6 Gb/s\",\"internal_bandwidth\":9600000000,\"max_public_bandwidth\":9600000000,\"public_bandwidth\":9600000000},\"ram\":{\"description\":\"96 GiB\",\"size\":103079215104,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-HC-48C-96G\",\"range\":\"Specialized\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_hc_48c_96g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-HC-48C-96G Instance - fr-par-1\"},{\"description\":\"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.0073162355,\"m3_water_usage\":2.5706652e-7},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":702400000,\"units\":1}},\"product\":\"POP2-HC-64C-128G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64\",\"threads\":64,\"type\":\"AMD EPYC™ 7543 (2.8 GHz)\",\"virtual\":{\"count\":64}},\"network\":{\"description\":\"Internal: 12.8 Gb/s, Public: 12.8 Gb/s\",\"internal_bandwidth\":12800000000,\"max_public_bandwidth\":12800000000,\"public_bandwidth\":12800000000},\"ram\":{\"description\":\"128 GiB\",\"size\":137438953472,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-HC-64C-128G\",\"range\":\"Specialized\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_hc_64c_128g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-HC-64C-128G Instance - fr-par-1\"},{\"description\":\"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.00074865686,\"m3_water_usage\":4.8962217e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":726400000,\"units\":0}},\"product\":\"POP2-HN-10\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\", x64, vCPUs: 4\",\"threads\":4,\"type\":\"\",\"virtual\":{\"count\":4}},\"network\":{\"description\":\"Internal: 10 Gb/s, Public: 10 Gb/s\",\"internal_bandwidth\":10000000000,\"max_public_bandwidth\":10000000000,\"public_bandwidth\":10000000000},\"ram\":{\"description\":\"8 GiB\",\"size\":8589934592,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-HN-10\",\"range\":\"Specialized\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_hn_10/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-HN-10 Instance - fr-par-1\"},{\"description\":\"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.00052973756,\"m3_water_usage\":4.202541e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":255400000,\"units\":0}},\"product\":\"POP2-HN-3\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\", x64, vCPUs: 2\",\"threads\":2,\"type\":\"\",\"virtual\":{\"count\":2}},\"network\":{\"description\":\"Internal: 3 Gb/s, Public: 3 Gb/s\",\"internal_bandwidth\":3000000000,\"max_public_bandwidth\":3000000000,\"public_bandwidth\":3000000000},\"ram\":{\"description\":\"4 GiB\",\"size\":4294967296,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-HN-3\",\"range\":\"Specialized\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_hn_3/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-HN-3 Instance - fr-par-1\"},{\"description\":\"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)\",\"environmental_impact_estimation\":{\"kg_co2_equivalent\":0.00074865686,\"m3_water_usage\":4.8962217e-8},\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":452400000,\"units\":0}},\"product\":\"POP2-HN-5\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\", x64, vCPUs: 4\",\"threads\":4,\"type\":\"\",\"virtual\":{\"count\":4}},\"network\":{\"description\":\"Internal: 5 Gb/s, Public: 5 Gb/s\",\"internal_bandwidth\":5000000000,\"max_public_bandwidth\":5000000000,\"public_bandwidth\":5000000000},\"ram\":{\"description\":\"8 GiB\",\"size\":8589934592,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"POP2-HN-5\",\"range\":\"Specialized\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/pop2_hn_5/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute POP2-HN-5 Instance - fr-par-1\"},{\"description\":\"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)\",\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":12500000,\"units\":0}},\"product\":\"L4-1-24G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8\",\"threads\":8,\"type\":\"AMD EPYC™ 7413 (2.65 GHz)\",\"virtual\":{\"count\":8}},\"gpu\":{\"count\":1,\"description\":\"1 x L4\",\"type\":\"L4\"},\"network\":{\"description\":\"Internal: 2.5 Gb/s, Public: 2.5 Gb/s\",\"internal_bandwidth\":2500000000,\"max_public_bandwidth\":2500000000,\"public_bandwidth\":2500000000},\"ram\":{\"description\":\"48 GiB\",\"size\":51539607552,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"L4-1-24G\",\"range\":\"GPU\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/l4_1_24g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"minute\"},\"variant\":\"Compute L4-1-24G Instance - fr-par-1\"},{\"description\":\"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)\",\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":25000000,\"units\":0}},\"product\":\"L4-2-24G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16\",\"threads\":16,\"type\":\"AMD EPYC™ 7413 (2.65 GHz)\",\"virtual\":{\"count\":16}},\"gpu\":{\"count\":2,\"description\":\"2 x L4\",\"type\":\"L4\"},\"network\":{\"description\":\"Internal: 5 Gb/s, Public: 5 Gb/s\",\"internal_bandwidth\":5000000000,\"max_public_bandwidth\":5000000000,\"public_bandwidth\":5000000000},\"ram\":{\"description\":\"96 GiB\",\"size\":103079215104,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"L4-2-24G\",\"range\":\"GPU\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/l4_2_24g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"minute\"},\"variant\":\"Compute L4-2-24G Instance - fr-par-1\"},{\"description\":\"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)\",\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":50000000,\"units\":0}},\"product\":\"L4-4-24G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32\",\"threads\":32,\"type\":\"AMD EPYC™ 7413 (2.65 GHz)\",\"virtual\":{\"count\":32}},\"gpu\":{\"count\":4,\"description\":\"4 x L4\",\"type\":\"L4\"},\"network\":{\"description\":\"Internal: 10 Gb/s, Public: 10 Gb/s\",\"internal_bandwidth\":10000000000,\"max_public_bandwidth\":10000000000,\"public_bandwidth\":10000000000},\"ram\":{\"description\":\"192 GiB\",\"size\":206158430208,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"L4-4-24G\",\"range\":\"GPU\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/l4_4_24g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"minute\"},\"variant\":\"Compute L4-4-24G Instance - fr-par-1\"},{\"description\":\"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)\",\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":100000000,\"units\":0}},\"product\":\"L4-8-24G\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64\",\"threads\":64,\"type\":\"AMD EPYC™ 7413 (2.65 GHz)\",\"virtual\":{\"count\":64}},\"gpu\":{\"count\":8,\"description\":\"8 x L4\",\"type\":\"L4\"},\"network\":{\"description\":\"Internal: 20 Gb/s, Public: 20 Gb/s\",\"internal_bandwidth\":20000000000,\"max_public_bandwidth\":20000000000,\"public_bandwidth\":20000000000},\"ram\":{\"description\":\"384 GiB\",\"size\":412316860416,\"type\":\"\"},\"storage\":{\"description\":\"Block\",\"total\":0}},\"instance\":{\"offer_id\":\"L4-8-24G\",\"range\":\"GPU\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/l4_8_24g/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"minute\"},\"variant\":\"Compute L4-8-24G Instance - fr-par-1\"},{\"description\":\"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)\",\"locality\":{\"zone\":\"fr-par-1\"},\"price\":{\"retail_price\":{\"currency_code\":\"EUR\",\"nanos\":221000000,\"units\":1}},\"product\":\"RENDER-S Instance\",\"product_category\":\"Instance\",\"properties\":{\"hardware\":{\"cpu\":{\"arch\":\"x64\",\"description\":\"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10\",\"threads\":10,\"type\":\"Intel Xeon Gold 6148 (2.4 GHz)\",\"virtual\":{\"count\":10}},\"gpu\":{\"count\":1,\"description\":\"1 x P100\",\"type\":\"P100\"},\"network\":{\"description\":\"Internal: 2 Gb/s, Public: 2 Gb/s\",\"internal_bandwidth\":2000000000,\"max_public_bandwidth\":2000000000,\"public_bandwidth\":2000000000},\"ram\":{\"description\":\"42 GiB\",\"size\":45097156608,\"type\":\"\"},\"storage\":{\"description\":\"Dynamic local: 1 x SSD, Block\",\"total\":0}},\"instance\":{\"offer_id\":\"RENDER-S\",\"range\":\"GPU\",\"recommended_replacement_offer_ids\":[]}},\"service_category\":\"Compute\",\"sku\":\"/compute/render_s/run_par1\",\"status\":\"general_availability\",\"unit_of_measure\":{\"size\":1,\"unit\":\"hour\"},\"variant\":\"Compute RENDER-S Instance - fr-par-1\"}],\"total_count\":57}" + headers: + Content-Length: + - "63436" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 13:05:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 03b2fc94-1159-40a0-b23f-6dab30897c72 + status: 200 OK + code: 200 + duration: 125.270226ms diff --git a/internal/services/instance/testdata/volume-basic.cassette.yaml b/internal/services/instance/testdata/volume-basic.cassette.yaml index 200845209..c5297c7c6 100644 --- a/internal/services/instance/testdata/volume-basic.cassette.yaml +++ b/internal/services/instance/testdata/volume-basic.cassette.yaml @@ -1,540 +1,425 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 146 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 457 - uncompressed: false - 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: - - "457" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9e49b05c-c709-47c9-9b58-b49d5b2ccb27 - status: 201 Created - code: 201 - duration: 222.340804ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 457 - uncompressed: false - 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: - - "457" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a93f80f1-f153-45b8-914e-b2acd29f3416 - status: 200 OK - code: 200 - duration: 87.384052ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 457 - uncompressed: false - 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: - - "457" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 62ac84da-e9b4-4030-a2ca-ec024893d88e - status: 200 OK - code: 200 - duration: 97.5232ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 457 - uncompressed: false - 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: - - "457" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4c4e2964-9ff5-4dfd-9a36-f912e32df89e - status: 200 OK - code: 200 - duration: 96.503223ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 457 - uncompressed: false - 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: - - "457" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b2e78df9-5b41-4b20-a9e3-5cadb01c66ca - status: 200 OK - code: 200 - duration: 97.703126ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 457 - uncompressed: false - 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: - - "457" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7f535549-cbb2-4aca-836e-13430f399ad3 - status: 200 OK - code: 200 - duration: 98.789949ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 35 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"terraform-test","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/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 436 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e74db1bf-405b-4e7a-ad7d-fe3e08a2cf6d - status: 200 OK - code: 200 - duration: 117.698273ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 436 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cc7a47dc-6d0f-4ce0-9198-c9a3fdb889dc - status: 200 OK - code: 200 - duration: 80.766228ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 436 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e9b8efa3-f4d5-42f7-b82c-8f2a16f66525 - status: 200 OK - code: 200 - duration: 80.61242ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 436 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c72914ee-a4dd-4f17-90bf-daaee1b9213b - status: 200 OK - code: 200 - duration: 138.837751ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 436 - uncompressed: false - 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-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 43cfafae-3a25-463b-91d8-8c5750b4db5b - status: 200 OK - code: 200 - duration: 89.913081ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 - 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:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e2ef3ca9-f5a4-4977-813d-7b19fb9ce56d - status: 204 No Content - code: 204 - duration: 137.401395ms - - 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/3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3 - 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": "3a06d9fd-df0a-4d2c-b84c-0f8a7646d4b3"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8f10ad8c-3a94-48ba-92b7-e956dff4e3c0 - status: 404 Not Found - code: 404 - duration: 25.679376ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 150 + host: api.scaleway.com + body: "{\"name\":\"tf-vol-wizardly-lumiere\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[\"test-terraform\"],\"volume_type\":\"l_ssd\",\"size\":20000000000}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 461 + body: "{\"volume\": {\"id\": \"79e0c108-8971-46d1-a59c-3cc0de0b970d\", \"name\": \"tf-vol-wizardly-lumiere\", \"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-30T15:42:33.140808+00:00\", \"modification_date\": \"2025-10-30T15:42:33.140808+00:00\", \"tags\": [\"test-terraform\"], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "461" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/79e0c108-8971-46d1-a59c-3cc0de0b970d + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ac1a25ba-ca96-4a28-b20a-b54fd2e05b9e + status: 201 Created + code: 201 + duration: 214.228835ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/79e0c108-8971-46d1-a59c-3cc0de0b970d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 461 + body: "{\"volume\": {\"id\": \"79e0c108-8971-46d1-a59c-3cc0de0b970d\", \"name\": \"tf-vol-wizardly-lumiere\", \"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-30T15:42:33.140808+00:00\", \"modification_date\": \"2025-10-30T15:42:33.140808+00:00\", \"tags\": [\"test-terraform\"], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "461" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - fc16856d-4538-4245-91ef-f14b243bdda8 + status: 200 OK + code: 200 + duration: 100.582069ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/79e0c108-8971-46d1-a59c-3cc0de0b970d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 461 + body: "{\"volume\": {\"id\": \"79e0c108-8971-46d1-a59c-3cc0de0b970d\", \"name\": \"tf-vol-wizardly-lumiere\", \"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-30T15:42:33.140808+00:00\", \"modification_date\": \"2025-10-30T15:42:33.140808+00:00\", \"tags\": [\"test-terraform\"], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "461" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 60ab4d9e-3bfa-4e61-9705-b415eccb9cea + status: 200 OK + code: 200 + duration: 111.332655ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/79e0c108-8971-46d1-a59c-3cc0de0b970d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 461 + body: "{\"volume\": {\"id\": \"79e0c108-8971-46d1-a59c-3cc0de0b970d\", \"name\": \"tf-vol-wizardly-lumiere\", \"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-30T15:42:33.140808+00:00\", \"modification_date\": \"2025-10-30T15:42:33.140808+00:00\", \"tags\": [\"test-terraform\"], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "461" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 344a9a28-5cdb-4fd3-b01f-2a3cfb42939d + status: 200 OK + code: 200 + duration: 102.685405ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/79e0c108-8971-46d1-a59c-3cc0de0b970d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 461 + body: "{\"volume\": {\"id\": \"79e0c108-8971-46d1-a59c-3cc0de0b970d\", \"name\": \"tf-vol-wizardly-lumiere\", \"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-30T15:42:33.140808+00:00\", \"modification_date\": \"2025-10-30T15:42:33.140808+00:00\", \"tags\": [\"test-terraform\"], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "461" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - aae49c00-edb8-48b5-a39a-80b107293278 + status: 200 OK + code: 200 + duration: 127.124667ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/79e0c108-8971-46d1-a59c-3cc0de0b970d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 461 + body: "{\"volume\": {\"id\": \"79e0c108-8971-46d1-a59c-3cc0de0b970d\", \"name\": \"tf-vol-wizardly-lumiere\", \"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-30T15:42:33.140808+00:00\", \"modification_date\": \"2025-10-30T15:42:33.140808+00:00\", \"tags\": [\"test-terraform\"], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "461" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 84f5885a-3a99-454a-807a-25fae4e090dd + status: 200 OK + code: 200 + duration: 107.18745ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 35 + host: api.scaleway.com + body: "{\"name\":\"terraform-test\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/79e0c108-8971-46d1-a59c-3cc0de0b970d + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 436 + body: "{\"volume\": {\"id\": \"79e0c108-8971-46d1-a59c-3cc0de0b970d\", \"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-30T15:42:33.140808+00:00\", \"modification_date\": \"2025-10-30T15:42:34.285131+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "436" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f90e17a6-3203-4b18-8a97-c08c87f6d961 + status: 200 OK + code: 200 + duration: 134.48294ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/79e0c108-8971-46d1-a59c-3cc0de0b970d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 436 + body: "{\"volume\": {\"id\": \"79e0c108-8971-46d1-a59c-3cc0de0b970d\", \"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-30T15:42:33.140808+00:00\", \"modification_date\": \"2025-10-30T15:42:34.285131+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "436" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 0f4845eb-0baa-4fca-ba00-d06a626571f4 + status: 200 OK + code: 200 + duration: 103.625338ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/79e0c108-8971-46d1-a59c-3cc0de0b970d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 436 + body: "{\"volume\": {\"id\": \"79e0c108-8971-46d1-a59c-3cc0de0b970d\", \"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-30T15:42:33.140808+00:00\", \"modification_date\": \"2025-10-30T15:42:34.285131+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "436" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c2b959ed-255a-4181-b68b-d64e5d5ad67c + status: 200 OK + code: 200 + duration: 90.253546ms +- id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/79e0c108-8971-46d1-a59c-3cc0de0b970d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 436 + body: "{\"volume\": {\"id\": \"79e0c108-8971-46d1-a59c-3cc0de0b970d\", \"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-30T15:42:33.140808+00:00\", \"modification_date\": \"2025-10-30T15:42:34.285131+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "436" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 48b34fec-8ae2-4877-afc1-c525bf7c894c + status: 200 OK + code: 200 + duration: 92.662044ms +- id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/79e0c108-8971-46d1-a59c-3cc0de0b970d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 436 + body: "{\"volume\": {\"id\": \"79e0c108-8971-46d1-a59c-3cc0de0b970d\", \"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-30T15:42:33.140808+00:00\", \"modification_date\": \"2025-10-30T15:42:34.285131+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "436" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 73d7e7f9-b720-48be-990b-1cf5c3e57c78 + status: 200 OK + code: 200 + duration: 107.354163ms +- id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/79e0c108-8971-46d1-a59c-3cc0de0b970d + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 44dd541f-1eb7-47f1-882f-a528f300fa4f + status: 204 No Content + code: 204 + duration: 160.805766ms +- id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/79e0c108-8971-46d1-a59c-3cc0de0b970d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"79e0c108-8971-46d1-a59c-3cc0de0b970d\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:42:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 87121433-de4b-47c0-8414-b981223619fb + status: 404 Not Found + code: 404 + duration: 34.450161ms 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 1decbd034..03eea4edc 100644 --- a/internal/services/instance/testdata/volume-different-name-generated.cassette.yaml +++ b/internal/services/instance/testdata/volume-different-name-generated.cassette.yaml @@ -1,374 +1,294 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 119 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-vol-nice-merkle","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"l_ssd","size":20000000000}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 440 - uncompressed: false - 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: - - "440" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/505e8f0c-928e-4002-b3e3-c719bc4b58da - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e1fc1e1c-2cc9-492c-a1c2-0a05d98cb142 - status: 201 Created - code: 201 - duration: 205.405258ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/505e8f0c-928e-4002-b3e3-c719bc4b58da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 440 - uncompressed: false - 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: - - "440" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fca1e292-fe1e-4b4b-af98-c2cd686a2c64 - status: 200 OK - code: 200 - duration: 89.299883ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/505e8f0c-928e-4002-b3e3-c719bc4b58da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 440 - uncompressed: false - 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: - - "440" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 651a1511-8d03-45cc-8513-fdb2de796d5d - status: 200 OK - code: 200 - duration: 79.311807ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/505e8f0c-928e-4002-b3e3-c719bc4b58da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 440 - uncompressed: false - 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: - - "440" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fb5b7e9a-359a-4f00-938a-4b1bc56ae1c4 - status: 200 OK - code: 200 - duration: 83.573877ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/505e8f0c-928e-4002-b3e3-c719bc4b58da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 440 - uncompressed: false - 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: - - "440" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3ec5f4a7-494d-4e07-845f-8b9c0236c816 - status: 200 OK - code: 200 - duration: 105.761122ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/505e8f0c-928e-4002-b3e3-c719bc4b58da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 440 - uncompressed: false - 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: - - "440" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 57ff75df-de7b-4e18-b8fc-42d4810fbf33 - status: 200 OK - code: 200 - duration: 91.2975ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/505e8f0c-928e-4002-b3e3-c719bc4b58da - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 440 - uncompressed: false - 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: - - "440" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 58a0fadd-a843-4a49-bc82-c2eb5ee5cc0d - status: 200 OK - code: 200 - duration: 88.904684ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/505e8f0c-928e-4002-b3e3-c719bc4b58da - 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:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2e1ce0a5-d899-4f4a-ba00-c7cab037805d - status: 204 No Content - code: 204 - duration: 143.55465ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/505e8f0c-928e-4002-b3e3-c719bc4b58da - 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": "505e8f0c-928e-4002-b3e3-c719bc4b58da"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 154d7707-2b4c-4d62-81b5-8aee62219e09 - status: 404 Not Found - code: 404 - duration: 32.282743ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 122 + host: api.scaleway.com + body: "{\"name\":\"tf-vol-awesome-joliot\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"volume_type\":\"l_ssd\",\"size\":20000000000}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 443 + body: "{\"volume\": {\"id\": \"22a0c16a-aa44-4d2b-b420-53c05b229407\", \"name\": \"tf-vol-awesome-joliot\", \"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-30T15:41:46.885948+00:00\", \"modification_date\": \"2025-10-30T15:41:46.885948+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "443" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/22a0c16a-aa44-4d2b-b420-53c05b229407 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 587cc7cd-dcc2-495d-8660-69add7b6fa11 + status: 201 Created + code: 201 + duration: 231.730942ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/22a0c16a-aa44-4d2b-b420-53c05b229407 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 443 + body: "{\"volume\": {\"id\": \"22a0c16a-aa44-4d2b-b420-53c05b229407\", \"name\": \"tf-vol-awesome-joliot\", \"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-30T15:41:46.885948+00:00\", \"modification_date\": \"2025-10-30T15:41:46.885948+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "443" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 50f62203-4e4b-40cc-9e53-2b37e4837b5e + status: 200 OK + code: 200 + duration: 160.908953ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/22a0c16a-aa44-4d2b-b420-53c05b229407 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 443 + body: "{\"volume\": {\"id\": \"22a0c16a-aa44-4d2b-b420-53c05b229407\", \"name\": \"tf-vol-awesome-joliot\", \"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-30T15:41:46.885948+00:00\", \"modification_date\": \"2025-10-30T15:41:46.885948+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "443" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d28edaba-90bc-4c9c-8565-ecc86fcc1caa + status: 200 OK + code: 200 + duration: 201.757772ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/22a0c16a-aa44-4d2b-b420-53c05b229407 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 443 + body: "{\"volume\": {\"id\": \"22a0c16a-aa44-4d2b-b420-53c05b229407\", \"name\": \"tf-vol-awesome-joliot\", \"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-30T15:41:46.885948+00:00\", \"modification_date\": \"2025-10-30T15:41:46.885948+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "443" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - d16b7401-7d15-48a7-bfa7-c8c5c143f1e7 + status: 200 OK + code: 200 + duration: 109.703549ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/22a0c16a-aa44-4d2b-b420-53c05b229407 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 443 + body: "{\"volume\": {\"id\": \"22a0c16a-aa44-4d2b-b420-53c05b229407\", \"name\": \"tf-vol-awesome-joliot\", \"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-30T15:41:46.885948+00:00\", \"modification_date\": \"2025-10-30T15:41:46.885948+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "443" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 18c95731-4594-4d6f-bd9c-9adeffb81df8 + status: 200 OK + code: 200 + duration: 94.177326ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/22a0c16a-aa44-4d2b-b420-53c05b229407 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 443 + body: "{\"volume\": {\"id\": \"22a0c16a-aa44-4d2b-b420-53c05b229407\", \"name\": \"tf-vol-awesome-joliot\", \"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-30T15:41:46.885948+00:00\", \"modification_date\": \"2025-10-30T15:41:46.885948+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "443" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 252d0073-7389-4ce2-80c0-f4a873ea1f1c + status: 200 OK + code: 200 + duration: 96.602235ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/22a0c16a-aa44-4d2b-b420-53c05b229407 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 443 + body: "{\"volume\": {\"id\": \"22a0c16a-aa44-4d2b-b420-53c05b229407\", \"name\": \"tf-vol-awesome-joliot\", \"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-30T15:41:46.885948+00:00\", \"modification_date\": \"2025-10-30T15:41:46.885948+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "443" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 51ac7c6d-49f3-48ba-8912-30caeedfd16b + status: 200 OK + code: 200 + duration: 111.115567ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/22a0c16a-aa44-4d2b-b420-53c05b229407 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 629e2596-677e-44bf-9a66-2b40b0630df0 + status: 204 No Content + code: 204 + duration: 146.553869ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/22a0c16a-aa44-4d2b-b420-53c05b229407 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"22a0c16a-aa44-4d2b-b420-53c05b229407\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - eba00de2-fad4-4e0c-96ef-7072879645a0 + status: 404 Not Found + code: 404 + duration: 25.074532ms 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 7bfc4c8cb..2534a491a 100644 --- a/internal/services/instance/testdata/volume-resize-not-block.cassette.yaml +++ b/internal/services/instance/testdata/volume-resize-not-block.cassette.yaml @@ -1,374 +1,294 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 120 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-vol-jolly-galois","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"l_ssd","size":20000000000}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 441 - uncompressed: false - 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: - - "441" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fde8340c-6c3d-49f3-83c7-e37e8a1e65c8 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c23323ce-2386-47b9-bb40-6c05b9b9c15a - status: 201 Created - code: 201 - duration: 253.350172ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fde8340c-6c3d-49f3-83c7-e37e8a1e65c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 441 - uncompressed: false - 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: - - "441" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 19226f7c-9a37-4ebe-b955-1e5357a97354 - status: 200 OK - code: 200 - duration: 102.301292ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fde8340c-6c3d-49f3-83c7-e37e8a1e65c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 441 - uncompressed: false - 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: - - "441" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 43013534-b2bf-4dcb-943e-0362636e1c42 - status: 200 OK - code: 200 - duration: 98.739422ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fde8340c-6c3d-49f3-83c7-e37e8a1e65c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 441 - uncompressed: false - 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: - - "441" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e31f7f4d-ed90-4874-b4e1-aae5d51e8dab - status: 200 OK - code: 200 - duration: 114.779564ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fde8340c-6c3d-49f3-83c7-e37e8a1e65c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 441 - uncompressed: false - 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: - - "441" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7a7d2eef-ad7f-4ff0-80b4-5cb74d7ced1e - status: 200 OK - code: 200 - duration: 85.927367ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fde8340c-6c3d-49f3-83c7-e37e8a1e65c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 441 - uncompressed: false - 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: - - "441" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 36eab6ee-c759-4f50-87ea-a72251b23aa6 - status: 200 OK - code: 200 - duration: 85.59186ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fde8340c-6c3d-49f3-83c7-e37e8a1e65c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 441 - uncompressed: false - 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: - - "441" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 90239f18-3d1c-420c-b471-2cd015f0b5aa - status: 200 OK - code: 200 - duration: 104.947601ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fde8340c-6c3d-49f3-83c7-e37e8a1e65c8 - 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:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3e5f3028-b795-48b7-95ba-f512f780b469 - status: 204 No Content - code: 204 - duration: 157.306061ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fde8340c-6c3d-49f3-83c7-e37e8a1e65c8 - 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": "fde8340c-6c3d-49f3-83c7-e37e8a1e65c8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 453077cc-51e3-4063-903c-11ac25e9811c - status: 404 Not Found - code: 404 - duration: 31.538941ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 123 + host: api.scaleway.com + body: "{\"name\":\"tf-vol-beautiful-cohen\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"volume_type\":\"l_ssd\",\"size\":20000000000}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 444 + body: "{\"volume\": {\"id\": \"7cb3baaa-4af4-447c-86db-5bdb34484530\", \"name\": \"tf-vol-beautiful-cohen\", \"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-30T15:41:46.907907+00:00\", \"modification_date\": \"2025-10-30T15:41:46.907907+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "444" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7cb3baaa-4af4-447c-86db-5bdb34484530 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 738dfaae-dfb3-425d-a392-d7f78c03543f + status: 201 Created + code: 201 + duration: 235.1317ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7cb3baaa-4af4-447c-86db-5bdb34484530 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 444 + body: "{\"volume\": {\"id\": \"7cb3baaa-4af4-447c-86db-5bdb34484530\", \"name\": \"tf-vol-beautiful-cohen\", \"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-30T15:41:46.907907+00:00\", \"modification_date\": \"2025-10-30T15:41:46.907907+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "444" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 8d5714b7-bf97-44a4-9da4-459930f60302 + status: 200 OK + code: 200 + duration: 91.996526ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7cb3baaa-4af4-447c-86db-5bdb34484530 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 444 + body: "{\"volume\": {\"id\": \"7cb3baaa-4af4-447c-86db-5bdb34484530\", \"name\": \"tf-vol-beautiful-cohen\", \"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-30T15:41:46.907907+00:00\", \"modification_date\": \"2025-10-30T15:41:46.907907+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "444" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 072fca26-afcf-4c39-8fb1-5e2dd8aa40d1 + status: 200 OK + code: 200 + duration: 110.56304ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7cb3baaa-4af4-447c-86db-5bdb34484530 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 444 + body: "{\"volume\": {\"id\": \"7cb3baaa-4af4-447c-86db-5bdb34484530\", \"name\": \"tf-vol-beautiful-cohen\", \"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-30T15:41:46.907907+00:00\", \"modification_date\": \"2025-10-30T15:41:46.907907+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "444" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - dc759962-0f4e-4498-abfd-bdbad5451a35 + status: 200 OK + code: 200 + duration: 150.838454ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7cb3baaa-4af4-447c-86db-5bdb34484530 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 444 + body: "{\"volume\": {\"id\": \"7cb3baaa-4af4-447c-86db-5bdb34484530\", \"name\": \"tf-vol-beautiful-cohen\", \"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-30T15:41:46.907907+00:00\", \"modification_date\": \"2025-10-30T15:41:46.907907+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "444" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c0834e55-b751-430d-9b74-9c8bdb242044 + status: 200 OK + code: 200 + duration: 85.162437ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7cb3baaa-4af4-447c-86db-5bdb34484530 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 444 + body: "{\"volume\": {\"id\": \"7cb3baaa-4af4-447c-86db-5bdb34484530\", \"name\": \"tf-vol-beautiful-cohen\", \"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-30T15:41:46.907907+00:00\", \"modification_date\": \"2025-10-30T15:41:46.907907+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "444" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 521879c2-8910-47af-93d2-bb393b31e204 + status: 200 OK + code: 200 + duration: 94.841913ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7cb3baaa-4af4-447c-86db-5bdb34484530 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 444 + body: "{\"volume\": {\"id\": \"7cb3baaa-4af4-447c-86db-5bdb34484530\", \"name\": \"tf-vol-beautiful-cohen\", \"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-30T15:41:46.907907+00:00\", \"modification_date\": \"2025-10-30T15:41:46.907907+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "444" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 4c5a365b-b28a-4a29-9c3b-cfd5b2489e5c + status: 200 OK + code: 200 + duration: 122.322267ms +- id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7cb3baaa-4af4-447c-86db-5bdb34484530 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ffd54b88-7a2a-4d20-8d3a-728acfc6f0de + status: 204 No Content + code: 204 + duration: 127.805863ms +- id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7cb3baaa-4af4-447c-86db-5bdb34484530 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"7cb3baaa-4af4-447c-86db-5bdb34484530\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 5e78335d-5427-49ef-84db-fa995ca2ddd5 + status: 404 Not Found + code: 404 + duration: 25.788591ms diff --git a/internal/services/instance/testdata/volume-scratch.cassette.yaml b/internal/services/instance/testdata/volume-scratch.cassette.yaml index 51d2ee69e..0d27ab648 100644 --- a/internal/services/instance/testdata/volume-scratch.cassette.yaml +++ b/internal/services/instance/testdata/volume-scratch.cassette.yaml @@ -1,292 +1,230 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 123 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-vol-amazing-tharp","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"scratch","size":20000000000}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 444 - uncompressed: false - 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: - - "444" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1f39febc-62b8-4a74-8de7-0dd9ac5473c8 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f2984b81-8d3e-464b-82dd-36fe07c1e4b5 - status: 201 Created - code: 201 - duration: 199.4934ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1f39febc-62b8-4a74-8de7-0dd9ac5473c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 444 - uncompressed: false - 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: - - "444" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a7cd1417-4f25-4498-ac88-90ef072f100e - status: 200 OK - code: 200 - duration: 78.467317ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1f39febc-62b8-4a74-8de7-0dd9ac5473c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 444 - uncompressed: false - 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: - - "444" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6874d9cf-5e9f-4c0d-84b3-884fabe7c4ed - status: 200 OK - code: 200 - duration: 94.488955ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1f39febc-62b8-4a74-8de7-0dd9ac5473c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 444 - uncompressed: false - 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: - - "444" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 569c4878-d575-452d-96e6-52dced7e444d - status: 200 OK - code: 200 - duration: 87.478927ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1f39febc-62b8-4a74-8de7-0dd9ac5473c8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 444 - uncompressed: false - 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: - - "444" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7e974bf4-dd97-4e21-80fa-4dcff78fe7c8 - status: 200 OK - code: 200 - duration: 93.432439ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1f39febc-62b8-4a74-8de7-0dd9ac5473c8 - 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:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6368ce38-0d88-4bbd-82fd-a66f227a8d0a - status: 204 No Content - code: 204 - duration: 152.160749ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1f39febc-62b8-4a74-8de7-0dd9ac5473c8 - 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": "1f39febc-62b8-4a74-8de7-0dd9ac5473c8"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Wed, 29 Oct 2025 22:53:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0f38536a-d172-4112-b445-f8c556d82b88 - status: 404 Not Found - code: 404 - duration: 33.998891ms +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 125 + host: api.scaleway.com + body: "{\"name\":\"tf-vol-gracious-rhodes\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"volume_type\":\"scratch\",\"size\":20000000000}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 446 + body: "{\"volume\": {\"id\": \"e01e55db-883f-4cc0-8cce-8c2c89275e6b\", \"name\": \"tf-vol-gracious-rhodes\", \"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-30T15:41:46.907263+00:00\", \"modification_date\": \"2025-10-30T15:41:46.907263+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "446" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:46 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e01e55db-883f-4cc0-8cce-8c2c89275e6b + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - f5379a75-641a-45e0-b22b-36f5b969ec3c + status: 201 Created + code: 201 + duration: 228.063783ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e01e55db-883f-4cc0-8cce-8c2c89275e6b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 446 + body: "{\"volume\": {\"id\": \"e01e55db-883f-4cc0-8cce-8c2c89275e6b\", \"name\": \"tf-vol-gracious-rhodes\", \"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-30T15:41:46.907263+00:00\", \"modification_date\": \"2025-10-30T15:41:46.907263+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "446" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - b0aca5c5-052e-4575-ab94-de62ab31e95d + status: 200 OK + code: 200 + duration: 102.14469ms +- id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e01e55db-883f-4cc0-8cce-8c2c89275e6b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 446 + body: "{\"volume\": {\"id\": \"e01e55db-883f-4cc0-8cce-8c2c89275e6b\", \"name\": \"tf-vol-gracious-rhodes\", \"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-30T15:41:46.907263+00:00\", \"modification_date\": \"2025-10-30T15:41:46.907263+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "446" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - c107c674-839f-43f6-9ae2-539ad38df9e2 + status: 200 OK + code: 200 + duration: 125.162484ms +- id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e01e55db-883f-4cc0-8cce-8c2c89275e6b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 446 + body: "{\"volume\": {\"id\": \"e01e55db-883f-4cc0-8cce-8c2c89275e6b\", \"name\": \"tf-vol-gracious-rhodes\", \"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-30T15:41:46.907263+00:00\", \"modification_date\": \"2025-10-30T15:41:46.907263+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "446" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 92dbecfc-e513-4c69-8cbd-59baab7e8d0c + status: 200 OK + code: 200 + duration: 82.257749ms +- id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e01e55db-883f-4cc0-8cce-8c2c89275e6b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 446 + body: "{\"volume\": {\"id\": \"e01e55db-883f-4cc0-8cce-8c2c89275e6b\", \"name\": \"tf-vol-gracious-rhodes\", \"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-30T15:41:46.907263+00:00\", \"modification_date\": \"2025-10-30T15:41:46.907263+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "446" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 40ac59b8-f09a-4314-ac76-444ba961c2f0 + status: 200 OK + code: 200 + duration: 101.309664ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e01e55db-883f-4cc0-8cce-8c2c89275e6b + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - ff66007c-94a4-4517-846a-33d680348ba3 + status: 204 No Content + code: 204 + duration: 138.867751ms +- id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e01e55db-883f-4cc0-8cce-8c2c89275e6b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"e01e55db-883f-4cc0-8cce-8c2c89275e6b\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Thu, 30 Oct 2025 15:41:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + X-Request-Id: + - 02101fe3-2a65-4371-86c2-2570decd8ec2 + status: 404 Not Found + code: 404 + duration: 29.848977ms